Click or drag to resize

ImageTColor, TDepthDraw Method (String, Point, FontFace, Double, TColor, Int32, LineType, Boolean)

http://www.emgu.com
Draw the text using the specific font on the image

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public virtual void Draw(
	string message,
	Point bottomLeft,
	FontFace fontFace,
	double fontScale,
	TColor color,
	int thickness = 1,
	LineType lineType = LineType.EightConnected,
	bool bottomLeftOrigin = false
)

Parameters

message
Type: SystemString
The text message to be draw
bottomLeft
Type: System.DrawingPoint
The location of the bottom left corner of the font
fontFace
Type: Emgu.CV.CvEnumFontFace
Font type.
fontScale
Type: SystemDouble
Font scale factor that is multiplied by the font-specific base size.
color
Type: TColor
The color of the text
thickness (Optional)
Type: SystemInt32
Thickness of the lines used to draw a text.
lineType (Optional)
Type: Emgu.CV.CvEnumLineType
Line type
bottomLeftOrigin (Optional)
Type: SystemBoolean
When true, the image data origin is at the bottom-left corner. Otherwise, it is at the top-left corner.
See Also