From:             [EMAIL PROTECTED]
Operating system: Windows 2000 SP1
PHP version:      4.0.6
PHP Bug Type:     GD related
Bug description:  Truetype functions can't locate fonts

The GD TrueType functions can't find fonts; relative paths and absolute
paths both do not work.

Example (font is in the local directory, and . is part of my php.ini
include_path)
<?
$image = ImageCreateTrueColor(200,200);
ImageTTFText($image, 20, 0, 2, 15, $red, "d:/path/to/font.ttf", "Some
text.");
header("Content-type: image/jpeg");
// alternatively, ImageTTFText($image, 20, 0, 2, 15, $red, "font.ttf",
"Some text."); 
header("Content-type: image/jpeg");
ImageJPEG($image, '', 100);
ImageDestroy($image);
?>
(written off the top of my head, it's in a larger script, but test scripts
I wrote and unfortunately deleted don't work either)

PHP reports: Warning: Could not find/open font in d:\path\to\fonttest.php
on line 3

This is from the binary Win32 distribution of PHP 4.0.6 on php.net.
-- 
Edit bug report at: http://bugs.php.net/?id=12064&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to