26 lines
544 B
C#
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
|
|
}
|
|
}
|