0

我有 html 表单来上传图片,我想在上传过程中调整大小/缩略图。

$uploadDir= "/uploads";
$imageName= $_FILES['image']['name'];
$tempPath = $_FILES['image']['tmp_name'];

move_uploaded_file ($tempPath,$uploadDir);

调整大小:

convert $imageName -resize 800x600 -strip -quality 50 -interlace line output.jpg

缩略图:

convert $imageName -resize x120 -gravity center -crop 120x120+0+0 +repage thumb_output.jpg

这是第一次使用 Imagick !

谢谢你

4

1 回答 1

1

使用 nohup 在后台使用 exec() 运行这些命令。

exec('nohup convert ... > /dev/null &');
于 2011-04-10T19:46:05.883 回答