1--TEST--
2Testing imagecolorallocatealpha(): Wrong types for parameter 3
3--CREDITS--
4Rafael Dohms <rdohms [at] gmail [dot] com>
5--SKIPIF--
6<?php
7	if (!extension_loaded("gd")) die("skip GD not present");
8?>
9--FILE--
10<?php
11$img = imagecreatetruecolor(200, 200);
12
13imagecolorallocatealpha($img, 255, 'string-non-numeric', 255, 50);
14imagecolorallocatealpha($img, 255, array(), 255, 50);
15imagecolorallocatealpha($img, 255, tmpfile(), 255, 50);
16?>
17--EXPECTF--
18Warning: imagecolorallocatealpha() expects parameter 3 to be long, %s given in %s on line %d
19
20Warning: imagecolorallocatealpha() expects parameter 3 to be long, array given in %s on line %d
21
22Warning: imagecolorallocatealpha() expects parameter 3 to be long, resource given in %s on line %d