22 lines
578 B
C#
22 lines
578 B
C#
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
namespace SixLabors.Fonts {
|
|
/// <summary>
|
|
/// Defines modes to determine how to apply hinting. The use of mathematical instructions
|
|
/// to adjust the display of an outline font so that it lines up with a rasterized grid.
|
|
/// </summary>
|
|
public enum HintingMode
|
|
{
|
|
/// <summary>
|
|
/// Do not hint the glyphs.
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// Hint the glyph using standard configuration.
|
|
/// </summary>
|
|
Standard
|
|
}
|
|
}
|