ID:               25371
 Updated by:       [EMAIL PROTECTED]
 Reported By:      e_sumiya at f-den dot co dot jp
-Status:           Feedback
+Status:           Closed
 Bug Type:         GD related
 Operating System: Windows 2000 server
 PHP Version:      4.3.3
 New Comment:

No feedback, assumed fixed in CVS.



Previous Comments:
------------------------------------------------------------------------

[2003-09-03 06:52:27] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip

------------------------------------------------------------------------

[2003-09-02 19:08:01] e_sumiya at f-den dot co dot jp

Description:
------------
Imagettftext() in php_gd2.dll does not create Japanese text image. But
php_gd.dll(in win32 zip package of 4.3.1) create the image properly.

Environment:
Japanese windows 2000 server + SP4
IIS



Reproduce code:
---------------
<?
$im = imagecreate (400,100);
$black = imagecolorallocate ($im,0,0,0);
$red = imagecolorallocate ($im,255,0,0);
$white = imagecolorallocate ($im,255,255,255);

imageline ($im,0,0,100,100,$red);
$font = "c:/winnt/fonts/MSGOTHIC.ttc";
$str = "��123";
$str = mb_convert_encoding($str, "UTF-8", "SJIS");
imagettftext($im,24,0,20,30,$white,$font,$str);
header("Content-type: image/png");
header("Cache-control: no-cache");
imagepng($im);
imagedestroy($im);
?>


Expected result:
----------------
The program produces a PNG image with one Japanese character(Unicode
611B) and three numbers(123).  

Actual result:
--------------
The program produces a PNG image with two Japanese characters(Unicode
30FB) and three numbers(123). 


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=25371&edit=1

Reply via email to