System::Drawing::Graphics::DrawImageUnscaled method
Contents
[
Hide
]Graphics::DrawImageUnscaled(const SharedPtr<Image>&, const Point&) method
Draws a specified image using its original physical size at a specified location.
void System::Drawing::Graphics::DrawImageUnscaled(const SharedPtr<Image> &image, const Point &point)
Parameter | Type | Description |
---|---|---|
image | const SharedPtr<Image>& | The image to draw |
point | const Point& | The Point structure that specifies the upper-left corner of the drawn image. |
See Also
- Typedef SharedPtr
- Class Image
- Class Point
- Class Graphics
- Namespace System::Drawing
- Library Aspose.TeX for C++
Graphics::DrawImageUnscaled(const SharedPtr<Image>&, const Rectangle&) method
Draws a specified image using its original physical size at a specified location.
void System::Drawing::Graphics::DrawImageUnscaled(const SharedPtr<Image> &image, const Rectangle &rect)
Parameter | Type | Description |
---|---|---|
image | const SharedPtr<Image>& | The image to draw |
rect | const Rectangle& | The rectangle that specifies the upper-left corner of the drawn image. The X and Y properties of the rectangle specify the upper-left corner. The width and height values are ignored. |
See Also
- Typedef SharedPtr
- Class Image
- Class Rectangle
- Class Graphics
- Namespace System::Drawing
- Library Aspose.TeX for C++
Graphics::DrawImageUnscaled(const SharedPtr<Image>&, int, int) method
Draws the specified image using its original physical size at the specified location.
void System::Drawing::Graphics::DrawImageUnscaled(const SharedPtr<Image> &image, int x, int y)
Parameter | Type | Description |
---|---|---|
image | const SharedPtr<Image>& | The image to draw |
x | int | The X coordinate of the upper left corner of the drawn image |
y | int | The Y coordinate of the upper left corner of the drawn image |
See Also
- Typedef SharedPtr
- Class Image
- Class Graphics
- Namespace System::Drawing
- Library Aspose.TeX for C++
Graphics::DrawImageUnscaled(const SharedPtr<Image>&, int, int, int, int) method
Draws a specified image using its original physical size at a specified location.
void System::Drawing::Graphics::DrawImageUnscaled(const SharedPtr<Image> &image, int x, int y, int width, int height)
Parameter | Type | Description |
---|---|---|
image | const SharedPtr<Image>& | The image to draw |
x | int | The X coordinate of the upper left corner of the drawn image |
y | int | The Y coordinate of the upper left corner of the drawn image |
width | int | Not used |
height | int | Not used |
See Also
- Typedef SharedPtr
- Class Image
- Class Graphics
- Namespace System::Drawing
- Library Aspose.TeX for C++