I have found two suspicious exif tags: Orientation and Rotation. Wipe them off from my pictures
exiftool -Orientation= -Rotation= -overwrite_original_in_place .
(the final dot stands for the current directory)
Or:
for i in *JPG ; do
exiftool -Orientation= -Rotation= -overwrite_original_in_place "$i"
done
---------------
To delete the relatively large preview image (created by the Lumix camera for its own display) try:
exiftool -P -overwrite_original -PreviewImage= -trailer:all= *jpg
---------------
Copy all tags from other files (original files)
for i in * ; do
exiftool -tagsfromfile src/$i -iptc:all -codedcharacterset=utf8 \
-overwrite_original $i ;
done
Žádné komentáře:
Okomentovat