// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.Fonts { /// /// 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. /// public enum HintingMode { /// /// Do not hint the glyphs. /// None, /// /// Hint the glyph using standard configuration. /// Standard } }