summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imagecolorallocatealpha_error3.phpt
blob: 406d20eea078b3343efb51bea972f73a775ee6dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
Testing imagecolorallocatealpha(): Wrong types for parameter 3
--CREDITS--
Rafael Dohms <rdohms [at] gmail [dot] com>
--SKIPIF--
<?php
	if (!extension_loaded("gd")) die("skip GD not present");
?>
--FILE--
<?php
$img = imagecreatetruecolor(200, 200);

imagecolorallocatealpha($img, 255, 'string-non-numeric', 255, 50);
imagecolorallocatealpha($img, 255, array(), 255, 50);
imagecolorallocatealpha($img, 255, tmpfile(), 255, 50);
?>
--EXPECTF--
Warning: imagecolorallocatealpha() expects parameter 3 to be integer, %s given in %s on line %d

Warning: imagecolorallocatealpha() expects parameter 3 to be integer, array given in %s on line %d

Warning: imagecolorallocatealpha() expects parameter 3 to be integer, resource given in %s on line %d