为什么不能预览改文件
<?php
$im=imagecreatetruecolor(100,30);
$bg=imagecolorallocate($im,0,0,0);
$textcolor=imagecolorallocate($im,0,255,255);
imagestring($im,5,0,0,"Hello World!",$textcolor);
header("Content-type:image/jepg");
imagejepg($im);
?>
路径是正确的PHP图像处理IM