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 ...

learn more… | top users | synonyms

284
votes
30answers
200k 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 ...
90
votes
17answers
107k views

How to load an ImageView by URL in Android?

How do you use an image referenced by URL in an ImageView?
114
votes
9answers
124k 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 ...
26
votes
7answers
40k 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 ...
151
votes
9answers
101k 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 ...
82
votes
9answers
81k 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?
5
votes
1answer
2k views

bitmap size exceeds Vm budget error android

When I change to landscape mode, few objects are created with bitmap of full screen, when I scroll the other object is called and its bitmap is displayed, when I doing this repeatedly , bitmap size ...
23
votes
9answers
33k 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 ...
59
votes
13answers
62k 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 ...
5
votes
2answers
11k views

Make certain area of bitmap transparent on touch

My idea is to overlap 2 images on top of each other and upon onTouch, the top image should be made transparent on that touched radius, thus exposing the bottom image. This is how I overlay the 2 ...
36
votes
4answers
14k 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)?
24
votes
3answers
18k 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?
21
votes
4answers
28k 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[] ...
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 ...
18
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 ...
8
votes
2answers
8k views

Converting RGB data into a bitmap in Objective-C++ Cocoa

I have a buffer of RGB unsigned char that I would like converted into a bitmap file, does anyone know how? My RGB float is of the following format R [(0,0)], G[(0,0)], B[(0,0)],R [(0,1)], G[(0,1)], ...
14
votes
3answers
36k 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 ...
30
votes
7answers
40k 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 ...
32
votes
6answers
31k 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 ...
42
votes
6answers
29k 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 ...
8
votes
4answers
11k views

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 a Bitmap that I retrieve using BitmapFactory.decodeResource, and I am able to make changes by ...
23
votes
8answers
33k 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?
11
votes
5answers
19k views

Out Of Memory exception on System.Drawing.Image.FromFile()

I have an image uploader and cropper which creates thumbnails and I occasionally get an Out Of Memory exception on the following line: Dim bm As Bitmap = System.Drawing.Image.FromFile(imageFile) ...
24
votes
5answers
26k 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 = ...
16
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 ...
11
votes
3answers
26k views

Get Bitmap from an Uri [android]

how to get bitmap object from an Uri (suppose, if i succeed to store it in /data/data/MYFOLDER/myimage.png or file///data/data/MYFOLDER/myimage.png i used both paths) to use it in my application but ...
12
votes
4answers
16k views

Convert a Bitmap to GrayScale in Android

I am new to this site, and I come with a question about Android. Is there any way to convert a Bitmap to grayscale? I know how to draw a grayscale bitmap (using canvas operations: ...
9
votes
2answers
15k views

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 this (from Lesters WPF blog): myBitmapSource.CopyPixels(bits, stride, 0); unsafe { fixed ...
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 ...
12
votes
6answers
11k views

Quality problems when resizing an image at runtime

I have a image file on the disk and I am resizing the file and saving it back to disk as a new image file. For the sake of this question, I am not bringing them into memory in order to display them ...
45
votes
3answers
40k 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 = ...
19
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 ...
5
votes
3answers
11k views

android how to save a bitmap - buggy code

Im trying to serialize a class in wich i have a bitmap variable. Here is the code that is a bit working.... I need help to find out what is still wrong..... private Bitmap myVideoScreenshotBm; ...
8
votes
2answers
20k views

converting a canvas into bitmap image in android

I am trying to develope an app on canvas ,i am drawing on canvas with bitmap .After drawing,i am trying to convert into bitmap image . can anyone give me suggession thanking you in advance
12
votes
9answers
5k 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 ...
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 ...
15
votes
3answers
25k 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 ...
5
votes
3answers
4k views

Convert image to 1 bpp bitmap in .net compact framework

I have an image of a signature I am trying to save as 1 bpp bitmap to save file space. The full .NET Framework has the enum PixelFormat.Format1bppIndexed, but the .NET Compact Framework does not ...
4
votes
1answer
2k views

How do I scale a streaming bitmap in-place without reading the whole image first?

I have an Android application that is very image intensive. I'm currently using Bitmap.createScaledBitmap() to scale the image to a desired size. However, this method requires that I already have the ...
1
vote
2answers
6k views

How can I use a custom bitmap for the “you are here” point in a MyLocationOverlay?

I've poured over the docs and haven't been able to figure this out. Is it even possible? Please see this
4
votes
3answers
13k views

Set alpha of Bitmap image!

I have a bitmap: Bitmap bitmap = BitmapFactory.decodeFile("some/arbitrary/path/image.jpg"); But I'm not going to display the image to the user. I want the alpha to be 100 (out of 255). If this is ...
16
votes
5answers
17k 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 ...
1
vote
2answers
3k views

Android, move bitmap along a path?

I would like to know if it's possible to select coordinates from a path to draw a bitmap over time, for example, I have an image of a sun, and I would like to move it, over time, along an arc path. ...
12
votes
1answer
12k views

Android Camera Intent: how to get full sized photo?

I am using intent to launch camera: Intent cameraIntent = new Intent( android.provider.MediaStore.ACTION_IMAGE_CAPTURE); getParent().startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST); ...
10
votes
4answers
7k views

Serialize a Bitmap in C#/.NET to XML

I want to XML-Serialize a complex type (class), that has a property of type System.Drawing.Bitmap among others. /// <summary> /// Gets or sets the large icon, a 32x32 pixel image ...
5
votes
4answers
10k views

Is it possible to use BitmapFactory.decodeFile method to decode a image from http location?

I would like to know if it is possible to use BitmapFactory.decodeFile method to decode a image from http location? For eg. ImageView imageview = new ImageView(context); Bitmap bmp = ...
19
votes
2answers
18k 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 ...
4
votes
3answers
7k views

Launching Intent.ACTION_VIEW intent not working on saved image file

First of all let me say that this questions is slightly connected to another question by me. Actually it was created because of that. I have the following code to write a bitmap downloaded from the ...
3
votes
1answer
9k views

Converting bitmap to byteArray android

I have a bitmap that I want to send to the server by encoding it to base64 but I do not want to compress the image in either png or jpeg. Now what I was previously doing was. ByteArrayOutputStream ...
5
votes
3answers
2k views

how to convert view's to bitmap?

I have Two view's (Textview, imageView) in the framelayout, i want to save the image with text. for this covert view to bitmap. xml is: <FrameLayout android:id="@+id/framelayout" ...

1 2 3 4 5 15