[android-developers] Re: Cannot cast from Bitmap to byte[]

2010-04-13 Thread Dipo Fasoro
Assuming a Bitmap called bmp; I think if you want the raw bytes, this should work: java.nio.ByteBuffer buffer = java.nio.ByteBuffer.allocate(bmp.getHeight() * bmp.getWidth()); bmp.copyPixelsToBuffer(buffer); byte[] bdata = buffer.array(); -- You received this message because you are subscribed

[android-developers] Re: Cannot cast from Bitmap to byte[]

2010-04-05 Thread Pinheiro
Use BitmapFactory.decodeStream(). Got it, many thanks! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Cannot cast from Bitmap to byte[]

2010-04-05 Thread Bob Kerns
Actually, the explanation here is incorrect. You CAN cast from Integer to int, or Double to double, or Boolean to boolean. In fact, the compiler will even do it for you these days. However, those are specific cases of related types. There is no relationship whatsoever between the types Bitmap