I want to rotate an Image on sdcard on Android. I can do this by creating a Bitmap and by the help of postRotate(float) method of the Matrix class. What is the most efficient way to do this on Android?

link|improve this question

69% accept rate
1  
AFAIK this is not possible with the Android SDK. Best chance is to load a scaled bitmap that fits the size you need to display and rotate it. – aromero Jan 30 at 3:38
feedback

1 Answer

It's exactly the way you are doing it. How in hell would you like to manipulate data without modifying it? That is what you are basically trying to do. :) You want to do it without loading the data into ram. That's basically possible, but it would take hours as hard disk access is so much slower than accessing ram/caches.

link|improve this answer
1  
You don't need to load all your data into memory to manipulate it in general. The point of the question is if it's possible to rotate the image without loading all the image into memory. – aromero Jan 29 at 22:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.