Draw the text using the specific font on the image

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Draw(
	string message,
	ref MCvFont font,
	PointF bottomLeft,
	TColor color
)
Public Sub Draw ( _
	message As String, _
	ByRef font As MCvFont, _
	bottomLeft As PointF, _
	color As TColor _
)
public:
void Draw(
	String^ message, 
	MCvFont% font, 
	PointF bottomLeft, 
	TColor color
)

Parameters

message
String
The text message to be draw
font
MCvFont%
The font used for drawing
bottomLeft
PointF
The location of the bottom left corner of the font
color
TColor
The color of the text

See Also