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

1.1     ! misho       1: --TEST--
        !             2: Send not TrueColor to Image 1 parameter imagecolormatch() of GD library
        !             3: --CREDITS--
        !             4: Paulo Alves de Sousa Filho <pspalves [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: ?>
        !            10: --FILE--
        !            11: <?php
        !            12: $ima = imagecreate(110, 20);
        !            13: $background_color = imagecolorallocate($ima, 0, 0, 0);
        !            14: $imb = imagecreate(110, 20);
        !            15: $background_color = imagecolorallocate($imb, 0, 0, 100);
        !            16: var_dump(imagecolormatch($ima, $imb));
        !            17: ?>
        !            18: --EXPECTF--
        !            19: Warning: imagecolormatch(): Image1 must be TrueColor in %s on line %d
        !            20: bool(false)

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