如何在命令行上同时降低图像的分辨率并提高 DPI?

发布于 2024-12-28 08:01:16 字数 109 浏览 0 评论 0原文

我认为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过期以后 2025-01-04 08:01:16

当您更改图像的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文