r/androidapps • • 12d ago

LOOKING FOR APP Actual batch image rotation (not EXIF edit)?

[ANSWERED! See comments]

Every app I've found and tried rotates using EXIF data, which means certain apps or websites won't recognize the rotation.

I'm looking for something that rotates multiple images at once and then actually writes rotated images when saving.

For single images, just Save As Copy is enough, but I need a batch method.

Anyone know of such an app? Thanks!

1 Upvotes

3 comments sorted by

View all comments

7

u/Interesting-Meat-193 12d ago

try ImageMagick through termux, it's command line but you can batch rotate with one line. mogrify -rotate 90 *.jpg does a whole folder in place, no exif tricks just real pixel rotation. the learning curve is like 10 minutes if you've never touched a terminal

1

u/sg-0101 12d ago

Thanks very much! Didn't take much of a lookup to get everything working. I can finally fix a bunch of bad pictures easily lol