使用ImageMagick上传时调整缩小/缩小图像

时间:2010-12-18 21:43:25

标签: php upload imagick

我有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!

谢谢

1 个答案:

答案 0 :(得分:1)

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

exec('nohup convert ... > /dev/null &');