Files
PdfPig/src/UglyToad.PdfPig.Tests/Fonts/SystemFonts/Linux.cs

92 lines
3.4 KiB
C#
Raw Normal View History

2024-03-15 11:34:24 -07:00
using UglyToad.PdfPig.Fonts.SystemFonts;
using UglyToad.PdfPig.Tests.Dla;
namespace UglyToad.PdfPig.Tests.Fonts.SystemFonts
{
using PdfPig.Core;
using PdfPig.Geometry;
public class Linux
{
public static IEnumerable<object[]> DataExtract => new[]
{
new object[]
{
"90 180 270 rotated.pdf",
new ExpectedLetterData[]
{
new ExpectedLetterData
{
TopLeft = new PdfPoint(53.88, 759.48),
Width = 2.495859375,
Height = 0,
Rotation = 0
},
new ExpectedLetterData
{
TopLeft = new PdfPoint(514.925312502883, 744.099765720344),
Width = 6.83203125,
Height = 7.94531249999983,
Rotation = -90
},
new ExpectedLetterData
{
TopLeft = new PdfPoint(512.505390717836, 736.603703191305),
Width = 5.1796875,
Height = 5.68945312499983,
Rotation = -90
},
new ExpectedLetterData
{
TopLeft = new PdfPoint(512.505390785898, 730.931828191305),
Width = 3.99609375,
Height = 5.52539062499994,
Rotation = -90
},
}
},
};
2021-06-02 11:07:51 +02:00
[SkippableTheory]
[MemberData(nameof(DataExtract))]
public void GetCorrectBBoxLinux(string name, ExpectedLetterData[] expected)
2021-06-02 11:07:51 +02:00
{
// success on Windows but LinuxSystemFontLister cannot find the 'TimesNewRomanPSMT' font
var font = SystemFontFinder.Instance.GetTrueTypeFont("TimesNewRomanPSMT");
Skip.If(font == null, "Skipped because the font TimesNewRomanPSMT could not be found in the execution environment.");
using (var document = PdfDocument.Open(DlaHelper.GetDocumentPath(name)))
{
var page = document.GetPage(1);
for (int i = 0; i < expected.Length; i++)
{
var expectedData = expected[i];
var current = page.Letters[i];
Assert.Equal(expectedData.TopLeft.X, current.BoundingBox.TopLeft.X, 6);
Assert.Equal(expectedData.TopLeft.Y, current.BoundingBox.TopLeft.Y, 6);
Assert.Equal(expectedData.Width, current.BoundingBox.Width, 6);
Assert.Equal(expectedData.Height, current.BoundingBox.Height, 6);
Assert.Equal(expectedData.Rotation, current.BoundingBox.Rotation, 3);
Assert.True(current.BoundingBox.IntersectsWith(current.GlyphRectangleLoose));
Assert.Equal(current.BoundingBox.Rotation, current.GlyphRectangleLoose.Rotation, 3);
}
}
}
public class ExpectedLetterData
{
public PdfPoint TopLeft { get; set; }
public double Width { get; set; }
public double Height { get; set; }
public double Rotation { get; set; }
}
}
}