mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-09-21 04:17:57 +08:00
unify truetype glyphs to a single class. build composite glyphs from elements
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
|
||||
public static AssertablePositionData Parse(string line)
|
||||
{
|
||||
var parts = line.Split('\t', StringSplitOptions.None);
|
||||
var parts = line.Split('\t');
|
||||
|
||||
if (parts.Length < 6)
|
||||
{
|
||||
@@ -36,7 +36,8 @@
|
||||
Width = decimal.Parse(parts[2]),
|
||||
Text = parts[3],
|
||||
FontSize = decimal.Parse(parts[4]),
|
||||
FontName = parts[5]
|
||||
FontName = parts[5],
|
||||
Height = height
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user