Change Orientation of NEF Files in EXIF Data: Difference between revisions

From Littledamien Wiki
Jump to navigation Jump to search
(Created page with "Use `exiftool` on the command line to edit EXIF data of NEF files to control their orientation. <pre> $ exiftool -orientation#=1 [myfile.NEF] </pre> {| |+'''Orientation Valu...")
 
No edit summary
Line 24: Line 24:
|8&nbsp;||Rotate 270 CW
|8&nbsp;||Rotate 270 CW
|}
|}
<p class="alert alert-warning">Orientation value #3 doesn't seem to do what is described above.</p>
An alternate method:
<pre>
$ exiftool -orientation="Rotate 90 CW" myfile.NEF
</pre>
`orientation` values:
Rotate 90 CW<br />
Rotate 180 CW<br />
Rotate 270 CW

Revision as of 16:46, 4 July 2021

Use exiftool on the command line to edit EXIF data of NEF files to control their orientation.

$ exiftool -orientation#=1 [myfile.NEF]
Orientation Values
Horizontal (normal)
Mirror horizontal
Rotate 180
Mirror vertical
Mirror horizontal and rotate 270 CW
Rotate 90 CW
Mirror horizontal and rotate 90 CW
Rotate 270 CW

Orientation value #3 doesn't seem to do what is described above.

An alternate method:

$ exiftool -orientation="Rotate 90 CW" myfile.NEF

orientation values:

Rotate 90 CW
Rotate 180 CW
Rotate 270 CW