ID:               25926
 User updated by:  olga at bluebytes dot com
 Reported By:      olga at bluebytes dot com
-Status:           Bogus
+Status:           Open
 Bug Type:         GD related
 Operating System: Linux
 PHP Version:      4.3.3
 New Comment:

Actually, I just installed PHP Version 4.3.4RC3-dev which is marked as
stable on snaps.php.net, and it's still not working.


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

[2003-10-21 15:38:47] [EMAIL PROTECTED]

Using latest STABLE CVS snapshot with bundled GD library works just
fine.


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

[2003-10-20 15:50:41] olga at bluebytes dot com

Description:
------------
ImageTTFText doesn't output any characters. If there's anything else in
the image, the rest will be fine; if the text string is the only thing,
the image will be blank.
Trying to figure out what's wrong, I took a look at the return values
from ImageTTFText as well as ImageTTFBox. They both produce huge
values, i.e. Array ( [0] => 138323388 [1] => 11 [2] => -1073754136 [3]
=> 1076636124 [4] => 138611764 [5] => 138323484 [6] => 11 [7] => 0 ) 

The values DO NOT depend on the font used. Furthermore, they are
different each time I load the page for the SAME font
(http://blunoise.com/imagetext.php shows values for "Hello world" in
arial).

Reproduce code:
---------------
<?php
  //header("Content-type: image/jpeg");
  error_reporting('E_ALL');
  $im = imagecreate(400,30);
  $white = imagecolorallocate($im, 255,255,255);
  $black = imagecolorallocate($im, 0,0,0);

  // Replace path by your own font path
  $result = imagettftext($im, 12, 0, 6, 20, $black,
"/home/blunoise/fonts/arial.ttf", "Hello world");
  $bbox=imagettfbbox (12, 0, "/home/blunoise/fonts/arial.ttf", "Hello
world");
  print_r($bbox);

  //imagepng($im);
  imagedestroy($im);
?>


Expected result:
----------------
A jpeg saying "Hello world"



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


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

Reply via email to