Top "Bitmapdata" questions

In GDI+, the BitmapData class is used by the Bitmap::LockBits and Bitmap::UnlockBits methods of the Bitmap class.

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 many ways to convert bitmap to string and vice-versa?

In my application i want to send bitmap image to the server in the form of string, i want to …

java android bitmapdata
What is the best way to resize a BitmapData object?

Say I have a BitmapData of 600x600 and I want to scale it down to 100x100.

flash actionscript-3 image resize bitmapdata
AS3:How to change a colored Bitmap's BitmapData to black and white?

How can I change the bitmapdata of a coloured Bitmap to Black and White in AS3 ? I'm developing a simple …

flash actionscript-3 bitmapdata
PixelFormat.Format32bppArgb seems to have wrong byte order

I try to get all byte values from a Bitmap(System.Drawing.Bitmap). Therefore I lock the bytes and copy …

c# .net bitmap bitmapdata
AS3 - Scale BitmapData

I'd like to scale a BitmapData to different sizes such as 200, 400, 600 and 800. What is a good way to do that?

actionscript-3 bitmapdata
URLLoader data to BitmapData

I'm trying to load an image file that's right next to the .SWF file. Something like this: var loader:URLLoader = …

actionscript-3 bitmapdata urlloader
ByteArray to BitmapData AS3

I'm using com.adobe.images.PNGEncoder to encode bitmapData to a byteArray. Is there a way to convert the byteArray …

actionscript-3 bytearray bitmapdata
Trying to capture stage area using BitmapData

I am trying to grab part of stage area using BitmapData and copyPixels method: bmd = new BitmapData(stage.stageWidth, stage.…

actionscript-3 bitmapdata
AS3 PNG Encoder?

Is there a way to encode bitmap data into PNG for use with a FileReference.Save() method in AS3? I …

actionscript-3 encoding png bitmapdata