This documentation is for the old version. Go to the latest Graphics Mill docs

Font.Antialiased Property

Gets/sets value specifying if text should be antialiased.

Namespace: Aurigma.GraphicsMill.Drawing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Property Antialiased As Boolean
C#
public bool Antialiased { get; set; }

Property Value

The value specifying if text should be antialiased.

Remarks

Antialiased text is looking smooth, displayed with high quality. However it works slower than displaying text without antialiasing.

Antialiasing can be applied only to full-color bitmaps. When drawing on indexed bitmaps, antialiasing cannot be used by its nature.

Note

If the GdiGraphics was created on the base of the Bitmap which has Format8bppGrayScale pixel format, antialiasing will not be applied for text output. The reason of this issue is that GDI does not support grayscale bitmaps. That's why Graphics Mill for .NET represents this image as Format8bppIndexed bitmap with grayscale palette.

Default value is true.

See Also

Reference