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

Edin, update to latest freetype for win32 build.



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

[2003-09-08 12:19:14] [EMAIL PROTECTED]

Cannot reproduced with built-in gd and libfreetype2 (2.1.4)
I guess this has something to do with the freetype version..

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

[2003-09-08 11:53:04] [EMAIL PROTECTED]

Verified w/ win2k professional and the latest snap


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

[2003-09-08 09:34:16] [EMAIL PROTECTED]

No feedback, assumed fixed in CVS.


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

[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