Searched refs:imagecolorset (Results 1 – 5 of 5) sorted by relevance
/php-src/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) 26 !! [ValueError] imagecolorset(): Argument #6 ($alpha) must be between 0 and 127 (inclusive)
|
H A D | imagecolorset_basic.phpt | 2 Test imagecolorset() function : basic functionality 26 imagecolorset($im, $bg, 0, 0, 255);
|
/php-src/ext/gd/ |
H A D | gd_arginfo.h | 655 ZEND_FUNCTION(imagecolorset); 791 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 | 2384 PHP_FUNCTION(imagecolorset) in PHP_FUNCTION() argument
|
Completed in 29 milliseconds