Searched refs:imagefilltoborder (Results 1 – 14 of 14) sorted by relevance
/PHP-7.0/ext/gd/tests/ |
H A D | github_bug_215.phpt | 2 Github #215 (imagefilltoborder stack overflow when invalid pallete index used) 18 imagefilltoborder( $image, 0,0, $border+10, $fillcolor); 22 imagefilltoborder( $image, 0,0, -$border, $fillcolor); 27 imagefilltoborder( $image, 0,0, $border, $fillcolor+10); 31 imagefilltoborder( $image, 0,0, $border, -$fillcolor); 36 imagefilltoborder( $image, 0,0, $border+10, $fillcolor+10);
|
H A D | imagefilltoborder_error7.phpt | 2 Testing wrong param passing imagefilltoborder() of GD library 22 imagefilltoborder( $image, 50, 50 ); 26 Warning: imagefilltoborder() expects exactly 5 parameters, %d given in %s on line %d
|
H A D | imagefilltoborder_error5.phpt | 2 Testing wrong param passing imagefilltoborder() of GD library 22 imagefilltoborder( $image, 50, 50, imagecolorallocate( $image, 0, 0, 0 ), 'wrong param' ); 26 Warning: imagefilltoborder() expects parameter 5 to be integer, %s given in %s on line %d
|
H A D | imagefilltoborder_error1.phpt | 2 Testing wrong param passing imagefilltoborder() of GD library 22 imagefilltoborder( 'wrong param', 50, 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallocate… 26 Warning: imagefilltoborder() expects parameter 1 to be resource, %s given in %s on line %d
|
H A D | imagefilltoborder_error4.phpt | 2 Testing wrong param passing imagefilltoborder() of GD library 22 imagefilltoborder( $image, 50, 50, 'wrong param', imagecolorallocate( $image, 255, 0, 0 ) ); 26 Warning: imagefilltoborder() expects parameter 4 to be integer, %s given in %s on line %d
|
H A D | imagefilltoborder_error6.phpt | 2 Testing wrong param passing imagefilltoborder() of GD library 23 imagefilltoborder( $image_foo, 50, 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallocate( $… 27 Warning: imagefilltoborder(): supplied resource is not a valid Image resource in %s on line %d
|
H A D | imagefilltoborder_error2.phpt | 2 Testing wrong param passing imagefilltoborder() of GD library 22 imagefilltoborder( $image, 'wrong param', 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallo… 26 Warning: imagefilltoborder() expects parameter 2 to be integer, %s given in %s on line %d
|
H A D | imagefilltoborder_error3.phpt | 2 Testing wrong param passing imagefilltoborder() of GD library 22 imagefilltoborder( $image, 50, 'wrong param', imagecolorallocate( $image, 0, 0, 0 ), imagecolorallo… 26 Warning: imagefilltoborder() expects parameter 3 to be integer, %s given in %s on line %d
|
H A D | bug72696.phpt | 2 Bug #72696 (imagefilltoborder stackoverflow on truecolor images) 10 imagefilltoborder($im, 0, 0, 1, -2);
|
H A D | bug66387.phpt | 2 Bug #66387 (Stack overflow with imagefilltoborder) 14 imagefilltoborder($im, 0, -999355, $c, $c);
|
H A D | imagefilltoborder_basic.phpt | 2 Testing imagefilltoborder() of GD library 22 imagefilltoborder( $image, 50, 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallocate( $imag…
|
/PHP-7.0/ext/gd/ |
H A D | php_gd.h | 163 PHP_FUNCTION(imagefilltoborder);
|
H A D | gd.c | 929 PHP_FE(imagefilltoborder, arginfo_imagefilltoborder) 3249 PHP_FUNCTION(imagefilltoborder) in PHP_FUNCTION() argument
|
/PHP-7.0/ |
H A D | NEWS | 907 . Fixed bug #72696 (imagefilltoborder stackoverflow on truecolor images). 1481 . Fixed bug #66387 (Stack overflow with imagefilltoborder). (CVE-2015-8874) 2508 . Fixed bug #66387 (Stack overflow with imagefilltoborder). (CVE-2015-8874)
|
Completed in 40 milliseconds