arrange operations into folders in line with grouping from the specification and start creating a context to mutate through operations.

This commit is contained in:
Eliot Jones
2017-11-26 22:19:42 +00:00
parent b0e53efbfe
commit ed634e86fe
55 changed files with 831 additions and 144 deletions

View File

@@ -0,0 +1,21 @@
namespace UglyToad.Pdf.Graphics.Operations.TextState
{
internal class SetWordSpacing : IGraphicsStateOperation
{
public const string Symbol = "Tw";
public string Operator => Symbol;
public decimal Spacing { get; }
public SetWordSpacing(decimal spacing)
{
Spacing = spacing;
}
public override string ToString()
{
return $"{Spacing} {Symbol}";
}
}
}