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

1.1     ! misho       1: --TEST--
        !             2: Testing imagelayereffect() with invalid resource of GD library
        !             3: --CREDITS--
        !             4: Rafael Dohms <rdohms [at] gmail [dot] com>
        !             5: #testfest PHPSP on 2009-06-20
        !             6: --SKIPIF--
        !             7: <?php 
        !             8:        if (!extension_loaded("gd")) die("skip GD not present");
        !             9:        if (!GD_BUNDLED) die('skip function only available in bundled, external GD detected');
        !            10: ?>
        !            11: --FILE--
        !            12: <?php
        !            13: $resource = tmpfile();
        !            14: $layer = imagelayereffect($resource, IMG_EFFECT_REPLACE);
        !            15: ?>
        !            16: --EXPECTF--
        !            17: Warning: imagelayereffect(): supplied resource is not a valid Image resource in %s on line %d

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