Narasimha
Narasimha

Reputation: 3766

how can retrieve image in sdcard in byte convertion in android application

I am working in android application retrieve image in sdcard in image read in byte convertion how can solve this type of problem i am getting in image uri in sdcard

Upvotes: 0

Views: 492

Answers (1)

Brandon O'Rourke
Brandon O'Rourke

Reputation: 24635

Not exactly sure what the question is, but maybe this is how you get a Bitmap from a byte array:

Bitmap bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length);

Upvotes: 3

Related Questions