I can't use the TTF founction to generate the PNG image. I use PHP4.06.
GD Support enabled
GD Version 1.6.2 or higher
FreeType Support enabled
FreeType Linkage with freetype
the font.ttf file is copied from windows98. can anyone help me? Thx a lot.
error message:
libgd was not built with TrueType font support in text2gif.php
code:
<?
Header("Content-type: image/png");
$font="arial.ttf";
$str="hi, this is a testing page";
$im = ImageCreate(400,400);
$black = ImageColorAllocate($im, 0,0,0);
$white=ImageColorAllocate($im, 200,55,200);
ImageTTFText($im, 18, 0, 8,8, $white, $font, $str);
Imagepng($im);
ImageDestroy($im);
?>