So i thought, why not use imagemagick to rotate all pictures before, and then metapixel wont crimp any. I found
http://www.imagemagick.org/script/comma ... fl3#rotate to be useful, so i used this command:
Code: Select all
$ for file in *; do mogrify "$file" -rotate "-90<"; done
Code: Select all
$ mogrify onefile.jpg -rotate "-90<"
Another possibility would be not to rotate the photo but to crop from every horizontally aligned picture a vertical one (so original has 600x800 px, it cuts out the upper/lower/middle part of 600x450px) Which would be the correct batch command for that (problem: only use horizontally aligned pics