我有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!
谢谢
答案 0 :(得分:1)
使用nohup在后台使用exec()运行这些命令。
exec('nohup convert ... > /dev/null &');