[]
Performs a bit-block transfer of the color data corresponding to a rectangle of pixels from the specified source bitmap into the current bitmap.
public void BitBlt(GcBitmap srcBitmap, int xDst, int yDst, Rectangle? clipRect = null, int width = 2147483647, int height = 2147483647, int xSrc = 0, int ySrc = 0)
| Type | Name | Description |
|---|---|---|
| GcBitmap | srcBitmap | The source bitmap. |
| int | xDst | The x-coordinate, in pixels, of the upper-left corner of the destination rectangle. |
| int | yDst | The y-coordinate, in pixels, of the upper-left corner of the destination rectangle. |
| Rectangle? | clipRect | The affected rectangle of the destination GcBitmap. |
| int | width | The width, in pixels, of the source and destination rectangles. |
| int | height | The height, in pixels, of the source and destination rectangles. |
| int | xSrc | The x-coordinate, in pixels, of the upper-left corner of the source rectangle. |
| int | ySrc | The y-coordinate, in pixels, of the upper-left corner of the source rectangle. |