[]
Draw image using special source.
public void DrawImage(object source, double x, double y, double w, double h)
Type | Name | Description |
---|---|---|
object | source | The source of image. |
double | x | X-coordinate of image. |
double | y | Y-coordinate of image. |
double | w | Rendering width. |
double | h | Rendering height. |
Draw image/bitmap with content alignment.
[CLSCompliant(false)]
public void DrawImage(Image image, RectangleF rc)
Type | Name | Description |
---|---|---|
Image | image | The drawing image/bitmap. |
RectangleF | rc | The drawing rectangle in pixels. |
Draw image/bitmap with content alignment.
[CLSCompliant(false)]
public void DrawImage(Image image, RectangleF rc, RectangleF rcClip)
Type | Name | Description |
---|---|---|
Image | image | The drawing image/bitmap. |
RectangleF | rc | The drawing rectangle in pixels. |
RectangleF | rcClip | The drawing clip for image/bitmap rectangle in pixels. |