Canvas::DrawImage method¶
DrawImage renders an image from a buffer onto the Canvas.
Overloads¶
DrawImage(int, int, byte[], string) | DrawImage renders an image from a buffer onto the Canvas. |
DrawImage(int, int, byte[], string)¶
Prototype¶
void DrawImage(int x, int y, byte[] imagedata, string mimetype)
void DrawImage(int x, int y, byte[] imagedata, string mimetype) throws IGRException;
def DrawImage(self, x: int, y: int, imagedata: byte[], mimetype: string) -> void
void DrawImage(int x, int y, const void* imagedata, size_t imagedataSize, const std::wstring& mimetype)
void DrawImage(int x, int y, byte[] imagedata, std::wstring mimetype)
HRESULT DrawImage([in] int x, [in] int y, [in] byte[]* imagedata, [in] BSTR mimetype)
Parameters¶
x: int
: Left-most coordinate of the image bounding box.
y: int
: Top-most coordinate of the image bounding box.
imagedata: byte[]
: Binary data of the image.
mimetype: string
: Describes the format of the image data.