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?
| |||||
feedback
|
|
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. | |||||
feedback
|