Home
last modified time | relevance | path

Searched refs:imagecolorallocatealpha (Results 1 – 16 of 16) sorted by relevance

/PHP-5.5/ext/gd/tests/
H A Dimagecolorallocatealpha_error1.phpt2 Testing imagecolorallocatealpha(): Wrong types for parameter 1
13 imagecolorallocatealpha($resource, 255, 255, 255, 50);
14 imagecolorallocatealpha('string', 255, 255, 255, 50);
15 imagecolorallocatealpha(array(), 255, 255, 255, 50);
16 imagecolorallocatealpha(null, 255, 255, 255, 50);
19 Warning: imagecolorallocatealpha(): supplied resource is not a valid Image resource in %s on line %d
21 Warning: imagecolorallocatealpha() expects parameter 1 to be resource, %s given in %s on line %d
23 Warning: imagecolorallocatealpha() expects parameter 1 to be resource, array given in %s on line %d
25 Warning: imagecolorallocatealpha() expects parameter 1 to be resource, null given in %s on line %d
H A Dimagecolorallocatealpha_error2.phpt2 Testing imagecolorallocatealpha(): Wrong types for parameter 2
13 imagecolorallocatealpha($img, 'string-non-numeric', 255, 255, 50);
14 imagecolorallocatealpha($img, array(), 255, 255, 50);
15 imagecolorallocatealpha($img, tmpfile(), 255, 255, 50);
18 Warning: imagecolorallocatealpha() expects parameter 2 to be long, %s given in %s on line %d
20 Warning: imagecolorallocatealpha() expects parameter 2 to be long, array given in %s on line %d
22 Warning: imagecolorallocatealpha() expects parameter 2 to be long, resource given in %s on line %d
H A Dimagecolorallocatealpha_error3.phpt2 Testing imagecolorallocatealpha(): Wrong types for parameter 3
13 imagecolorallocatealpha($img, 255, 'string-non-numeric', 255, 50);
14 imagecolorallocatealpha($img, 255, array(), 255, 50);
15 imagecolorallocatealpha($img, 255, tmpfile(), 255, 50);
18 Warning: imagecolorallocatealpha() expects parameter 3 to be long, %s given in %s on line %d
20 Warning: imagecolorallocatealpha() expects parameter 3 to be long, array given in %s on line %d
22 Warning: imagecolorallocatealpha() expects parameter 3 to be long, resource given in %s on line %d
H A Dimagecolorallocatealpha_error4.phpt2 Testing imagecolorallocatealpha(): Wrong types for parameter 4
13 imagecolorallocatealpha($img, 255, 255, 'string-non-numeric', 50);
14 imagecolorallocatealpha($img, 255, 255, array(), 50);
15 imagecolorallocatealpha($img, 255, 255, tmpfile(), 50);
18 Warning: imagecolorallocatealpha() expects parameter 4 to be long, %s given in %s on line %d
20 Warning: imagecolorallocatealpha() expects parameter 4 to be long, array given in %s on line %d
22 Warning: imagecolorallocatealpha() expects parameter 4 to be long, resource given in %s on line %d
H A Dimagecolorallocatealpha_error5.phpt2 Testing imagecolorallocatealpha(): Wrong types for parameter 5
13 imagecolorallocatealpha($img, 255, 255, 255, 'string-non-numeric');
14 imagecolorallocatealpha($img, 255, 255, 255, array());
15 imagecolorallocatealpha($img, 255, 255, 255, tmpfile());
18 Warning: imagecolorallocatealpha() expects parameter 5 to be long, %s given in %s on line %d
20 Warning: imagecolorallocatealpha() expects parameter 5 to be long, array given in %s on line %d
22 Warning: imagecolorallocatealpha() expects parameter 5 to be long, resource given in %s on line %d
H A Dlibgd00100.phpt12 $white = imagecolorallocatealpha($im, 255, 255, 255, 10);
13 $black = imagecolorallocatealpha($im, 0, 0, 0, 10);
14 $red = imagecolorallocatealpha($im, 255, 0, 0, 10);
15 $green = imagecolorallocatealpha($im, 0, 255, 0, 10);
16 $blue = imagecolorallocatealpha($im, 0, 0, 255, 10);
17 $yellow = imagecolorallocatealpha($im, 255, 255, 0, 10);
18 $cyan = imagecolorallocatealpha($im, 0, 255, 255, 10);
19 $magenta = imagecolorallocatealpha($im, 255, 0, 255, 10);
20 $purple = imagecolorallocatealpha($im, 100, 0, 100, 10);
H A Dimagecolorallocatealpha_basic.phpt2 Testing imagecolorallocatealpha()
14 $corA = imagecolorallocatealpha($img, 50, 100, 255, 50);
15 //$whiteA = imagecolorallocatealpha($img, 255, 255, 255, 127);
H A Dcolorclosest.phpt55 imagecolorallocatealpha($im, 255, 0, 255, 1);
69 imagecolorallocatealpha($im, $i,10,10,1);
71 imagecolorallocatealpha($im, $i,0,0,100);
H A Dbug39508.phpt10 $bgcolor = imagecolorallocatealpha($im,255, 255, 0, 0);
H A Dbug61221.phpt12 $blacktransparent = imagecolorallocatealpha($img, 0, 0, 0, 127);
H A Dbug38179.phpt11 $c1 = imagecolorallocatealpha($src, 255,0,0,70);
H A Dbug39273.phpt10 $c1 = imagecolorallocatealpha($small, 255,0,0,50);
H A Dcolorexact.phpt22 $c3 = imagecolorallocatealpha($im, 255,200,0,100);
H A Dcopypalette.phpt31 imagecolorallocatealpha($im, 0,0,0,100);
/PHP-5.5/ext/gd/
H A Dphp_gd.h111 PHP_FUNCTION(imagecolorallocatealpha);
H A Dgd.c911 PHP_FE(imagecolorallocatealpha, arginfo_imagecolorallocatealpha)
1820 PHP_FUNCTION(imagecolorallocatealpha) in PHP_FUNCTION() argument

Completed in 26 milliseconds