mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
add charset interface, create class to store cff font data. add the command logic for type 2 charstrings #6
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user