Imagemagick:转换为固定高度、比例宽度
使用 Imagemagick,我想将一批 PNG 转换为固定高度 1080 像素和比例宽度。 比例我的意思是:如果原始图像缩小16.8%到1080px,宽度也需要缩小16.8%。
有什么方法可以使用转换而不需要之前计算精确的几何形状(使用identify
和一些bash计算恶作剧)?
Using Imagemagick, I'd like to convert
a batch of PNGs to a fixed height of 1080px and a proportional width. With proportional I mean this: If the original Image is scaled down 16.8% to 1080px, the width also needs to be scaled down by 16.8%.
Any way of using convert without having to calculate the exact geometry before (using identify
and some bash calculation shenanigans) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
Try this:
图像几何 是一个与
一起使用的选项 - resize
所以你只需要指定高度
Image geometry is an option described to use with
-resize
So you only have to specify the height
还有一个额外的例子。给它一些调整大小参数的值,它会自动调整图像的大小。另外,您可以选择其他参数(重心或作物等)。
干杯
There is one additional example. give it some values to the resize parameters and it'll automatically resize your image. Plus you can chose other parameters (gravity center or crop etc.).
Cheers