Searched refs:degrees (Results 1 – 9 of 9) sorted by relevance
/php-src/ext/gd/tests/ |
H A D | bug66882.phpt | 2 Bug #66882 (imagerotate by -90 degrees truncates image by 1px)
|
H A D | gh16260.phpt | 2 GH-16260 (Overflow/underflow on imagerotate degrees argument)
|
H A D | bug24155.phpt | 23 // Uniform fill + n x 90degrees rotation , the color value does not change
|
/php-src/ext/zlib/tests/ |
H A D | bug61287.phpt | 10 'degrees' => array(),
|
/php-src/ext/standard/tests/math/ |
H A D | acos_basic.phpt | 15 //output is in degrees
|
H A D | asin_basic.phpt | 15 //output is in degrees
|
/php-src/ext/gd/libgd/ |
H A D | gd.h | 892 gdImagePtr gdImageRotateNearestNeighbour(gdImagePtr src, const float degrees, const int bgColor); 893 gdImagePtr gdImageRotateBilinear(gdImagePtr src, const float degrees, const int bgColor); 894 gdImagePtr gdImageRotateBicubicFixed(gdImagePtr src, const float degrees, const int bgColor); 895 gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees, const int bgColor);
|
H A D | gd_interpolation.c | 1633 float _angle = ((float) (-degrees / 180.0f) * (float)M_PI); in gdImageRotateNearestNeighbour() 1649 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateNearestNeighbour() 1688 gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateGeneric() argument 1690 float _angle = ((float) (-degrees / 180.0f) * (float)M_PI); in gdImageRotateGeneric() 1717 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateGeneric() 1754 gdImagePtr gdImageRotateBilinear(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateBilinear() argument 1756 float _angle = (float)((- degrees / 180.0f) * M_PI); in gdImageRotateBilinear() 1773 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateBilinear() 1869 gdImagePtr gdImageRotateBicubicFixed(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateBicubicFixed() argument 1871 const float _angle = (float)((- degrees / 180.0f) * M_PI); in gdImageRotateBicubicFixed() [all …]
|
/php-src/ext/gd/ |
H A D | gd.c | 1231 double degrees; in PHP_FUNCTION() local 1236 Z_PARAM_DOUBLE(degrees) in PHP_FUNCTION() 1240 if (degrees < (double)(INT_MIN / 100) || degrees > (double)(INT_MAX / 100)) { in PHP_FUNCTION() 1246 im_dst = gdImageRotateInterpolated(im_src, (const float)degrees, color); in PHP_FUNCTION()
|
Completed in 46 milliseconds