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