如果使用 bashscript 在 exif 中找到方向,如何正确删除 exif 数据和旋转图像 ubuntu

How to properly remove exif data and rotate images if orientation found in exif using using bashscript ubuntu

如果使用 bashscript 在 exif 中找到方向,如何正确删除 exif 数据和旋转图像 ubuntu

我试过 imagemagic 但如何检查是否在 exif 数据中找到方向

在 ImageMagick 中,如果文件包含 EXIF 方向,您可以自动旋转图像。

convert image.suffix -auto-orient new_image.suffix

您可以使用

查看文件中的所有EXIF信息
identify -verbose image.suffix

您可以通过

定位和删除所有元数据
convert image.suffix -auto-orient -strip new_image.suffix