Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想更改我的 JPEG 图像中的 Exif 方向标记,但没有实际旋转它们,我想这样做以将它们用作我制作的应用程序的测试用例。我如何在 Linux 中做到这一点,不能用 Exiftools 完成吗?如果是这样,怎么做?
类似的东西exiftran -9 -ni -o modified.jpg original.jpg对我很有效。-9导致 EXIF 方向顺时针旋转 90 度,但导致-ni图像保持原样,最终结果是图像顺时针旋转 270 度。代替-9,使用-1旋转 180 度,或-2旋转 270 度。
exiftran -9 -ni -o modified.jpg original.jpg
-9
-ni
-1
-2