Canvas::DrawScaleImage method¶
DrawScaleImage renders an image from a buffer onto the Canvas. The image is scaled to a specified size.
Prototype¶
void DrawScaleImage(int x, int y, int width, int height, byte[] imagedata, string mimetype)
void DrawScaleImage(int x, int y, int width, int height, byte[] imagedata, string mimetype) throws IGRException;
def DrawScaleImage(self, x: int, y: int, width: int, height: int, imagedata: byte[], mimetype: string) -> void
void DrawScaleImage(int x, int y, int width, int height, const void* imagedata, size_t imagedataSize, const std::wstring& mimetype)
void DrawScaleImage(int x, int y, int width, int height, byte[] imagedata, std::wstring mimetype)
HRESULT DrawScaleImage([in] int x, [in] int y, [in] int width, [in] int height, [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.
width: int
: Desired width of the rendered image in pixels.
height: int
: Desired height of the rendered image in pixels.
imagedata: byte[]
: Binary data of the image.
mimetype: string
: Describes the format of the image data.