1--TEST--
2Testing imagecreatetruecolor(): error on out of bound parameters
3--CREDITS--
4Rafael Dohms <rdohms [at] gmail [dot] com>
5--SKIPIF--
6<?php
7    if (!extension_loaded("gd")) die("skip GD not present");
8    if (!function_exists("imagecreatetruecolor")) die("skip GD Version not compatible");
9?>
10--FILE--
11<?php
12
13require __DIR__ . '/func.inc';
14
15trycatch_dump(
16    fn() => imagecreatetruecolor(-1, 30),
17    fn() => imagecreatetruecolor(30, -1)
18);
19
20?>
21--EXPECT--
22!! [ValueError] imagecreatetruecolor(): Argument #1 ($width) must be greater than 0
23!! [ValueError] imagecreatetruecolor(): Argument #2 ($height) must be greater than 0
24