[]
Retrieves the underlying GcBitmap object, or creates a new GcBitmap that contains the image data.
Note that you should dispose the returned GcBitmap if disposeAfterUse is true.
GcBitmap ToGcBitmap(out bool disposeAfterUse)
| Type | Name | Description |
|---|---|---|
| bool | disposeAfterUse | OUT: Indicates whether the returned GcBitmap should be disposed by the user. |
| Type | Description |
|---|---|
| GcBitmap | A GcBitmap object containing the image. |
Retrieves the underlying GcBitmap object, or creates a new GcBitmap that contains the image data.
Note that you should dispose the returned GcBitmap if disposeAfterUse is true.
GcBitmap ToGcBitmap(bool applyExifOrientation, out bool disposeAfterUse)
| 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. |
| bool | disposeAfterUse | OUT: Indicates whether the returned GcBitmap should be disposed by the user. |
| Type | Description |
|---|---|
| GcBitmap | A GcBitmap object containing the image. |
Loads the image into an existing instance of GcBitmap.
void ToGcBitmap(GcBitmap bmp)
| Type | Name | Description |
|---|---|---|
| GcBitmap | bmp | The destination GcBitmap object. |