Searched refs:imagegammacorrect (Results 1 – 12 of 12) sorted by relevance
/PHP-7.2/ext/gd/tests/ |
H A D | bug72730.phpt | 2 Bug #72730: imagegammacorrect allows arbitrary write access 10 imagegammacorrect($img, -1, 1337); 14 Warning: imagegammacorrect(): Gamma values should be positive in %sbug72730.php on line %d
|
H A D | imagegammacorrect_error1.phpt | 2 Testing error with non-resource paramenter of imagegammacorrect() of GD library, 13 $gamma = imagegammacorrect('string', 1, 5); 17 Warning: imagegammacorrect() expects parameter 1 to be resource, %s given in %s on line %d
|
H A D | imagegammacorrect_error2.phpt | 2 Testing error with non-Image resource paramenter of imagegammacorrect() of GD library, 13 $gamma = imagegammacorrect($image, 1, 5); 17 Warning: imagegammacorrect(): supplied resource is not a valid Image resource in %s on line %d
|
H A D | imagegammacorrect_error3.phpt | 2 Testing error with non-double first paramenter of imagegammacorrect() of GD library, 13 $gamma = imagegammacorrect($image, 'string', 5); 17 Warning: imagegammacorrect() expects parameter 2 to be float, %s given in %s on line %d
|
H A D | imagegammacorrect_error4.phpt | 2 Testing error with non-double second paramenter of imagegammacorrect() of GD library, 13 $gamma = imagegammacorrect($image, 1, 'string'); 17 Warning: imagegammacorrect() expects parameter 3 to be float, %s given in %s on line %d
|
H A D | bug61221.phpt | 2 Bug #61221 - imagegammacorrect function loses alpha channel 17 imagegammacorrect($img, 1, 1);
|
H A D | imagegammacorrect_basic.phpt | 2 Testing imagegammacorrect() of GD library 23 $gamma = imagegammacorrect($image, 1, 5);
|
H A D | imagegammacorrect_variation1.phpt | 2 Testing imagegammacorrect() of GD library with non TrueColor image 23 $gamma = imagegammacorrect($image, 1, 5);
|
H A D | imagegammacorrect_variation2.phpt | 2 Apply imagegammacorrect() to a step wedge 30 imagegammacorrect($im, $in, $out);
|
/PHP-7.2/ext/gd/ |
H A D | php_gd.h | 161 PHP_FUNCTION(imagegammacorrect);
|
H A D | gd.c | 964 PHP_FE(imagegammacorrect, arginfo_imagegammacorrect) 3096 PHP_FUNCTION(imagegammacorrect) in PHP_FUNCTION() argument
|
/PHP-7.2/ |
H A D | NEWS | 2717 . Fixed bug #72730 (imagegammacorrect allows arbitrary write access). (Stas)
|
Completed in 31 milliseconds