vendor: import KillerPDF 1.7.5 source (GPL-3.0) as the base for MMD PDF

This commit is contained in:
2026-08-27 06:58:22 +02:00
commit 532485a830
577 changed files with 149058 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using System.Collections.Generic;
using PdfSharpCore.Drawing;
namespace PdfSharpCore.Internal
{
public class FontFamilyModel
{
public string Name { get; set; }
public Dictionary<XFontStyle, string> FontFiles = new Dictionary<XFontStyle, string>();
public bool IsStyleAvailable(XFontStyle fontStyle)
{
return FontFiles.ContainsKey(fontStyle);
}
}
}