DrawImage()

Contents
[ ]

Graphics::DrawImage(const SharedPtr<Image>&, const System::ArrayPtr<Point>&) method

NOT IMPLEMENTED.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, const System::ArrayPtr<Point> &destPoints)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&IGNORED
destPointsconst System::ArrayPtr<Point>&IGNORED

Graphics::DrawImage(const SharedPtr<Image>&, const System::ArrayPtr<PointF>&, const RectangleF&, GraphicsUnit, const Imaging::ImageAttributesPtr&) method

Draws the specified region of the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, const System::ArrayPtr<PointF> &destPoints, const RectangleF &srcRect, GraphicsUnit srcUnit, const Imaging::ImageAttributesPtr &imgAttributes)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
destPointsconst System::ArrayPtr<PointF>&An array containing three points that define a parallelogram on the drawing surface to draw the image to
srcRectconst RectangleF&A rectangle that defines the region of the specified image to draw
srcUnitGraphicsUnitThe measurement units used by srcRect parameter
imgAttributesconst Imaging::ImageAttributesPtr&Specifies coloring and gamma information for the image

Graphics::DrawImage(const SharedPtr<Image>&, const System::Details::ArrayView<PointF>&, const RectangleF&, GraphicsUnit, const Imaging::ImageAttributesPtr&) method

Draws the specified region of the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, const System::Details::ArrayView<PointF> &destPoints, const RectangleF &srcRect, GraphicsUnit srcUnit, const Imaging::ImageAttributesPtr &imgAttributes)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
destPointsconst System::Details::ArrayView<PointF>&An array view containing three points that define a parallelogram on the drawing surface to draw the image to
srcRectconst RectangleF&A rectangle that defines the region of the specified image to draw
srcUnitGraphicsUnitThe measurement units used by srcRect parameter
imgAttributesconst Imaging::ImageAttributesPtr&Specifies coloring and gamma information for the image

Graphics::DrawImage(const SharedPtr<Image>&, const System::Details::StackArray<PointF, N>&, const RectangleF&, GraphicsUnit, const Imaging::ImageAttributesPtr&) method

Draws the specified region of the specified image at the specified location.

template<std::size_t> void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, const System::Details::StackArray<PointF, N> &destPoints, const RectangleF &srcRect, GraphicsUnit srcUnit, const Imaging::ImageAttributesPtr &imgAttributes)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
destPointsconst System::Details::StackArray<PointF, N>&An stack array containing three points that define a parallelogram on the drawing surface to draw the image to
srcRectconst RectangleF&A rectangle that defines the region of the specified image to draw
srcUnitGraphicsUnitThe measurement units used by srcRect parameter
imgAttributesconst Imaging::ImageAttributesPtr&Specifies coloring and gamma information for the image

Graphics::DrawImage(const SharedPtr<Image>&, int, int) method

Draws the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, int x, int y)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
xintThe X coordinate of the upper left corner of the drawn image
yintThe Y coordinate of the upper left corner of the drawn image

Graphics::DrawImage(const SharedPtr<Image>&, float, float) method

Draws the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, float x, float y)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
xfloatThe X coordinate of the upper left corner of the drawn image
yfloatThe Y coordinate of the upper left corner of the drawn image

Graphics::DrawImage(const SharedPtr<Image>&, Point) method

Draws the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, Point pt)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
ptPointThe location of the upper left corner of the drawn image

Graphics::DrawImage(const SharedPtr<Image>&, PointF) method

Draws the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, PointF pt)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
ptPointFThe location of the upper left corner of the drawn image

Graphics::DrawImage(const SharedPtr<Image>&, int, int, int, int) method

Draws the specified image to the specified rectangle.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, int x, int y, int width, int height)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
xintThe X coordinate of the upper left corner of the rectangle to draw the image to
yintThe Y coordinate of the upper left corner of the rectangle to draw the image to
widthintThe width of the upper left corner of the rectangle to draw the image to
heightintThe height of the upper left corner of the rectangle to draw the image to

Graphics::DrawImage(const SharedPtr<Image>&, float, float, float, float) method

Draws the specified image to the specified rectangle.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, float x, float y, float width, float height)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
xfloatThe X coordinate of the upper left corner of the rectangle to draw the image to
yfloatThe Y coordinate of the upper left corner of the rectangle to draw the image to
widthfloatThe width of the upper left corner of the rectangle to draw the image to
heightfloatThe height of the upper left corner of the rectangle to draw the image to

Graphics::DrawImage(const SharedPtr<Image>&, RectangleF, RectangleF, GraphicsUnit) method

Draws the specified region of the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
destRectRectangleFA rectangle to draw the image to
srcRectRectangleFA rectangle that defines the region of the specified image to draw
srcUnitGraphicsUnitThe measurement units used by srcRect parameter

Graphics::DrawImage(const SharedPtr<Image>&, Rectangle, Rectangle, GraphicsUnit) method

Draws the specified region of the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
destRectRectangleA rectangle to draw the image to
srcRectRectangleA rectangle that defines the region of the specified image to draw
srcUnitGraphicsUnitThe measurement units used by srcRect parameter

Graphics::DrawImage(const SharedPtr<Image>&, int, int, Rectangle, GraphicsUnit) method

Draws the specified region of the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, int x, int y, Rectangle srcRect, GraphicsUnit srcUnit)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
xintThe X coordinate of the upper left corner of the rectangle to draw the image to
yintThe Y coordinate of the upper left corner of the rectangle to draw the image to
srcRectRectangleA rectangle that defines the region of the specified image to draw
srcUnitGraphicsUnitThe measurement units used by srcRect parameter

Graphics::DrawImage(const SharedPtr<Image>&, const Rectangle&) method

Draws the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, const Rectangle &rect)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
rectconst Rectangle&A rectangle to draw the image to

Graphics::DrawImage(const SharedPtr<Image>&, const RectangleF&) method

Draws the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, const RectangleF &rect)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
rectconst RectangleF&A rectangle to draw the image to

Graphics::DrawImage(const SharedPtr<Image>&, Rectangle, int, int, int, int, GraphicsUnit, const Imaging::ImageAttributesPtr&) method

Draws the specified region of the specified image to the specified rectangle.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, const Imaging::ImageAttributesPtr &imgAttributes)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
destRectRectangleA rectangle to draw the image to
srcXintThe X coordinate of the upper left corner of the rectangle that specifies the portion of the image to draw
srcYintThe Y coordinate of the upper left corner of the rectangle that specifies the portion of the image to draw
srcWidthintThe width of the upper left corner of the rectangle that specifies the portion of the image to draw
srcHeightintThe height of the upper left corner of the rectangle that specifies the portion of the image to draw
srcUnitGraphicsUnitThe measurement units in which parameters srcX, srcY, srcWidth and srcHeight are specified
imgAttributesconst Imaging::ImageAttributesPtr&Specifies coloring and gamma information for the image

Graphics::DrawImage(const SharedPtr<Image>&, Rectangle, float, float, float, float, GraphicsUnit, const Imaging::ImageAttributesPtr&) method

Draws the specified region of the specified image to the specified rectangle.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, const Imaging::ImageAttributesPtr &imgAttributes)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
destRectRectangleA rectangle to draw the image to
srcXfloatThe X coordinate of the upper left corner of the rectangle that specifies the portion of the image to draw
srcYfloatThe Y coordinate of the upper left corner of the rectangle that specifies the portion of the image to draw
srcWidthfloatThe width of the upper left corner of the rectangle that specifies the portion of the image to draw
srcHeightfloatThe height of the upper left corner of the rectangle that specifies the portion of the image to draw
srcUnitGraphicsUnitThe measurement units in which parameters srcX, srcY, srcWidth and srcHeight are specified
imgAttributesconst Imaging::ImageAttributesPtr&Specifies coloring and gamma information for the image

Graphics::DrawImage(const SharedPtr<Image>&, Rectangle, int, int, int, int, GraphicsUnit) method

Draws the specified region of the specified image to the specified rectangle.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
destRectRectangleA rectangle to draw the image to
srcXintThe X coordinate of the upper left corner of the rectangle that specifies the portion of the image to draw
srcYintThe Y coordinate of the upper left corner of the rectangle that specifies the portion of the image to draw
srcWidthintThe width of the upper left corner of the rectangle that specifies the portion of the image to draw
srcHeightintThe height of the upper left corner of the rectangle that specifies the portion of the image to draw
srcUnitGraphicsUnitThe measurement units in which parameters srcX, srcY, srcWidth and srcHeight are specified

Graphics::DrawImage(const SharedPtr<Image>&, Rectangle, float, float, float, float, GraphicsUnit) method

Draws the specified region of the specified image to the specified rectangle.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
destRectRectangleA rectangle to draw the image to
srcXfloatThe X coordinate of the upper left corner of the rectangle that specifies the portion of the image to draw
srcYfloatThe Y coordinate of the upper left corner of the rectangle that specifies the portion of the image to draw
srcWidthfloatThe width of the upper left corner of the rectangle that specifies the portion of the image to draw
srcHeightfloatThe height of the upper left corner of the rectangle that specifies the portion of the image to draw
srcUnitGraphicsUnitThe measurement units in which parameters srcX, srcY, srcWidth and srcHeight are specified

Graphics::DrawImage(const SharedPtr<Image>&, Rectangle, int, int, int, int, GraphicsUnit, const Imaging::ImageAttributesPtr&, Graphics::DrawImageAbort) method

NOT IMPLEMENTED.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, const Imaging::ImageAttributesPtr &imgAttributes, Graphics::DrawImageAbort callback)

Graphics::DrawImage(const SharedPtr<Image>&, Rectangle, float, float, float, float, GraphicsUnit, const Imaging::ImageAttributesPtr&, Graphics::DrawImageAbort) method

NOT IMPLEMENTED.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, const Imaging::ImageAttributesPtr &imgAttributes, Graphics::DrawImageAbort callback)

Graphics::DrawImage(const SharedPtr<Image>&, Rectangle, int, int, int, int, GraphicsUnit, const Imaging::ImageAttributesPtr&, Graphics::DrawImageAbort, IntPtr) method

NOT IMPLEMENTED.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, const Imaging::ImageAttributesPtr &imgAttributes, Graphics::DrawImageAbort callback, IntPtr callbackData)

Graphics::DrawImage(const SharedPtr<Image>&, Rectangle, float, float, float, float, GraphicsUnit, const Imaging::ImageAttributesPtr&, Graphics::DrawImageAbort, IntPtr) method

NOT IMPLEMENTED.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, const Imaging::ImageAttributesPtr &imgAttributes, Graphics::DrawImageAbort callback, IntPtr callbackData)

Graphics::DrawImage(const SharedPtr<Image>&, const ArrayPtr<PointF>&, RectangleF, GraphicsUnit) method

NOT IMPLEMENTED.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, const ArrayPtr<PointF> &destPoints, RectangleF srcRect, GraphicsUnit srcUnit)

Graphics::DrawImage(const SharedPtr<Image>&, const ArrayPtr<PointF>&) method

NOT IMPLEMENTED.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, const ArrayPtr<PointF> &destPoints)

Graphics::DrawImage(const SharedPtr<Image>&, const ArrayPtr<Point>&, Rectangle, GraphicsUnit) method

NOT IMPLEMENTED.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, const ArrayPtr<Point> &destPoints, Rectangle srcRect, GraphicsUnit srcUnit)

Graphics::DrawImage(const SharedPtr<Image>&, const ArrayPtr<Point>&, Rectangle, GraphicsUnit, const SharedPtr<Imaging::ImageAttributes>&) method

Draws the specified region of the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, const ArrayPtr<Point> &destPoints, Rectangle srcRect, GraphicsUnit srcUnit, const SharedPtr<Imaging::ImageAttributes> &imageAttr)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
destPointsconst ArrayPtr<Point>&An array containing three points that define a parallelogram on the drawing surface to draw the image to
srcRectRectangleA rectangle that defines the region of the specified image to draw
srcUnitGraphicsUnitThe measurement units used by srcRect parameter
imageAttrconst SharedPtr<Imaging::ImageAttributes>&Specifies coloring and gamma information for the image

Graphics::DrawImage(const SharedPtr<Image>&, float, float, RectangleF, GraphicsUnit) method

Draws the specified region of the specified image at the specified location.

void System::Drawing::Graphics::DrawImage(const SharedPtr<Image> &image, float x, float y, RectangleF srcRect, GraphicsUnit srcUnit)

Arguments

ParameterTypeDescription
imageconst SharedPtr<Image>&The image to draw
xfloatThe X coordinate of the upper left corner of the rectangle to draw the image to
yfloatThe Y coordinate of the upper left corner of the rectangle to draw the image to
srcRectRectangleFA rectangle that defines the region of the specified image to draw
srcUnitGraphicsUnitThe measurement units used by srcRect parameter

See Also