PHP 文字转图片

header("Content-type: image/png");
$im = imagecreatetruecolor(400, 30);
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);
$text = '方正卡通';
$font = 'resources/msyh.ttf'; //转换文字为中文是  需要注意字体
imagettftext($im, 20, 0, 11, 21, $grey, $font, $text);
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
imagepng($im);
imagedestroy($im);

  

posted on 2013-10-22 10:09  维护宇宙和平  阅读(553)  评论(0编辑  收藏  举报