All Questions
2 questions
0
votes
2
answers
140
views
Bitmap and camera [duplicate]
I didn't succeed in resolving this error:
java.lang.OutOfMemoryError: bitmap size exceeds VM budget.
My code is:
BitmapFactory.Options op = new BitmapFactory.Options();
myBitmap = BitmapFactory....
3
votes
1
answer
11k
views
Android - compress bitmap before saving it to SDCARD in activity for result
I've been busting my head on this, and not so sure what to do. What I am trying to do is: Take a picture, compress it to png (keeping the original dimensions), and then save it to sdCard. The reason ...