Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Due to the fragmentation in camera equipment taking pictures seems to be not unproblematic.

Especially taking pictures in full quality often times lead to memory problems. I don't own a device with a 8MP Camera, so I can't reliably test. Is there a bulletproof way of taking pictures in Android?

I also wrote a filter (sepia) that works well with smaller images. For full size images there are again some memory issues. For this I'm creating an new bitmap with the same dimensions as the bitmap that needs to be filtered.

Bitmap filteredBitmap = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_8888);

It's clear that the app-memory isn't sufficient for two full size bitmaps. Is there another way I could create such a filter?

share|improve this question

1 Answer

Bitmap.Config.ARGB_8888 gives you a 32 bit bitmap. If your taking pictures with the camera I don't see why you would need the alpha channel for those images. So you could use Bitmap.Config.RGB_565 instead and that should considerably reduce the size of your bitmaps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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