AtalaImageBitmapMirror Property |
Note: This API is now obsolete.
Gets the Bitmap mirror of this %AtalaImage%.
Namespace:
Atalasoft.Imaging
Assembly:
Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax [ObsoleteAttribute("BitmapMirror is obsolete. Please use ToBitmap() instead which creates a GDI+ Bitmap copy of the AtalaImage")]
public Bitmap BitmapMirror { get; }
<ObsoleteAttribute("BitmapMirror is obsolete. Please use ToBitmap() instead which creates a GDI+ Bitmap copy of the AtalaImage")>
Public ReadOnly Property BitmapMirror As Bitmap
Get
Property Value
Type:
BitmapA
Bitmap object mirroring this
AtalaImage.
Remarks The image data is tied to the
AtalaImage object from which the Bitmap was created.
As long as the AtalaImage is still in scope, the Bitmap may be used. The intension of this property is to
call and methods that require a Bitmap object such as
DrawImage(Image, PointF).
See Also