Gets or sets a value that indicates whether the text is italic.
Namespace:
Aurigma.GraphicsMill.Drawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public bool Italic { get; set; }
true
if the text is italic; otherwise, false
. The default value is false
.using (var bitmap = new Bitmap(300, 30, PixelFormat.Format24bppRgb, RgbColor.White))
{
using (var graphics = bitmap.GetGraphics())
{
//Draw text
var font = new Font("Futura Md BT", 20);
font.Bold = false;
font.Italic = true;
font.Underline = true;
font.Strikeout = false;
font.HorizontalAlignment = HorizontalAlignment.Center;
var brush = new SolidBrush(RgbColor.Red);
graphics.DrawString("Sample text", font, brush, 150, 0);
bitmap.Save(@"Images\Output\string.png");
}
}