(写 TTF 文字到图中) ImageTTFText

<?php  
  
Header("Content-type: image/gif");  
  
$im = imagecreate(400,30);  
$black = ImageColorAllocate($im, 0,0,0);  
$white = ImageColorAllocate($im, 255,255,255);  
ImageTTFText($im, 20, 0, 10, 20, $white, "./arial.ttf", "I am NUMBER ONE !!");  
ImageGif($im);  
ImageDestroy($im);  
  
  
  
  
?>  

  http://blog.csdn.net/smstong/article/details/43955705

原文地址:https://www.cnblogs.com/ouruola863/p/8571683.html