I am currently trying to get a form which will allow multiple images to be uploaded and resized on the server using PHP. Each uploaded image by the client is around 2.5mb in size.
I am currently using the move_uploaded_file()
function.
将档案移至服务器没有任何问题。 当我尝试种植时,问题就会出现。 在我的东道方没有ImageMagick之后,我正在使用这一套办法(并不是所有相关的法典,而是与$width
。 等
$image_p = imagecreatetruecolor($width, $height);
$image = imagecreatefromjpeg($filename);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
imagejpeg($image_p, $output_filename, 80);
目前,这只能用于2个图像。 如果提交了3份或3份以上的材料,我就会出现一个全记错误。 由于我的记忆极限是120mb,我对此进行了研究。 很显然,_imagecreate fromjpeg
功能使用了许多记忆,特别是如果档案有一大分辨率(这确实如此),因此我需要加以种植/翻新。
是否有人知道对这项工作采取更高效的办法? 我已经研究过奥古拉,但大家使用我所讲的同样技术。