为了账号安全,请及时绑定邮箱和手机立即绑定

图片因存在错误而无法显示

按照老师的代码发现图片错误 什么原因啊
<?php 
//open picture
  $src = "001.jpg";
  //get picture info
  $info = getimagesize($src);
  //get pirture type for num
  $type = image_type_to_extension($info[2],false);
  //build picture in stronge
  $fun = "imagecreatefrom{$type}";
  //copy
  $image = $fun($src);//as imagecreatefromjpeg($src);

//option picture
  //create width height px pricture
  $image_thumb = imagecreatetruecolor(300, 200);
  //copy after pirture in px priture
  imagecopyresampled($image_thumb, $image, 0, 0, 0, 0, 300, 200, $info[0], $info[1]);
  //destroy image
  imagedestroy($image);

//show picture in borwer
  ob_clean();
  header("Content-type:".$info['mime']);
  $funs = 'image{$type}';
  $funs{$image_thumb};

//destroy
  imagedestroy($image_thumb);

?>

正在回答

2 回答

已解决 原来是26行的符号错误 {} 改成() 手误

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

图片因存在错误而无法显示

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信