mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-04-05 20:55:01 +08:00
#4 git attributes to stop git mangling pfb files. output svgs for visual verification of type 1 glyphs
This commit is contained in:
parent
b9c8e152c1
commit
0e701754e0
5
.gitattributes
vendored
Normal file
5
.gitattributes
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
*.pfa binary
|
||||||
|
*.pfb binary
|
||||||
|
*.bin binary
|
||||||
|
*.pdf binary
|
||||||
|
*.ttf binary
|
@ -3,6 +3,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
using PdfPig.Fonts.Type1.Parser;
|
using PdfPig.Fonts.Type1.Parser;
|
||||||
using PdfPig.IO;
|
using PdfPig.IO;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
@ -52,6 +53,25 @@
|
|||||||
parser.Parse(new ByteArrayInputBytes(bytes), 0, 0);
|
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]
|
[Fact]
|
||||||
public void CanReadFontWithCommentsInOtherSubrs()
|
public void CanReadFontWithCommentsInOtherSubrs()
|
||||||
{
|
{
|
||||||
|
@ -146,7 +146,7 @@ namespace UglyToad.PdfPig.Fonts
|
|||||||
var path = $"<path d='{glyph}' stroke='cyan' stroke-width='3'></path>";
|
var path = $"<path d='{glyph}' stroke='cyan' stroke-width='3'></path>";
|
||||||
var bboxRect = bbox.HasValue ? BboxToRect(bbox.Value, "yellow") : string.Empty;
|
var bboxRect = bbox.HasValue ? BboxToRect(bbox.Value, "yellow") : string.Empty;
|
||||||
var others = string.Join(" ", bboxes.Select(x => BboxToRect(x, "gray")));
|
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;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user