fujianai
新手上路

UID 78849
精华
0
积分 10
帖子 6
金钱 10 喜悦币
威望 0
人脉 0
阅读权限 10
注册 2006-8-22
状态 离线
|
[推荐阅读] brain storm 记录
大小写已经很注意了,应该不是这个问题的
参看简单代码:
<?php
header("Content-type: image/png");
list($width, $height) = getimagesize("hills.jpg");
$im = imagecreatetruecolor($width, $height);
$src_img = imagecreatefromjpeg("hills.jpg");
$text_color = imagecolorallocate($im, 233, 14, 91);
imagecopyresampled($im, $src_img, 0, 0, 0, 0, $width, $height, $width, $height);
imagettftext($im, 20, 0,0,50, $text_color , "./simhei.ttf","sadfasdf");
imagepng($im);
imagedestroy($im);
?>
|
|