File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / gd / tests / bug49600.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:56 2012 UTC (12 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--TEST--
Bug #49600 (imageTTFText text shifted right)
--SKIPIF--
<?php
	if(!extension_loaded('gd')){ die('skip gd extension not available'); }
	if(!function_exists('imagettftext')) die('skip imagettftext() not available');
	if(!function_exists('imagettfbbox')) die('skip imagettfbbox() not available');
?>
--FILE--
<?php
$cwd = dirname(__FILE__);
$font = "$cwd/Tuffy.ttf";
$image = imagecreatetruecolor(50, 50);
$color = imagecolorallocate($image, 255, 255, 255);
foreach (array("E", "I", "P", "g", "i", "q") as $c)
{
    $x = imagettftext($image, 32, 0, 0, 0, $color, $font, $c);
	$y = imagettfbbox(32, 0, "$cwd/Tuffy.ttf", $c);
    if ( abs($x[0] - $y[0]) > 1
      || abs($x[2] - $y[2]) > 1
      || abs($x[4] - $y[4]) > 1
      || abs($x[6] - $y[6]) > 1 ) {
      echo "FAILED: \n";
      var_dump($x);
      var_dump($y);
      exit;
    }
}
echo 'OK';
?>
--EXPECTF--
OK

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