Lines Matching refs:width
347 ZEND_ARG_INFO(0, width)
1413 * byte 8-11: (int) pixel width of each character
1417 * (nchars*width*height) bytes.
2372 zend_long srcx, srcy, width, height;
2381 if (zend_parse_parameters(ZEND_NUM_ARGS(), "pllll", &file, &file_len, &srcx, &srcy, &width, &height) == FAILURE) {
2384 if (width < 1 || height < 1) {
2385 php_error_docref(NULL, E_WARNING, "Zero width or height not allowed");
2429 im = (*ioctx_func_p)(io_ctx, srcx, srcy, width, height);
2447 im = (*func_p)(fp, srcx, srcy, width, height);
2565 /* {{{ proto resource imagecreatefromgd2part(string filename, int srcX, int srcY, int width, int height)
3574 Get font width */
3858 Get image width */
4104 zend_long height, width, threshold;
4121 if (zend_parse_parameters(ZEND_NUM_ARGS(), "pplll", &f_org, &f_org_len, &f_dest, &f_dest_len, &height, &width, &threshold) == FAILURE) {
4128 dest_width = width;
4636 Crop an image using the given coordinates and size, x, y, width and height. */
4668 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(z_rect), "width", sizeof("width") - 1)) != NULL) {
4669 rect.width = zval_get_long(tmp);
4671 php_error_docref(NULL, E_WARNING, "Missing width");
4743 Scale an image using the given new width and height. */
4858 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(z_rect), "width", sizeof("width") - 1)) != NULL) {
4859 rect.width = zval_get_long(tmp);
4861 php_error_docref(NULL, E_WARNING, "Missing width");
4875 rect.width = gdImageSX(src);
5096 * tab-width: 4