什么都正常,唯一就是浏览器不显示图片,求解
代码如下:
<?php $src = "messi.jpeg"; $info = getimagesize($src); print_r($info); header("Content-type:".$info['mime']); $type = image_type_to_extension($info[2],false); print_r($type); $fun = "imagecreatefrom{$type}"; $image = $fun($src); $font = "msyh.ttf"; $content = "hello world"; $col = imagecolorallocatealpha($image,255,255,255,50); imagettftext($image,20,0,50,50,$col,$font,$content); $func = "image{$type}"; $func($image); $func($image,'newimage.'.$type); imagedestroy($image); ?>
浏览器显示如下:
练习用的文件夹如下:竟然保存成功……
我就是想问问 为什么?怎么改?