Searched refs:imagerotate (Results 1 – 15 of 15) sorted by relevance
/PHP-8.3/ext/gd/tests/ |
H A D | gh16260.phpt | 2 GH-16260 (Overflow/underflow on imagerotate degrees argument) 10 imagerotate($im, PHP_INT_MIN, 0); 16 imagerotate($im, PHP_INT_MAX, 0); 21 imagerotate(): Argument #2 ($angle) must be between %s and %s 22 imagerotate(): Argument #2 ($angle) must be between %s and %s
|
H A D | imagerotate_overflow.phpt | 2 imagerotate() overflow with negative numbers 7 if (!function_exists('imagerotate')) { 8 die("skip imagerotate() not available."); 16 $tmp = imagerotate ($im, 5, -9999999);
|
H A D | bug39366.phpt | 2 Bug #39366 (imagerotate does not respect alpha with angles>45) 7 if (!function_exists("imagerotate")) die("skip requires bundled GD library\n"); 15 $rotate = imagerotate($im, 180, 0);
|
H A D | bug66882.phpt | 2 Bug #66882 (imagerotate by -90 degrees truncates image by 1px) 7 $im = imagerotate(imagecreate(10, 10), -90, 0);
|
H A D | bug24155.phpt | 7 if (!function_exists("imagerotate")) die("skip requires bundled GD library\n"); 16 $im = imagerotate($im, 270, 255);
|
H A D | bug70976.phpt | 7 $img = imagerotate(imagecreate(10,10),45,0x7ffffff9);
|
H A D | gh16559.phpt | 9 $output = imagerotate($input, $angle, 0);
|
H A D | bug65148.phpt | 2 Bug #65148 (imagerotate may alter image dimensions) 38 $imgr = imagerotate($img, -5, $t);
|
H A D | gh10614.phpt | 2 GH-10614 (imagerotate will turn the picture all black, when rotated 90) 19 $output = imagerotate($input, $angle, 0);
|
H A D | bug73272.phpt | 15 $dst = imagerotate($src, 60, 0xFFFFFF);
|
/PHP-8.3/ext/gd/ |
H A D | gd_arginfo.h | 604 ZEND_FUNCTION(imagerotate); 745 ZEND_FE(imagerotate, arginfo_imagerotate)
|
H A D | gd.stub.php | 534 function imagerotate(GdImage $image, float $angle, int $background_color): GdImage|false {} function
|
H A D | gd.c | 1186 PHP_FUNCTION(imagerotate) in PHP_FUNCTION() argument
|
/PHP-8.3/ |
H A D | NEWS | 202 . Fixed bug GH-12264 (overflow/underflow on imagerotate degrees value) 868 . Fixed bug GH-10614 (imagerotate will turn the picture all black, when 1203 . Removed imagerotate "ignore_transparent" argument since it has no effect.
|
H A D | UPGRADING | 277 . Changed imagerotate signature, removed the `ignore_transparent` argument
|
Completed in 30 milliseconds