summaryrefslogtreecommitdiff
path: root/ext/gd/tests/imageantialias_error1.phpt
blob: e9475e9571314a14a30d9b9cff54742e198fe6b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
Testing wrong parameter resource in imageantialias() of GD library
--CREDITS--
Guilherme Blanco <guilhermeblanco [at] hotmail [dot] com>
#testfest PHPSP on 2009-06-20
--SKIPIF--
<?php 
if (!extension_loaded("gd")) die("skip GD not present");
if (!GD_BUNDLED) die("skip requires bundled GD library\n");
?>
--FILE--
<?php
$image = tmpfile();

var_dump(imageantialias($image, true));
?>
--EXPECTF--
Warning: imageantialias(): supplied resource is not a valid Image resource in %s on line %d
bool(false)