I am trying to rotate PNG images using exiftool using following command line:
exiftool -Orientation=3 -n ImageName
The command line run successfully in terminal and I can get the Orientation info via command line: exiftool -Orientation -n ImageName
, saying 3
in this case. But the PNG image itself doesn't rotate at all.
This command line works fine with JPG and TIFF image. So how to rotate a PNG image using exiftool?