ID: 21712
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Feedback
+Status: Open
Bug Type: GD related
Operating System: RedHat 6.1
PHP Version: 4.3.0
New Comment:
I assume the bundled library. Although the unbundled library did exist
on this machine before I compiled the new PHP. And it was version
2.0.1.
Previous Comments:
------------------------------------------------------------------------
[2003-01-17 08:48:28] [EMAIL PROTECTED]
Are you using bundled or non-bundled GD library? In case of the latter,
what version of GD library are you using?
------------------------------------------------------------------------
[2003-01-17 08:47:03] [EMAIL PROTECTED]
The following code creates a new JPEG image. It worked fine under PHP
4.2.3, but since the upgrade to PHP 4.3.0, the type now appears jagged
and in some cases with smaller type, unreadable:
<?
Header("Content-type: image/jpeg");
$size = 36;
$x = 5;
$y = 50;
$imgname = "bluebox.jpg";
$im = ImageCreateFromJPEG ($imgname); /* Attempt to open */
$color = ImageColorAllocate ($im, 255, 255, 255);
$font = "FRAMDCN.TTF";
ImageTTFText ($im, $size, 0, $x, $y, $color, $font, $label);
ImageJpeg($im,'',100);
ImageDestroy($im);
?>
ImageCreateFromPNG gives me the same results.
If replace the ImageCreateFromJPEG() with just an ImageCreate and give
it a solid color, it looks fine. It seems to only be affected when I
start the image with a template image.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=21712&edit=1