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.

java.lang.OutOfMemoryError: bitmap size exceeds VM budget - Android

I developed an application that uses lots of images on Android. The app runs once, fills the information on the …

android memory memory-leaks bitmap out-of-memory
Android Bitmap to Base64 String

How do I convert a large Bitmap (photo taken with the phone's camera) to a Base64 String?

android bitmap base64 android-bitmap
How to resize image (Bitmap) to a given size?

How to resize image (Bitmap) to for example 800*480 programatically ? I have retrieved a picture in my app which is ~1MB …

android bitmap
Android: How to overlay a bitmap and draw over a bitmap?

I have three questions actually: Is it better to draw an image on a bitmap or create a bitmap as …

android graphics drawing bitmap overlay
Failed binder transaction when putting an bitmap dynamically in a widget

Can anybody tell me the reason for failed binder transaction error? I can see this error message in logcat. I …

android bitmap widget
Converting BitmapImage to Bitmap and vice versa

I have BitmapImage in C#. I need to do operations on image. For example grayscaling, adding text on image, etc. …

c# .net bitmap
Save and retrieve image (binary) from SQL Server using Entity Framework 6

I am trying to save a bitmap image to database Bitmap map = new Bitmap(pictureBoxMetroMap.Size.Width, pictureBoxMetroMap.Size.Height); …

c# entity-framework bitmap binary
Android Crop Center of Bitmap

I have bitmaps which are squares or rectangles. I take the shortest side and do something like this: int value = 0; …

android bitmap crop
Converting a view to Bitmap without displaying it in Android?

I will try to explain what exactly I need to do. I have 3 separate screens say A,B,C. There …

android bitmap
Image vs Bitmap class

I have trouble understanding the differences between the Image class and the Bitmap class. Now, I know that the Bitmap …

c# .net image bitmap