After many tryes, it seemes that it's impossible to print tm symbol using gd library...
Example of code:
Code:
<?
header ("Content-type: image/png");
$img = ImageCreate(500,500);
$back = ImageColorAllocate($img, 0,0,0);
$w = ImageColorAllocate($img, 255, 255, 255);
$string = "#153;â¢â¢Â½Â¾dâ¬â¢â¢Ãä";
//$string = "Testing... ?�";
imagettftext($img, 25, 0, 20, 40, $w, "arial.TTF", $string);
ImagePNG($img);
ImageDestroy($img);
?>
Does anybody know how to solve this problem???