16 lines
291 B
Plaintext
16 lines
291 B
Plaintext
|
|
--TEST--
|
||
|
|
Testing imageinterlace() of GD library
|
||
|
|
--CREDITS--
|
||
|
|
Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br>
|
||
|
|
#testfest PHPSP on 2009-06-20
|
||
|
|
--EXTENSIONS--
|
||
|
|
gd
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
$image = imagecreatetruecolor(100, 100);
|
||
|
|
var_dump(imageinterlace($image));
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
bool(false)
|