php-src/ext/gd/tests/imageinterlace_variation1.phpt

19 lines
376 B
Plaintext
Raw Permalink Normal View History

2009-07-01 00:51:26 +00:00
--TEST--
Testing setting the interlace bit on with imageinterlace() of GD library
--CREDITS--
Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br>
#testfest PHPSP on 2009-06-20
--EXTENSIONS--
gd
2009-07-01 00:51:26 +00:00
--FILE--
<?php
$image = imagecreatetruecolor(100, 100);
var_dump(imageinterlace($image, true));
2009-07-01 00:51:26 +00:00
var_dump(imageinterlace($image));
?>
--EXPECT--
bool(true)
bool(true)