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.

Trapped in a strange issue with Bitmap transparency, I have images with me and convert it in Blob and stored it in local Database.

I have this image

enter image description here

after storing it as Blob and fetching it, then image background gets filled

enter image description here

Any idea why this is happening, and to get through with it.

Thanks.

This is how i convert to Byte and stored to database

public byte[] BitmapToByte(Bitmap bitmap)
    {
        ByteArrayOutputStream baos = new ByteArrayOutputStream(); 
        bitmap.compress(Bitmap.CompressFormat.PNG, 100, baos); //bm is the bitmap object   
        byte[] b = baos.toByteArray();
        return b;
    }

This is how i m fetching Blob as Bitmap from database

mImageView.setImageBitmap(BitmapFactory.decodeByteArray(blob, 0, blob.length)); //blob by cursor

share|improve this question
is this some kind of listview/gridview? – Selvin Apr 10 '12 at 7:14
it is a gridview with baseadapter. – hotveryspicy Apr 10 '12 at 7:16
hmmm i'm not sure but did you tried this android-developers.blogspot.com/2009/01/… – Selvin Apr 10 '12 at 7:18
Take a look – Suvam Roy Apr 10 '12 at 7:21

1 Answer

up vote 0 down vote accepted

Got the solution, it is cause of using Android's Thumbnail folder(which creates additional preview and me passing thumbnail cursor to the image adapter). When i fetch image directly from the Database it is coming transparent.

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.