Searched refs:new_width (Results 1 – 4 of 4) sorted by relevance
/php-src/ext/gd/tests/ |
H A D | imagecopyresampled_basic.phpt | 39 $new_width = $width * $percent; 43 $image_sml = imagecreatetruecolor($new_width, $new_height); 44 imagecopyresampled($image_sml, $image_lge, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
|
/php-src/ext/gd/libgd/ |
H A D | gd_interpolation.c | 1096 scale_pass_res = _gdScaleVert(tmp_im, new_width, src_height, dst, new_width, new_height); in gdImageScaleTwoPass() 1138 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour() 1149 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour() 1167 long _width = MAX(1, new_width); in gdImageScaleBilinearPalette() 1265 long dst_w = MAX(1, new_width); in gdImageScaleBilinearTC() 1396 for (j=0; j < new_width; j++) { in gdImageScaleBicubicFixed() 1656 int new_height, new_width; in gdImageRotateNearestNeighbour() local 1659 new_width = bbox.width; in gdImageRotateNearestNeighbour() 1670 for (j = 0; j < new_width; j++) { in gdImageRotateNearestNeighbour() 1709 int new_width, new_height; in gdImageRotateGeneric() local [all …]
|
H A D | gd.h | 867 gdImagePtr gdImageScale(const gdImagePtr src, const unsigned int new_width, const unsigned int new_…
|
/php-src/ext/gd/ |
H A D | gd.c | 3936 int new_width, new_height; in PHP_FUNCTION() local 3988 new_width = tmp_w; in PHP_FUNCTION() 3994 im_scaled = gdImageScale(im, new_width, new_height); in PHP_FUNCTION()
|
Completed in 567 milliseconds