如何使用imagemagick将图像填充到给定大小?


1

假设我有一个不同的图像目录3024×40324032×3024像素,我希望它们都调整大小1920×1080

我想要精确的输出尺寸,但我不希望图像失真以适应尺寸,因此我希望根据需要用黑色填充边缘以保持原始图像的纵横比。什么是ImageMagick命令行根据需要填充图像?

Answers:


1

对于每个图像,此命令将生成图像的一个1920x1080版本,居中,边缘填充为黑色,如果需要:

convert [input file] -resize 1920x1080 -background black -gravity center -extent 1920x1080 [output file]

来源:标志的ImageMagick文档-extent

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.