php-src/ext/gd/tests/imageinterlace_basic.phpt
2009-07-01 00:56:01 +00:00

18 lines
346 B
PHP
Executable File

--TEST--
Testing imageinterlace() of GD library
--CREDITS--
Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br>
#testfest PHPSP on 2009-06-20
--SKIPIF--
<?php
if (!extension_loaded("gd")) die("skip GD not present");
?>
--FILE--
<?php
$image = imagecreatetruecolor(100, 100);
var_dump(imageinterlace($image));
?>
--EXPECT--
int(0)