Enum Kerning
Namespace: Aspose.Svg.Builder
Assembly: Aspose.SVG.dll (25.5.0)
Specifies the kerning behavior for text in SVG.
[ComVisible(true)]
public enum Kerning
Fields
Auto = 0
Enables the browser to determine whether kerning should be applied.
When set to ‘auto’, the browser decides on the kerning based on font and text characteristics. This is typically the default behavior.
None = 2
Disables kerning, ignoring any kerning information in the font.
When set to ’none’, kerning is completely turned off. This may result in less visually appealing text spacing but can be useful in certain scenarios, like monospaced fonts.
Normal = 1
Applies the standard kerning, as defined in the font file.
The ’normal’ setting uses the kerning information included in the font by the font designer. This setting is often preferred for high-quality typography.
Remarks
The ‘font-kerning’ property in SVG controls the usage of the kerning information stored in a font. Kerning adjusts the space between individual letter pairs to improve visual appearance of text. This enum provides options for controlling kerning behavior in SVG text elements.