Searched refs:degrees (Results 1 – 8 of 8) sorted by relevance
/PHP-8.0/ext/gd/tests/ |
H A D | bug66882.phpt | 2 Bug #66882 (imagerotate by -90 degrees truncates image by 1px)
|
H A D | bug24155.phpt | 22 // Uniform fill + n x 90degrees rotation , the color value does not change
|
/PHP-8.0/ext/zlib/tests/ |
H A D | bug61287.phpt | 10 'degrees' => array(),
|
/PHP-8.0/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-8.0/ext/gd/libgd/ |
H A D | gd.h | 866 gdImagePtr gdImageRotateNearestNeighbour(gdImagePtr src, const float degrees, const int bgColor); 867 gdImagePtr gdImageRotateBilinear(gdImagePtr src, const float degrees, const int bgColor); 868 gdImagePtr gdImageRotateBicubicFixed(gdImagePtr src, const float degrees, const int bgColor); 869 gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees, const int bgColor);
|
H A D | gd_interpolation.c | 1614 float _angle = ((float) (-degrees / 180.0f) * (float)M_PI); in gdImageRotateNearestNeighbour() 1630 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateNearestNeighbour() 1669 gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateGeneric() argument 1671 float _angle = ((float) (-degrees / 180.0f) * (float)M_PI); in gdImageRotateGeneric() 1698 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateGeneric() 1735 gdImagePtr gdImageRotateBilinear(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateBilinear() argument 1737 float _angle = (float)((- degrees / 180.0f) * M_PI); in gdImageRotateBilinear() 1754 gdRotatedImageSize(src, degrees, &bbox); in gdImageRotateBilinear() 1850 gdImagePtr gdImageRotateBicubicFixed(gdImagePtr src, const float degrees, const int bgColor) in gdImageRotateBicubicFixed() argument 1852 const float _angle = (float)((- degrees / 180.0f) * M_PI); in gdImageRotateBicubicFixed() [all …]
|
/PHP-8.0/ext/gd/ |
H A D | gd.c | 1288 double degrees; in PHP_FUNCTION() local 1292 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Odl|b", &SIM, gd_image_ce, °rees, &color, &ignoret… in PHP_FUNCTION() 1297 im_dst = gdImageRotateInterpolated(im_src, (const float)degrees, color); in PHP_FUNCTION()
|
Completed in 34 milliseconds