Searched refs:imagecolorset (Results 1 – 6 of 6) sorted by relevance
/PHP-8.3/ext/gd/tests/ |
H A D | imagecolorset_error1.phpt | 2 imagecolorset() parameters errors 15 fn() => imagecolorset($im, $c, -3, 4, 5, 6), 16 fn() => imagecolorset($im, $c, 3, -4, 5, 6), 17 fn() => imagecolorset($im, $c, 3, 4, -5, 6), 18 fn() => imagecolorset($im, $c, 3, 4, 5, -6), 23 !! [ValueError] imagecolorset(): Argument #3 ($red) must be between 0 and 255 (inclusive) 24 !! [ValueError] imagecolorset(): Argument #4 ($green) must be between 0 and 255 (inclusive) 25 !! [ValueError] imagecolorset(): Argument #5 ($blue) must be between 0 and 255 (inclusive)
|
H A D | imagecolorset_basic.phpt | 2 Test imagecolorset() function : basic functionality 20 imagecolorset($im, $bg, 0, 0, 255);
|
/PHP-8.3/ext/gd/ |
H A D | gd_arginfo.h | 666 ZEND_FUNCTION(imagecolorset); 807 ZEND_FE(imagecolorset, arginfo_imagecolorset)
|
H A D | gd.stub.php | 656 function imagecolorset(GdImage $image, int $color, int $red, int $green, int $blue, int $alpha = 0)… function
|
H A D | gd.c | 2207 PHP_FUNCTION(imagecolorset) in PHP_FUNCTION() argument
|
/PHP-8.3/ |
H A D | NEWS | 527 . Fix parameter numbers for imagecolorset(). (Giovanni Giacobbi)
|
Completed in 36 milliseconds