例子 1. imagettftext() 例子
| );
  $im = imagecreate(400,30);
  $white = imagecolorallocate($im, 255,255,255);
  $black = imagecolorallocate($im, 0,0,0);
  // Replace path by your own font path
  imagettftext($im, 20, 0, 10, 20, $black, "/path/arial.ttf",
  "Testing... Omega: Ω");
  imagejpeg($im);
  imagedestroy($im);
?> 
 |   
 |