调整图像大小而不丢失 EXIF 数据?

发布于 2024-11-04 08:58:54 字数 331 浏览 0 评论 0原文

我编写了一个小脚本,可以从 FTP 服务器下载 TIFF 图像,然后调整它们的大小并将它们另存为 JPG。

到目前为止,一切顺利,但在压缩步骤(如下所列)中,我丢失了文件中的 EXIF 数据。

有没有一种优雅的方法可以在不丢失 EXIF 数据的情况下进行转换/调整大小/压缩?

convert -limit memory 32 -limit map 64 sourcefile.tif -units PixelsPerInch -density 72 -quality 90 -resize 1500 targetfile.jpg 

有什么想法吗?

I've written a little script that will download TIFF images from an FTP server, then resizes them and saves them as JPGs.

So far, so good, but in the compression step (listed below), I lose the EXIF data from the file.

Is there an elegant way to do the conversion / resizing / compression without losing EXIF data?

convert -limit memory 32 -limit map 64 sourcefile.tif -units PixelsPerInch -density 72 -quality 90 -resize 1500 targetfile.jpg 

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

朱染 2024-11-11 08:58:54

通过更新到最新版本,修复了 TIFF EXIF 错误,根据 @palmaceous 的说法,ImageMagick 6.6.9-6 Glorious 可以正常工作。

(我添加这个答案是因为我没有注意到问题的作者已经回答了这个问题。感觉有人也会想念它。)

By updating it to the newest version, the TIFF EXIF bug was fixed, ImageMagick 6.6.9-6 Glorious works according to @palmaceous.

(I am adding this answer because I didn't notice the question was answered by the author of the question already. Felt someone would miss it as well.)

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