Top "Bitmap" questions

Data structure for encoding pictures as a set of bits, in which each image pixel is mapped to a bit or a group of bit.

How to convert a Drawable to a Bitmap?

I would like to set a certain Drawable as the device's wallpaper, but all wallpaper functions accept Bitmaps only. I …

android bitmap wallpaper android-drawable
Strange out of memory issue while loading an image to a Bitmap object

I have a list view with a couple of image buttons on each row. When you click the list row, …

android image bitmap out-of-memory android-bitmap
How to load an ImageView by URL in Android?

How do you use an image referenced by URL in an ImageView?

android bitmap imageview
Save bitmap to location

I am working on a function to download an image from a web server, display it on the screen, and …

android bitmap save
How to Resize a Bitmap in Android?

I have a bitmap taken of a Base64 String from my remote database, (encodedImage is the string representing the image …

android bitmap base64
Convert a bitmap into a byte array

Using C#, is there a better way to convert a Windows Bitmap to a byte[] than saving to a temporary …

c# bitmap
converting Java bitmap to byte array

Bitmap bmp = intent.getExtras().get("data"); int size = bmp.getRowBytes() * bmp.getHeight(); ByteBuffer b = ByteBuffer.allocate(size); bmp.copyPixelsToBuffer(b); …

java android serialization bitmap bytebuffer
Android: Rotate image in imageview by an angle

I am using the following code to rotate a image in ImageView by an angle. Is there any simpler and …

android bitmap rotation imageview
How to set a bitmap from resource

This seems simple, I am trying to set a bitmap image but from the resources, I have within the application …

android bitmap