Creates the BridgeText object at the specified location with the specified Font and SolidBrush settings.
Namespace:
Aurigma.GraphicsMill.AdvancedDrawing.Art
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Type: System.String
A string to draw.Type: Aurigma.GraphicsMill.AdvancedDrawing.Font
Font defining the font characteristics of the text.Type: Aurigma.GraphicsMill.AdvancedDrawing.Brush
SolidBrush determining the color of the drawn text.Type: System.Drawing.PointF
Point specifying the center of the bridge text.using (var bitmap = new Bitmap(200, 100, PixelFormat.Format24bppRgb, RgbColor.White)) using (var graphics = bitmap.GetAdvancedGraphics()) { var artText = new BridgeText("Art Text", graphics.CreateFont("Arial", 28), new SolidBrush(RgbColor.Black), new System.Drawing.PointF(70, 50), 0.5f); graphics.DrawText(artText); bitmap.Save(@"Images\Output\out.png"); }