[]
        
(Showing Draft Content)

GrapeCity.Documents.Drawing.Image.ToGcBitmap

ToGcBitmap Method

ToGcBitmap()

Creates an instance of the GcBitmap class from the current Image.

Declaration
public GcBitmap ToGcBitmap()
Public Function ToGcBitmap() As GcBitmap
Returns
Type Description
GcBitmap

A new instance of the GcBitmap class.

ToGcBitmap(bool)

Creates an instance of the GcBitmap class from the current Image.

Declaration
public GcBitmap ToGcBitmap(bool applyExifOrientation)
Public Function ToGcBitmap(applyExifOrientation As Boolean) As GcBitmap
Parameters
Type Name Description
bool applyExifOrientation

Indicates whether the flip and rotate transformations should be applied to the returned GcBitmap if that is required by the Orientation property in the EXIF profile.

Returns
Type Description
GcBitmap

A new instance of the GcBitmap class.

ToGcBitmap(GcBitmap)

Loads the image into an existing instance of GcBitmap.

Declaration
public void ToGcBitmap(GcBitmap bmp)
Public Sub ToGcBitmap(bmp As GcBitmap)
Parameters
Type Name Description
GcBitmap bmp

The destination GcBitmap object.

Implements