1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/ext/gd/tests/bug51263.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

33 lines
813 B
PHP

--TEST--
Bug #51263 (imagettftext and rotated text uses wrong baseline)
--SKIPIF--
<?php
if(!extension_loaded('gd')){ die('skip gd extension not available'); }
if(!function_exists('imagettftext')) die('skip imagettftext() not available');
?>
--FILE--
<?php
$cwd = dirname(__FILE__);
$ttf = "$cwd/Tuffy.ttf";
$w = 23;
$h = 70;
$img = imagecreatetruecolor($w, $h);
$blk = imagecolorallocate($img, 0, 0, 0);
imagefilledrectangle($img, 0, 0, $w-1, $h-1, $blk);
$col = imagecolorallocate($img, 255, 255, 255);
imagettftext($img, 8, 90, 10, 60, $col, $ttf, "foo bar qux");
$x = array(0, 1, 2, 3, 13);
for ($j=0; $j<30; $j++) {
foreach ($x as $i) {
$c = imagecolorat($img, $i, $j);
if ($c != 0) {
echo "KO: ($i, $j)\n";
exit;
}
}
}
echo "OK\n";
?>
--EXPECT--
OK