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.

OutOfMemoryError: bitmap size exceeds VM budget :- Android

Possible Duplicate: Android: Strange out of memory issue while loading an image to a Bitmap object i am downloading images …

android bitmap out-of-memory
How to change a bitmap's opacity?

I have a bitmap: Bitmap bitmap = BitmapFactory.decodeFile("some/arbitrary/path/image.jpg"); But I'm not going to display the …

java android bitmap opacity alpha
Getting Bitmap from vector drawable

In my application, I have to set a large icon for a notification. LargeIcon must be a Bitmap, and my …

android bitmap android-drawable android-vectordrawable
Is there a good way to convert between BitmapSource and Bitmap?

As far as I can tell the only way to convert from BitmapSource to Bitmap is through unsafe code... Like …

c# .net wpf bitmap bitmapsource
Android Tile Bitmap

I'm trying to load a bitmap in Android which I want to tile. I'm currently using the following in my …

android bitmap
C# rotate bitmap 90 degrees

I'm trying to rotate a bitmap 90 degrees using the following function. The problem with it is that it cuts off …

c# bitmap
convert Bitmap to Mat after capture image using android camera

Mat b = new Mat(); Bitmap bmp = getIntent().getExtras().getParcelable("image_send"); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …

android opencv bitmap mat
java.lang.OutOfMemoryError - BitmapFactory.decode(strPath)

I am getting java.lang.OutOfMemoryError, whenever i am calling UploadActivity.java Line Number 176 is: Bitmap bm = BitmapFactory.decodeFile(strPath); …

android bitmap out-of-memory image-capture
BitmapFactory.decodeResource returns a mutable Bitmap in Android 2.2 and an immutable Bitmap in Android 1.6

I am developing an application and testing it on my device running Android 2.2. In my code, I make use of …

java android bitmap
A generic error occurred in GDI+

I loaded an image into a Picture Box using: picturebox1.Image = Image.FromFile() and I save it by using: Bitmap …

c# bitmap gdi+