Searched refs:new_width (Results 1 – 4 of 4) sorted by relevance
/php-src/ext/gd/libgd/ |
H A D | gd_interpolation.c | 1080 scale_pass_res = _gdScaleVert(tmp_im, new_width, src_height, dst, new_width, new_height); in gdImageScaleTwoPass() 1125 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour() 1136 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour() 1154 long _width = MAX(1, new_width); in gdImageScaleBilinearPalette() 1256 long dst_w = MAX(1, new_width); in gdImageScaleBilinearTC() 1647 int new_height, new_width; in gdImageRotateNearestNeighbour() local 1650 new_width = bbox.width; in gdImageRotateNearestNeighbour() 1703 int new_width, new_height; in gdImageRotateGeneric() local 1718 new_width = bbox.width; in gdImageRotateGeneric() 1775 new_width = bbox.width; in gdImageRotateBilinear() [all …]
|
H A D | gd.h | 885 gdImagePtr gdImageScaleBilinear(gdImagePtr im, const unsigned int new_width, const unsigned int new… 886 gdImagePtr gdImageScaleBicubic(gdImagePtr src_img, const unsigned int new_width, const unsigned int… 890 gdImagePtr gdImageScale(const gdImagePtr src, const unsigned int new_width, const unsigned int new_…
|
/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/ |
H A D | gd.c | 3921 int new_width, new_height; in PHP_FUNCTION() local 3968 new_width = tmp_w; in PHP_FUNCTION() 3974 im_scaled = gdImageScale(im, new_width, new_height); in PHP_FUNCTION()
|
Completed in 25 milliseconds