ImageMagick 居中放大图片
2021-12-17 11:25
276人阅读
评论 (0)
居中放大图片
magick image.png -background Transparent -gravity center -extent 128x128 image.png
水平合并图片
magick convert +append 1.jpg 2.jpg 3.jpg full.jpg
垂直合并图片
magick convert +append 1.jpg 2.jpg 3.jpg full.jpg
转换格式
magick example.png example.jpg
转换格式 并指定压缩级别
magick example.png -quality 95 example.jpg
缩略图
magick example.png -resize 200×100 example.png
缩略图 指定大小
magick example.png -resize 200×100! example.png
缩略图 指定宽度
magick example.png -resize 200 example.png
缩略图 指定高度
magick example.png -resize x200 example.png
旋转图像
magick example.jpg -rotate 90 example.jpg
旋转图像
magick example.png -fuzz 2% -transparent white example.png
https://imagemagick.org/script/command-line-options.php#gravity
http://www.imagemagick.com.cn/command_line_options.html#fuzz