Searched refs:new_width (Results 1 – 4 of 4) sorted by relevance
/PHP-7.0/ext/gd/libgd/ |
H A D | gd_interpolation.c | 1122 _gdScaleVert(tmp_im, new_width, src_height, dst, new_width, new_height); in gdImageScaleTwoPass() 1143 _gdScaleVert(tmp_im, new_width, src_height, dst, new_width, new_height); in Scale() 1183 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour() 1194 for (j=0; j<new_width; j++) { in gdImageScaleNearestNeighbour() 1362 long dst_w = MAX(1, new_width); in gdImageScaleBilinearTC() 1755 int new_height, new_width; in gdImageRotateNearestNeighbour() local 1758 new_width = bbox.width; in gdImageRotateNearestNeighbour() 1812 int new_width, new_height; in gdImageRotateGeneric() local 1827 new_width = bbox.width; in gdImageRotateGeneric() 1885 new_width = bbox.width; in gdImageRotateBilinear() [all …]
|
H A D | gd.h | 840 gdImagePtr gdImageScaleBilinear(gdImagePtr im, const unsigned int new_width, const unsigned int new… 841 gdImagePtr gdImageScaleBicubic(gdImagePtr src_img, const unsigned int new_width, const unsigned int… 845 gdImagePtr gdImageScale(const gdImagePtr src, const unsigned int new_width, const unsigned int new_…
|
/PHP-7.0/ext/gd/tests/ |
H A D | imagecopyresampled_basic.phpt | 42 $new_width = $width * $percent; 46 $image_sml = imagecreatetruecolor($new_width, $new_height); 47 imagecopyresampled($image_sml, $image_lge, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
|
/PHP-7.0/ext/gd/ |
H A D | gd.c | 801 ZEND_ARG_INFO(0, new_width) 4699 int new_width, new_height; in PHP_FUNCTION() local 4727 new_width = tmp_w; in PHP_FUNCTION() 4733 im_scaled = gdImageScale(im, new_width, new_height); in PHP_FUNCTION()
|
Completed in 32 milliseconds