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.

Immutable bitmap crash error

java.lang.IllegalStateException: Immutable bitmap passed to Canvas constructor at android.graphics.Canvas.<init>(Canvas.java:127) at app.…

android bitmap
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 …

iphone cocoa-touch image bitmap
Convert view to bitmap on Android

I need to convert a view to a bitmap to preview my view and to save it as an image. …

android view bitmap
What's the difference between Bitmap.Clone() and new Bitmap(Bitmap)?

As far as I can tell, there are two ways of copying a bitmap. Bitmap.Clone() Bitmap A = new Bitmap("…

c# bitmap clone
How to set an imageView's image from a string?

I have a list of entries and some bitmap files in the res/drawable-mdpi directory. I'm trying to load the …

android bitmap imageview
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(…

wpf image-processing bitmap
Fast work with Bitmaps in C#

I need to access each pixel of a Bitmap, work with them, then save them to a Bitmap. Using Bitmap.…

c# .net graphics bitmap pixels
Bitmap in ImageView with rounded corners

I have an ImageView and I want to make it with rounded corners. I use this: <?xml version="1.0" encoding="…

android bitmap imageview rounded-corners
Finding the dominant color of an image in an Android @drawable

You can understand why I'm trying to find the dominant color in an image if you use Windows 7. When your …

android colors bitmap drawable
How to programmatically change contrast of a bitmap in android?

I want to programmatically change the contrast of bitmap. Till now I have tried this. private Bitmap adjustedContrast(Bitmap src, …

android image-processing bitmap contrast