add charset interface, create class to store cff font data. add the command logic for type 2 charstrings #6

This commit is contained in:
Eliot Jones
2018-11-17 14:59:58 +00:00
parent 7358650b0a
commit 4d18a2478d
21 changed files with 988 additions and 161 deletions

View File

@@ -0,0 +1,15 @@
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)
{
}
}
}