#4 git attributes to stop git mangling pfb files. output svgs for visual verification of type 1 glyphs

This commit is contained in:
Eliot Jones 2018-11-22 20:04:28 +00:00
parent b9c8e152c1
commit 0e701754e0
3 changed files with 26 additions and 1 deletions

5
.gitattributes vendored Normal file
View File

@ -0,0 +1,5 @@
*.pfa binary
*.pfb binary
*.bin binary
*.pdf binary
*.ttf binary

View File

@ -3,6 +3,7 @@
using System;
using System.IO;
using System.Linq;
using System.Text;
using PdfPig.Fonts.Type1.Parser;
using PdfPig.IO;
using Xunit;
@ -52,6 +53,25 @@
parser.Parse(new ByteArrayInputBytes(bytes), 0, 0);
}
[Fact]
public void OutputCmbx10Svgs()
{
var bytes = GetFileBytes("CMBX10");
var result = parser.Parse(new ByteArrayInputBytes(bytes), 0, 0);
var builder = new StringBuilder("<!DOCTYPE html><html><head></head><body>");
foreach (var charString in result.CharStrings.CharStrings)
{
var path = result.CharStrings.Generate(charString.Key);
builder.AppendLine(path.ToFullSvg());
}
builder.Append("</body></html>");
File.WriteAllText("cmbx10.html", builder.ToString());
}
[Fact]
public void CanReadFontWithCommentsInOtherSubrs()
{

View File

@ -146,7 +146,7 @@ namespace UglyToad.PdfPig.Fonts
var path = $"<path d='{glyph}' stroke='cyan' stroke-width='3'></path>";
var bboxRect = bbox.HasValue ? BboxToRect(bbox.Value, "yellow") : string.Empty;
var others = string.Join(" ", bboxes.Select(x => BboxToRect(x, "gray")));
var result = $"<svg transform='scale(0.2, -0.2)' width='500' height='500'>{path} {bboxRect} {others}</svg>";
var result = $"<svg width='500' height='500'><g transform=\"scale(0.2, -0.2) translate(100, -700)\">{path} {bboxRect} {others}</g></svg>";
return result;
}