Monthly Archives: August 2015

Linux auto orient photos with exif data

Easy when you know it: for file in *.JPG; do convert $file -auto-orient oriented-$file; done If you want to apply this to only one image: convert imageinfile -auto-orient imageoutfile

Posted in Uncategorized | Leave a comment