The more general term pixmap refers to a map of pixels, where each one may store more than two colors, thus using more than one bit per pixel. Often bitmap is used for this as well. In some contexts, the term bitmap implies one bit per pixel, while pixmap is used for images with multiple bits per ...
298
votes
30answers
206k views
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, it launches a new activity. I have had to build my own tabs because of an issue with the camera layout. The ...
161
votes
9answers
106k views
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 cannot use WallpaperManager because I'm pre 2.1.
Also, my drawables are downloaded ...
116
votes
9answers
127k views
Save bitmap to location
I am working on a function to download an image from a web server, display it on the screen, and if the user wishes to keep the image, save it on the SD card in a certain folder. Is there an easy way ...
92
votes
17answers
113k views
How to load an ImageView by URL in Android?
How do you use an image referenced by URL in an ImageView?
89
votes
3answers
5k views
What Haskell representation is recommended for 2D, unboxed pixel arrays with millions of pixels?
I want to tackle some image-processing problems in Haskell. I'm working with both bitonal (bitmap) and color images with millions of pixels. I have a number of questions:
On what basis should I ...
86
votes
9answers
83k views
Load a WPF BitmapImage from a System.Drawing.Bitmap
I have an instance of a System.Drawing.Bitmap and would like to make it available to my WPF app in the form of a System.Windows.Media.Imaging.BitmapImage.
What would be the best approach for this?
59
votes
13answers
64k views
Android: Resize a large bitmap file to scaled output file
I have a large bitmap (say 3888x2592) in a file. Now, I want to resize that bitmap to 800x533 and save it to another file.
I normally would scale the bitmap by calling Bitmap.createBitmap method but ...
48
votes
3answers
42k views
converting Java bitmap to byte array
Bitmap bmp = intent.getExtras().get("data"); // from camera
int size = bmp.getRowBytes() * bmp.getHeight();
ByteBuffer b = ByteBuffer.allocate(size);
bmp.copyPixelsToBuffer(b);
byte[] bytes = ...
42
votes
6answers
30k views
Decoding bitmaps in Android with the right size
I decode bitmaps from the SD card using BitmapFactory.decodeFile. Sometimes the bitmaps are bigger than what the application needs or that the heap allows, so I use BitmapFactory.Options.inSampleSize ...
38
votes
4answers
15k views
How can I pass a Bitmap object from one activity to another
In my activity, I create a Bitmap object and then I need to launch another Activity,
How can I pass this Bitmap object from the sub-activity (the one which is going to be launched)?
33
votes
6answers
32k views
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 view to display a bitmap:
canvas.drawBitmap(bitmap, srcRect, destRect, null)
I essentially want ...
30
votes
7answers
42k views
Android: How to rotate a bitmap on a center point
I've been looking for over a day for a sollution to this problem but nothing helps, even the answers here dont help me :/ And googles documentation on this doesnt explain anything..
I am simply ...
29
votes
2answers
10k views
GZipStream And DeflateStream will not decompress all bytes
I was in need of a way to compress images in .net so i looked into using the .net GZipStream class (or DeflateStream). However i found that decompression was not always successful, sometimes the ...
27
votes
7answers
41k views
OutOfMemoryError: bitmap size exceeds VM budget :- Android [duplicate]
Possible Duplicate:
Android: Strange out of memory issue while loading an image to a Bitmap object
i am downloading images from Url and displaying them. At download time it is giving out of ...
25
votes
8answers
36k views
Convert a bitmap into a byte array in C#?
Using C#, is there a better way to convert a Windows Bitmap to a byte[] than saving to a temporary file and reading the result using a FileStream?
25
votes
5answers
27k views
Android: Bitmap recycle() how does it work?
Lets say i have loaded an image in a bitmap object like
Bitmap myBitmap = BitmapFactory.decodeFile(myFile);
Now what will happen if i load another bitmap like
myBitmap = ...
24
votes
3answers
19k views
Bitmaps in Android
I have a few questions regarding Bitmap objects and memory and their general taxonomy.
What is an in-memory or native bitmap?
How is Bitmap memory different from Heap memory?
24
votes
9answers
34k views
How to get the RGB values for a pixel on an image on the iphone
I am writing an iPhone application and need to essentially implement something equivalent to the 'eyedropper' tool in photoshop, where you can touch a point on the image and capture the RGB values for ...
23
votes
4answers
30k views
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 with Base64):
profileImage = (ImageView)findViewById(R.id.profileImage);
byte[] ...
23
votes
3answers
9k views
Android take screen shot programatically
First off i am writing a root app so root permissions are no issue. I've searched and searched and found a lot of code that never worked for me here is what i've pieced together so far and sorta ...
23
votes
1answer
2k views
Android Drawable: layer-list repeat bitmap does not load when entirely covered
I have three full screen week views that are loaded at one time (previous, next, current). Each week view has 7 columns (one for each day of the week) with a drawable background.
My drawable resource ...
21
votes
1answer
2k views
Bitmap Performance-Optimization Patterns
I found several patterns for optimizing Bitmaps handling in WPF. I do not, however, understand when to use each patterns. As I think this is a common problem, I summarized what I understand and what I ...
20
votes
7answers
18k views
Finding specific pixel colors of a BitmapImage
I have a WPF BitmapImage which I loaded from a .JPG file, as follows:
this.m_image1.Source = new BitmapImage(new Uri(path));
I want to query as to what the colour is at specific points. For ...
20
votes
3answers
21k views
Failed Binder transaction
Can anybody tell me the reason for !!!failed binder transaction!!! error??? I can see this error message in logcat
I am getting this error while trying to put an bitmap dynamically in a widget..
20
votes
3answers
9k views
Recycle ImageView's Bitmap
I have something like this:
Bitmap.Config conf = Bitmap.Config.ARGB_8888;
WeakReference<Bitmap> bm = new WeakReference<Bitmap>(Bitmap.createBitmap(3000 + 3000, 2000, conf));
Canvas ...
19
votes
8answers
11k views
Android: Bitmaps loaded from gallery are rotated in ImageView
When I load an image frome the media gallery into a Bitmap, everything works fine, except that pictures that were shot with the camera while holding the phone vertically, are rotated so that I always ...
19
votes
3answers
12k views
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 is another screen called say HomeScreen where all the 3 screens bitmap should be displayed in Gallery view ...
19
votes
2answers
19k views
Loading a resource to a mutable bitmap
I am loading a bitmap from a resource like so:
Bitmap mBackground = BitmapFactory.decodeResource(res,R.drawable.image);
What I want to do is make some changes to the bitmap before It gets drawn to ...
19
votes
1answer
1k views
Android Bitmap loading out of memory error Galaxy S3 WXGA
I would be very grateful if someone could confirm that I have solved the below problem correctly or if there is an alternative solution?
I have an app that loads a large image (e.g. 800*1720 pixels) ...
18
votes
5answers
7k views
How to concatenate icons into a single image with ImageMagick?
I want to use CSS sprites on a web site instead of separate image files, for a large collection of small icons that are all the same size. How can I concatenate (tile) them into one big image using ...
18
votes
5answers
18k views
C#, convert image to grayscale
Is there a way to convert an image to grayscale 16pixels per bit format, rather than setting each of the r,g and b components to luminance. I currently have a bmp from file.
Bitmap c = new ...
18
votes
1answer
3k views
Masking(crop) image in frame
Having a rich UI application in which I want to show image with complex shape like this
Now what I want is to crop my image as per Mask image, Actually image is coming dynamic and can be imported ...
18
votes
1answer
5k views
When should I recycle a bitmap using LRUCache?
I'm using an LRUCache to cache bitmaps which are stored on the file system. I built the cache based on the examples here: http://developer.android.com/training/displaying-bitmaps/cache-bitmap.html
...
17
votes
3answers
26k views
Android: how to convert whole ImageView to Bitmap?
I have my application that is displaying images with different ratio, resized inside (centerInside) imageView. What I need is to create bitmap from the ImageView including the background (black in ...
17
votes
1answer
7k views
Bitmap byte-size after decoding?
How can I determine/calculate the byte size of a bitmap (after decoding with BitmapFactory)?
I need to know how much memory space it occupies, because I'm doing memory caching/management in my app. ...
17
votes
3answers
8k views
Fast work with Bitmaps in C#
I need get all pixels from Bitmap, work this they and save them to Bitmap.
If I use Bitmap.GetPixel() and Bitmap.SetPixel() then I have very slow program.
How I can fast convert Bitmap to byte[] and ...
16
votes
2answers
9k views
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 part of the image when the height and width are not equal.
Notice the returnBitmap ...
16
votes
3answers
20k views
Image vs Bitmap class
As this is my first post, let me introduce myself, I am Kadrin. I'm a developer at a large corporation in the central United States and have been out of college for about 1 year.
Anyway, I've been ...
15
votes
9answers
28k views
OutofMemoryError: bitmap size exceeds VM budget (Android)
Getting an Exception in the BitmapFactory. Not sure what is the issue. (Well I can guess the issue, but not sure why its happening)
ERROR/AndroidRuntime(7906): java.lang.OutOfMemoryError: bitmap size ...
15
votes
2answers
15k views
Android “Trying to use recycled bitmap” error?
I am running into a problem with bitmaps on an Android application I am working on. What is suppose to happen is that the application downloads images from a website, saves them to the device, loads ...
15
votes
4answers
10k views
How to make glow effect around a bitmap?
The following code is what I got so far. However, there are 2 issues:
I want both inner and outer glow effects, which looking similar to the Photoshop's blending options. But I only managed to make ...
14
votes
5answers
8k views
Android Crop Center of Bitmap
I have bit maps which are squares or rectangles. I take the shortest side and do something like this:
int value = 0;
if (bitmap.getHeight() <= bitmap.getWidth()) {
value = bitmap.getHeight();
...
14
votes
1answer
10k views
Bitmap, Bitmap.recycle(), WeakReferences, and Garbage Collection
AFAIK on Android, it is recommended to reference Bitmap objects as WeakReferences in order to avoid memory leaks. When no more hard references are kept of a bitmap object, the garbage collector will ...
14
votes
3answers
37k views
Android: How to overlay-a-bitmap/draw-over a bitmap?
I have two questions actually:
Is it better to draw an image on a bitmap or create a bitmap as resource and then draw it over a bitmap? Performance wise... which one is better?
If I want to draw ...
14
votes
9answers
2k views
What's an efficient way to tell if a bitmap is entirely black?
I'm wondering if there's a super-efficient way of confirming that an Image object references an entirely black image, so every pixel within the bitmap is ARGB(255, 0, 0, 0).
What would you recommend? ...
14
votes
2answers
1k views
Filling the data in an Android bitmap as quickly as possible from C
I've managed to get an android.graphics.Bitmap created and I'm successfully filling it via the SetPixels command.
The problem is that I start off with RGBA data. I then create a jintArray. I then ...
13
votes
9answers
6k views
What is the fastest way I can compare two equal-size bitmaps to determine whether they are identical?
I am trying to write a function to determine whether two equal-size bitmaps are identical or not. The function I have right now simply compares a pixel at a time in each bitmap, returning false at the ...
13
votes
1answer
14k views
How to draw and scale a bitmap on a canvas using bicubic interpolation in Android?
I want to draw a bitmap on a canvas with bigger size than it is. I can use canvas.drawBitmap(bitmap, null, destRect, null); but that gives a poor quality, as the result is pixelated, if the source ...
13
votes
2answers
6k views
How to blit() in android?
I'm used to handle graphics with old-school libraries (allegro, GD, pygame), where if I want to copy a part of a bitmap into another... I just use blit.
I'm trying to figure out how to do that in ...
13
votes
3answers
14k views
Create Bitmap from a byte array of pixel data
This question is about how to read/write, allocate and manage the pixel data of a Bitmap.
Here is an example of how to allocate a byte array (managed memory) for pixel data and creating a Bitmap ...

