Yep, i have tried with arial, verdana, etc, etc but nothing
I have also tryed to write directly to the string (without doing parsing) but nothing 🙁
My code
<?php
<?
header ("Content-type: image/png");
$img = ImageCreate(500,500);
$back = ImageColorAllocate($img, 0,0,0);
$w = ImageColorAllocate($img, 255, 255, 255);
$string = "™™™½¾d€™™Ôä";
imagettftext($img, 25, 0, 20, 40, $w, "arial.TTF", $string);
ImagePNG($img);
ImageDestroy($img);
?>
?>