Detect EXIF Orientation and Rotate Image using ImageMagick

Use the auto-orient option of ImageMagick’s convert to do this.

convert your-image.jpg -auto-orient output.jpg

Or use mogrifyto do it in place

mogrify -auto-orient your-image.jpg

Leave a Comment