如何在命令行上同时降低图像的分辨率并提高 DPI?
我认为 ImageMagick 应该能够做到这一点,但还没有弄清楚如何做到。缺乏英文谷歌并没有帮助(我现在在中国)。
我也很感谢有关此方法是否适用于牺牲分辨率以增加“真实”DPI 的评论。
I'm thinking ImageMagick should be able to do it, but have yet to be able to figure out how. The lack of English Google doesn't help (I'm in China right now).
I'd also appreciate comments about whether this method works for sacrificing resolution to increase "real" DPI.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您更改图像的 DPI 时,分辨率(以英寸为单位)会自动相应更改,而尺寸(以像素为单位)保持不变。因此,像
convert -units PixelsPerInch -desired 600 input.png output.png
这样的命令可能会满足您的需求,其中 600 是目标 DPI。When you change the DPI of an image, the resolution (in inches) automatically changes accordingly, while the size (in pixels) keeps the same. Therefore commands like
convert -units PixelsPerInch -density 600 input.png output.png
may suit your needs, in which 600 is the target DPI.