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,21 @@
namespace UglyToad.Pdf.Graphics.Operations
{
internal class SetTextRenderingMode : IGraphicsStateOperation
{
public const string Symbol = "Tr";
public string Operator => Symbol;
public int Mode { get; }
public SetTextRenderingMode(int mode)
{
Mode = mode;
}
public override string ToString()
{
return $"{Mode} {Symbol}";
}
}
}