tags:

views:

60

answers:

1

hi

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

+3  A: 

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);
Brandon
how can convert image read in bitmap
narasimha