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

1.1     ! misho       1: --TEST--
        !             2: Testing imagecharup() 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: ?>
        !            10: --FILE--
        !            11: <?php
        !            12: $image = imagecreatetruecolor(180, 30);
        !            13: $white = imagecolorallocate($image, 255,255,255);
        !            14: 
        !            15: $result = imagecharup($image, 1, 5, 5, 'C', $white);
        !            16: 
        !            17: ob_start();
        !            18: imagepng($image, null, 9);
        !            19: $img = ob_get_contents();
        !            20: ob_end_clean();
        !            21: 
        !            22: echo md5(base64_encode($img));
        !            23: ?>
        !            24: --EXPECT--
        !            25: 79b48d5cef6d489bb68573df0296d775

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