Annotation of embedaddon/php/ext/gd/tests/imageinterlace_variation1.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Testing setting the interlace bit on with imageinterlace() of GD library
        !             3: --CREDITS--
        !             4: Edgar Ferreira da Silva <contato [at] edgarfs [dot] com [dot] br>
        !             5: #testfest PHPSP on 2009-06-20
        !             6: --SKIPIF--
        !             7: <?php 
        !             8: if (!extension_loaded("gd")) die("skip GD not present");
        !             9: ?>
        !            10: --FILE--
        !            11: <?php
        !            12: 
        !            13: $image = imagecreatetruecolor(100, 100);
        !            14: 
        !            15: var_dump(imageinterlace($image, 1));
        !            16: var_dump(imageinterlace($image));
        !            17: ?>
        !            18: --EXPECT--
        !            19: int(1)
        !            20: int(1)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>