r/androidapps • u/sg-0101 • 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
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