delete old code and start an approach for parsing fonts and page content streams

This commit is contained in:
Eliot Jones
2017-11-22 18:41:34 +00:00
parent 4b91300466
commit b0e53efbfe
96 changed files with 2307 additions and 1904 deletions

View File

@@ -0,0 +1,27 @@
namespace UglyToad.Pdf.Graphics.Operations
{
internal class MoveToNextLineShowStringWithSpacing : IGraphicsStateOperation
{
public const string Symbol = "\"";
public string Operator => Symbol;
public decimal WordSpacing { get; }
public decimal CharacterSpacing { get; }
public string Text { get; }
public MoveToNextLineShowStringWithSpacing(decimal wordSpacing, decimal characterSpacing, string text)
{
WordSpacing = wordSpacing;
CharacterSpacing = characterSpacing;
Text = text;
}
public override string ToString()
{
return $"{WordSpacing} {CharacterSpacing} {Text} {Symbol}";
}
}
}