gpt4 book ai didi

ios - ImageMagick 重新定向 iOS 照片

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:07:11 26 4
gpt4 key购买 nike

我目前正在转换来自移动应用程序的图像,即 iOS、Android 和 WP。

我使用 image magick 来调整照片的大小。

这是我的命令行:

convert -resize 764x764 -strip -interlace Plane -quality 85% img1.jpg img2.jpg

它适用于来自 Android 和 WP 的照片,但是,当我从 iOS 收到它时,照片会自动旋转为风景,即使它们是肖像。

有什么想法吗?

谢谢。

最佳答案

照片方向可以由图像元数据定义。添加-auto-orient在使用 -strip 选项删除它之前尊重 EXIF 数据的选项。

convert img1.jpg -auto-orient \
-resize 764x764 \
-interlace Plane \
-strip \
-quality 85% \
img2.jpg

来自 docs 的警告:

If the EXIF profile was previously stripped, the -auto-orient operator will do nothing.

关于ios - ImageMagick 重新定向 iOS 照片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25622047/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com