21,891
社区成员
发帖
与我相关
我的任务
分享

header("Content-type: image/png");
$im = imagecreate(300, 300);
imagecolorallocate($im, 0, 0, 0);
$textColor = imagecolorallocate($im, 255, 255, 255);
imagefttext($im,20,90,50,200,$textColor,"C:\\windows\\Fonts\\SIMLI.TTF","你好!");
imagefttext($im,20,90,280,200,$textColor,"C:\\windows\\Fonts\\COUR.TTF","hello world!");
imagepng($im);
imagedestroy($im);