add visual verification for type 1 output, currently seems off by some amount, could be font matrix

This commit is contained in:
Eliot Jones
2018-11-15 20:21:13 +00:00
parent b76cfcee57
commit 099f270986
2 changed files with 7 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 KiB

View File

@@ -10,6 +10,7 @@
private const string NonLatinAcrobatDistiller = "Single Page Non Latin - from acrobat distiller"; private const string NonLatinAcrobatDistiller = "Single Page Non Latin - from acrobat distiller";
private const string SingleGoogleDrivePage = "Single Page Simple - from google drive"; private const string SingleGoogleDrivePage = "Single Page Simple - from google drive";
private const string SinglePageFormattedType0Content = "Type0 Font"; private const string SinglePageFormattedType0Content = "Type0 Font";
private const string SinglePageType1Content = "ICML03-081";
private static string GetFilename(string name) private static string GetFilename(string name)
{ {
@@ -23,6 +24,12 @@
return Path.Combine(documentFolder, name); return Path.Combine(documentFolder, name);
} }
[Fact]
public void SinglePageWithType1Content()
{
Run(SinglePageType1Content);
}
[Fact] [Fact]
public void SinglePageNonLatinFromAcrobatDistiller() public void SinglePageNonLatinFromAcrobatDistiller()
{ {