[]
Creates an instance of the GcBitmap class from the current GcSkiaGraphics.
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 image into an existing instance of GcBitmap.
public void ToGcBitmap(GcBitmap bmp, Rectangle? clipRect = null)
Public Sub ToGcBitmap(bmp As GcBitmap, Optional clipRect As Rectangle? = Nothing)
Type | Name | Description |
---|---|---|
GcBitmap | bmp | The target GcBitmap object. |
Rectangle? | clipRect | Clipping rectangle to be copied to GcBitmap. |