<?php
/*保存图片*/
$src="001.jpg";
$info=getimagesize($src);
$type=image_type_to_extension($info[2],false);
print_r($info);
$fun="imagecreatefrom{$type}";
$image=$fun($src);
$font="msyh.ttf";
$content="你好,慕课";
$col=imagecolorallocatealpha($image,255,255,255,50);
imagettftext($image,20,0,20,30,$col,$font,$content);
header("Content-type: " . $info['mime']);
$func="image{$type}";
$func($image);
$func($image,'newimage.'.$type);
imagedestroy($image);
?>
可以参考这里,http://www.thinkphp.cn/topic/23636.html
在header前面加ob_clean()
我也是,不知道怎么回事
我也出现这个
菜鸟飘过!