blob: 2542444c876aecd10643dcca1a0d1b5c99f86255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
Testing imagetruecolortopalette(): wrong types for first parameter
--CREDITS--
Rafael Dohms <rdohms [at] gmail [dot] com>
--SKIPIF--
<?php
if (!extension_loaded("gd")) die("skip GD not present");
?>
--FILE--
<?php
$resource = tmpfile();
imagesetthickness($resource, 5);
?>
--EXPECTF--
Warning: imagesetthickness(): supplied resource is not a valid Image resource in %s on line %d
|