$src="a.png";
$info=getimagesize($src);
$type=image_type_to_extension($info[2],false);
$fun="imagecreatefrom{$type}";
$image=$fun($src);
$image_thumb=imagecreatetruecolor(100,100);
imagecopyresampled($image_thumb,$image,0,0,0,0,100,100,$info[0],$info[1]);
imagedestroy($image);
//1.在线生成图片
header("content-type:".$info['mime']);
$funs="image{$type}";
//2.保存图片
$funs($image_thumb);
$funs($image_thumb,"image_thumb.".$type);
imagedestroy($image_thumb);
保存的话,占物理内存
不保存的话,占运行内存
一般这种情况,大中小型项目分别都是怎么处理的?
慕尼黑5688855
呼啦一阵风
呼唤远方
www说