Draws the outlined text string at the specified location with the specified Font, Pen, and Brush settings.
Namespace:
Aurigma.GraphicsMill.Drawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Type: System.String
A string to draw.Type: Aurigma.GraphicsMill.Drawing.Font
A Font that defines the text format of the string.Type: Aurigma.GraphicsMill.Drawing.Pen
A Pen that determines the color, width, and style of the text outline.Type: Aurigma.GraphicsMill.Drawing.Brush
A Brush that determines the color and texture of the drawn text.Type: System.Int32
The x-coordinate of the upper-left corner of the drawn text. Actual position of the text is defined with HorizontalAlignment and VerticalAlignment properties of the font argument.Type: System.Int32
The y-coordinate of the upper-left corner of the drawn text. Actual position of the text relatively this point is defined with HorizontalAlignment and VerticalAlignment properties of the font argument.The extent of the text drawn by this method can be measured using the MeasureString(String, Font) method.
When you try to draw text on a grayscale bitmap, you will notice that the text is not antialiased. The reason of this problem is that neither GDI nor GDI+ support grayscale bitmaps, therefore Graphics Mill has to imitate it as indexed bitmap with grayscale palette. However, antialiasing is impossible on indexed bitmaps.