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

1.1     ! misho       1: --TEST--
        !             2: Bug #48801 (Problem with imagettfbbox) freetype >= 2.4.10
        !             3: --SKIPIF--
        !             4: <?php
        !             5:        if(!extension_loaded('gd')){ die('skip gd extension not available'); }
        !             6:        if(!function_exists('imageftbbox')) die('skip imageftbbox() not available');
        !             7: 
        !             8:        include dirname(__FILE__) . '/func.inc';
        !             9:        if(version_compare(get_freetype_version(), '2.4.10') == -1) die('skip for freetype >= 2.4.10');
        !            10: ?>
        !            11: --FILE--
        !            12: <?php
        !            13: $cwd = dirname(__FILE__);
        !            14: $font = "$cwd/Tuffy.ttf";
        !            15: $bbox = imageftbbox(50, 0, $font, "image");
        !            16: echo '(' . $bbox[0] . ', ' . $bbox[1] . ")\n";
        !            17: echo '(' . $bbox[2] . ', ' . $bbox[3] . ")\n";
        !            18: echo '(' . $bbox[4] . ', ' . $bbox[5] . ")\n";
        !            19: echo '(' . $bbox[6] . ', ' . $bbox[7] . ")\n";
        !            20: ?>
        !            21: --EXPECTF--
        !            22: (-1, 15)
        !            23: (156, 15)
        !            24: (156, -48)
        !            25: (-1, -48)

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