mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
15 lines
503 B
C#
15 lines
503 B
C#
namespace UglyToad.PdfPig.Fonts.CompactFontFormat.Charsets
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
/// <summary>
|
|
/// A Charset from a Compact Font Format font file best for fonts with a large number of well ordered string ids.
|
|
/// </summary>
|
|
internal class CompactFontFormatFormat2Charset : CompactFontFormatCharset
|
|
{
|
|
public CompactFontFormatFormat2Charset(IReadOnlyList<(int glyphId, int stringId, string name)> data)
|
|
: base(data)
|
|
{
|
|
}
|
|
}
|
|
} |