Hi ! You can try this :
> byte[] data =getDataBytes(); // Your byte array > > Bitmap bt=BitmapFactory.decodeByteArray(data, 0, data.length); // a > Bitmap from your byte array wich is an image. > Hope It helps. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

