我目前允许用户上传 img,然后将图像保存为以下内容:
$tmp = imagecreatetruecolor($configWidth, $configHeight);
imagecopyresampled($tmp, $src, 0,0,0,0,$configWidth,$configHeight,$origWidth,$origHeight);
imagejpeg($tmp, $_SERVER['DOCUMENT_ROOT'].$folder.$newFileName,90);
然后我将图像显示给用户,以便他们可以裁剪图像。
我想问我是否可以在不保存的情况下显示图像进行裁剪 - 例如:我可以向用户显示图像以从 tmp_name 进行裁剪 - tmp php 图像?
我不确定这是否可行,但它可以避免保存一张图像,然后在裁剪后删除......
谢谢