老师为什么我的图片怎么都出不来?已经开启了gd2
<?php
//打开图片
//1配置图片路径
$src="1.jpg";
//2获取图片信息
$imgInfo=getimagesize($src);
//3通过图片的编号获取图片的类型
$imgType=image_type_to_extension($imgInfo[2],false);
//4创建一个一样的图片
$fun="imagecreatefrom{$imgType}";
//给图片复制存入本地内存
$image=$fun($src);
//操作图片
//设置字体
$font="msyh.ttc";
//设置水印内容
$text="我好想你";
//设置字体颜色和透明度
$imgColor=imagecolorallocatealpha($image,255,255,255,50);
//配置写入文字
imagettftext($image,20,0,20,30, $imgColor, $font, $text);
//输出图片
//浏览器输出
header('Content-type:' . $imgInfo['mime']); //告诉浏览器输出的是图片
$func="image{imgType}";var_export($func);exit();
//保存图片
$func($image);
$func($image,"newimg.".$imgType);
//销毁图片