[]
Creates an instance of the GcBitmap class from the current GcSkiaImage.
public GcBitmap ToGcBitmap(Rectangle? clipRect = null)
Public Function ToGcBitmap(Optional clipRect As Rectangle? = Nothing) As GcBitmap
Type | Name | Description |
---|---|---|
Rectangle? | clipRect | Clipping rectangle to be copied to GcBitmap. |
Type | Description |
---|---|
GcBitmap | An instance of the GcBitmap with the image fragment. |
Copies the current image into an existing instance of GcBitmap.
public void ToGcBitmap(GcBitmap gcBitmap, Rectangle? clipRect = null)
Public Sub ToGcBitmap(gcBitmap As GcBitmap, Optional clipRect As Rectangle? = Nothing)
Type | Name | Description |
---|---|---|
GcBitmap | gcBitmap | The target GcBitmap object. |
Rectangle? | clipRect | Clipping rectangle to be copied to GcBitmap. |