Back to FabImage Library website
You are here: Start » Function Reference » Image » Image Drawing » DrawRectangle
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Draws a rectangle on an image.
Syntax
C++
C#
void fil::DrawRectangle ( fil::Image& ioImage, const fil::Rectangle2D& inRectangle, ftl::Optional<const fil::CoordinateSystem2D&> inRectangleAlignment, const fil::Pixel& inColor, const fil::DrawingStyle& inDrawingStyle )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
ioImage | Image& | ||
![]() |
inRectangle | const Rectangle2D& | ||
![]() |
inRectangleAlignment | Optional<const CoordinateSystem2D&> | NIL | |
![]() |
inColor | const Pixel& | ||
![]() |
inDrawingStyle | const DrawingStyle& |
Description
Filter draws rectangles on an input image.
If an rectangle dimensions exceeds image size it will not be drawn or will be drawn partially.
To indicate the Rectangle orientation set inDrawingStyle.PointShape and inDrawingStyle.Size.

Rectangle drawn with set orientation indicator inDrawingStyle.PointShape = Circle and inDrawingStyle.Size = 10.
Hints
- Define inRectangle. This will be the primitives to be drawn.
- Define inColor. Please note, that on an N-channel image only first N components of the color will be used.
- Set inDrawingStyle to control quality, opacity, thickness, filling, point shapes and sizes.
See Also
- DrawLine – Draws a line on an image.
- DrawPath – Draws a path on an image.
- DrawCircle – Draws a circle on an image.
- DrawPoint – Draws a point on an image.