Trouble with orientation, TIFF and -tagsfromfile

Started by ivoyger, May 30, 2014, 12:47:19 PM

Previous topic - Next topic

ivoyger

Hi !

I've got some trouble with -tagsfromfile command, TIFF file and orientation.

I work on my Raw file in Aperture (.NEF file from Nikon), then I export them in .TIFF files. I need to update the Exif about .TIFF files from the originals files to get back all the lens information and to be able to applying lens corrections on DxO Optics Pro.

So with help, I've made an AppleScript and I use this command to update the Exif :"exiftool -overwrite_original_in_place -tagsfromfile src.NEF dst.TIFF"

And it works perfectly ... but only on landscape orientation file !

With portrait orientation file, after the update, the orientation change in landscape and DxO can't apply the lens corrections.

I don't understand why -tagsfromfile change the orientation of the picture ?

Phil Harvey

Your command will copy the EXIF Orientation tag.  Try this:

exiftool -overwrite_original_in_place -tagsfromfile src.NEF --orientation dst.TIFF

to avoid copying the Orientation tag, since it seems your TIFF image has already been rotated.

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).