调整图像大小而不丢失 EXIF 数据?
我编写了一个小脚本,可以从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过更新到最新版本,修复了 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.)