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.

Convert a File Object to Bitmap

I am using Universal-Image-Loader and there is this functionality that access the file cache of the image from sd card. …

java android caching bitmap universal-image-loader
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 …

c# bitmap bitmapdata
How to change Bitmap image color in android?

I am developing an android application in which I set an image to imageview. Now programmatic I want to change …

android bitmap
How to save PictureBox.Image to file?

I use the following to write jpgImage to a PictureBox.Image. var jpgImage = new Byte[jpgImageSize]; ... pictureBox.Image = new Bitmap(…

c# bitmap picturebox
How can i transform a Bitmap into a Uri?

I'm trying to share images with Facebook, twitter, etc using SHARE INTENT from Android. I found code to send a …

android bitmap uri
Saving a bitmap into a MemoryStream

Should I allocate the memory or just the object of the memory stream: Is this OK? MemoryStream memoryStream = new MemoryStream(); …

c# bitmap memorystream
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 …

asp.net image bitmap
C# "Parameter is not valid." creating new bitmap

if I try to create a bitmap bigger than 19000 px I get the error: Parameter is not valid. How can …

c# parameters bitmap size
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 …

android image-processing bitmap grayscale
Scaled Bitmap maintaining aspect ratio

I would like to scale a Bitmap to a runtime dependant width and height, where the aspect ratio is maintained …

android bitmap scaling