ImageSharp/SixLabors.Fonts/Tables/TableFormat.cs
2026-08-03 22:31:27 +02:00

26 lines
544 B
C#

// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts.Tables {
/// <summary>
/// Specifies the font container format used to store font table data.
/// </summary>
internal enum TableFormat
{
/// <summary>
/// woff font table format.
/// </summary>
Woff,
/// <summary>
/// woff2 font table format.
/// </summary>
Woff2,
/// <summary>
/// otf font table format.
/// </summary>
Otf
}
}