TrueType Fonts
You can use any TrueType Font that includes a Unicode mapping table. Fonts such as Wingdings will not work.

<?php
$im  
ImageCreate(600,3000);
$white ImageColorAllocate($im,255,255,255);
$black ImageColorAllocate($im,0,0,0);
$y=30;
foreach (
glob("c:/Windows/Fonts/*.ttf") as $v) {
    
ImageString($im,5,5,$y-20,substr($file,0,-4),$black);
    
ImageTTFText($im,30,0,100,$y,$blackbasename($v'.ttf'),"ABCdéf123");
    
$y+=40;
}
Header('Content-Type: image/png');
ImagePNG($im);
?>
Output