Searched refs:new_height (Results 1 – 4 of 4) sorted by relevance
/PHP-8.0/ext/gd/tests/ |
H A D | imagecopyresampled_basic.phpt | 36 $new_height = $height * $percent; 39 $image_sml = imagecreatetruecolor($new_width, $new_height); 40 imagecopyresampled($image_sml, $image_lge, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
|
/PHP-8.0/ext/gd/libgd/ |
H A D | gd_interpolation.c | 1102 for (i=0; i<new_height; i++) { in gdImageScaleNearestNeighbour() 1136 long _height = MAX(1, new_height); in gdImageScaleBilinearPalette() 1238 long dst_h = MAX(1, new_height); in gdImageScaleBilinearTC() 1370 for (i=0; i < new_height; i++) { in gdImageScaleBicubicFixed() 1628 int new_height, new_width; in gdImageRotateNearestNeighbour() local 1632 new_height = bbox.height; in gdImageRotateNearestNeighbour() 1684 int new_width, new_height; in gdImageRotateGeneric() local 1700 new_height = bbox.height; in gdImageRotateGeneric() 1757 new_height = bbox.height; in gdImageRotateBilinear() 1875 new_height = bbox.height; in gdImageRotateBicubicFixed() [all …]
|
H A D | gd.h | 859 …r gdImageScaleBilinear(gdImagePtr im, const unsigned int new_width, const unsigned int new_height); 860 …ImageScaleBicubic(gdImagePtr src_img, const unsigned int new_width, const unsigned int new_height); 864 …tr gdImageScale(const gdImagePtr src, const unsigned int new_width, const unsigned int new_height);
|
/PHP-8.0/ext/gd/ |
H A D | gd.c | 3683 int new_width, new_height; in PHP_FUNCTION() local 3714 new_height = tmp_h; in PHP_FUNCTION() 3719 im_scaled = gdImageScale(im, new_width, new_height); in PHP_FUNCTION()
|
Completed in 35 milliseconds