I'm looking for a way of decoding a bitmap from file rotated (0,90,180,270 degrees). I need that because the image is big and if I decode the bitmap and then use something like
Bitmap rotatedBitmap=Bitmap.createBitmap(source, x, y, width, height, m, filter)
There is a moment when both bitmap are in memory and there is risk of running out of memory.
Any ideas? Thanks.