AtalaImage.ImageData 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; }
<ObsoleteAttribute("ImageData is no longer supported. Use PixelMemory instead.",
true)>
Public ReadOnly Property ImageData As IntPtr
Get
Property Value
Type:
IntPtrThis property is unsupported. Using it will cause a compilation error. Use PixelMemory instead.
RemarksSimilarly to the GDI+ Bitmap object, the memory bits AtalaImage can be directly
manipulated with this pointer. There is no need to Lock the pointer.
ExamplesThis 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