Click or drag to resize

AtalaImageImageData Property

Note: This API is now obsolete.

Gets the memory address of this AtalaImage. This property is unsupported. Using it will cause a compilation error. Use PixelMemory instead.

Namespace:  Atalasoft.Imaging
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
[ObsoleteAttribute("ImageData is no longer supported.  Use PixelMemory instead.", 
	true)]
public IntPtr ImageData { get; }

Property Value

Type: IntPtr

This property is unsupported. Using it will cause a compilation error. Use PixelMemory instead.

Remarks
Similarly to the GDI+ Bitmap object, the memory bits AtalaImage can be directly manipulated with this pointer. There is no need to Lock the pointer.
Examples

This example shows how to use unsafe C# code to manipulate the image data directly. The /unsafe compiler directive must be used.

Directly Manipulate Pixels (C#)
See Also