diff --git a/src/UglyToad.Pdf/Graphics/Operations/ClippingPaths/ModifyClippingByEvenOddIntersect.cs b/src/UglyToad.Pdf/Graphics/Operations/ClippingPaths/ModifyClippingByEvenOddIntersect.cs index 22041b79..d7da41f7 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/ClippingPaths/ModifyClippingByEvenOddIntersect.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/ClippingPaths/ModifyClippingByEvenOddIntersect.cs @@ -1,5 +1,7 @@ -namespace UglyToad.Pdf.Graphics.Operations +namespace UglyToad.Pdf.Graphics.Operations.ClippingPaths { + using Content; + internal class ModifyClippingByEvenOddIntersect : IGraphicsStateOperation { public const string Symbol = "W*"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/ClippingPaths/ModifyClippingByNonZeroWindingIntersect.cs b/src/UglyToad.Pdf/Graphics/Operations/ClippingPaths/ModifyClippingByNonZeroWindingIntersect.cs index b77af299..0cbe8ae7 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/ClippingPaths/ModifyClippingByNonZeroWindingIntersect.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/ClippingPaths/ModifyClippingByNonZeroWindingIntersect.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations.ClippingPaths { + using Content; + internal class ModifyClippingByNonZeroWindingIntersect : IGraphicsStateOperation { public const string Symbol = "W"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/CloseAndStrokePath.cs b/src/UglyToad.Pdf/Graphics/Operations/CloseAndStrokePath.cs index baaf5559..1992aadb 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/CloseAndStrokePath.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/CloseAndStrokePath.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class CloseAndStrokePath : IGraphicsStateOperation { public const string Symbol = "s"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/CloseFillPathEvenOddRuleAndStroke.cs b/src/UglyToad.Pdf/Graphics/Operations/CloseFillPathEvenOddRuleAndStroke.cs index b418d65a..2527210b 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/CloseFillPathEvenOddRuleAndStroke.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/CloseFillPathEvenOddRuleAndStroke.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class CloseFillPathEvenOddRuleAndStroke : IGraphicsStateOperation { public const string Symbol = "b*"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/CloseFillPathNonZeroWindingAndStroke.cs b/src/UglyToad.Pdf/Graphics/Operations/CloseFillPathNonZeroWindingAndStroke.cs index c07d5d84..6021700a 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/CloseFillPathNonZeroWindingAndStroke.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/CloseFillPathNonZeroWindingAndStroke.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class CloseFillPathNonZeroWindingAndStroke : IGraphicsStateOperation { public const string Symbol = "b"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/EndPath.cs b/src/UglyToad.Pdf/Graphics/Operations/EndPath.cs index 63211af1..1a118757 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/EndPath.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/EndPath.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class EndPath : IGraphicsStateOperation { public const string Symbol = "n"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/FillPathEvenOddRule.cs b/src/UglyToad.Pdf/Graphics/Operations/FillPathEvenOddRule.cs index a962c9ab..dc628992 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/FillPathEvenOddRule.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/FillPathEvenOddRule.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class FillPathEvenOddRule : IGraphicsStateOperation { public const string Symbol = "f*"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/FillPathEvenOddRuleAndStroke.cs b/src/UglyToad.Pdf/Graphics/Operations/FillPathEvenOddRuleAndStroke.cs index 9642776b..b104fc2e 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/FillPathEvenOddRuleAndStroke.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/FillPathEvenOddRuleAndStroke.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class FillPathEvenOddRuleAndStroke : IGraphicsStateOperation { public const string Symbol = "B*"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWinding.cs b/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWinding.cs index 6187c661..88e3c1ad 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWinding.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWinding.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class FillPathNonZeroWinding : IGraphicsStateOperation { public const string Symbol = "f"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWindingAndStroke.cs b/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWindingAndStroke.cs index 502ff8a2..a0b192c6 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWindingAndStroke.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWindingAndStroke.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class FillPathNonZeroWindingAndStroke : IGraphicsStateOperation { public const string Symbol = "B"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWindingCompatibility.cs b/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWindingCompatibility.cs index 3f5832b5..edeb560c 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWindingCompatibility.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/FillPathNonZeroWindingCompatibility.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class FillPathNonZeroWindingCompatibility : IGraphicsStateOperation { public const string Symbol = "F"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendDualControlPointBezierCurve.cs b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendDualControlPointBezierCurve.cs index a0cdcd67..e37c2d29 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendDualControlPointBezierCurve.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendDualControlPointBezierCurve.cs @@ -1,5 +1,6 @@ namespace UglyToad.Pdf.Graphics.Operations.PathConstruction { + using Content; using Geometry; internal class AppendDualControlPointBezierCurve : IGraphicsStateOperation @@ -21,6 +22,10 @@ End = new PdfPoint(x3, y3); } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{ControlPoint1.X} {ControlPoint1.Y} {ControlPoint2.X} {ControlPoint2.Y} {End.X} {End.Y} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendEndControlPointBezierCurve.cs b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendEndControlPointBezierCurve.cs index 1075be76..915385d4 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendEndControlPointBezierCurve.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendEndControlPointBezierCurve.cs @@ -1,5 +1,6 @@ namespace UglyToad.Pdf.Graphics.Operations.PathConstruction { + using Content; using Geometry; internal class AppendEndControlPointBezierCurve : IGraphicsStateOperation @@ -18,6 +19,10 @@ End = new PdfPoint(x3, y3); } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{ControlPoint1.X} {ControlPoint1.Y} {End.X} {End.Y} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendRectangle.cs b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendRectangle.cs index 749dbeed..88846575 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendRectangle.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendRectangle.cs @@ -1,5 +1,6 @@ namespace UglyToad.Pdf.Graphics.Operations.PathConstruction { + using Content; using Geometry; internal class AppendRectangle : IGraphicsStateOperation @@ -22,6 +23,10 @@ Height = height; } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{LowerLeft.X} {LowerLeft.Y} {Width} {Height} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendStartControlPointBezierCurve.cs b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendStartControlPointBezierCurve.cs index a80a8866..1d81861b 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendStartControlPointBezierCurve.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendStartControlPointBezierCurve.cs @@ -1,5 +1,6 @@ namespace UglyToad.Pdf.Graphics.Operations.PathConstruction { + using Content; using Geometry; internal class AppendStartControlPointBezierCurve : IGraphicsStateOperation @@ -18,6 +19,10 @@ End = new PdfPoint(x3, y3); } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{ControlPoint2.X} {ControlPoint2.Y} {End.X} {End.Y} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendStraightLineSegment.cs b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendStraightLineSegment.cs index e7a6f5e6..deb4695f 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendStraightLineSegment.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/AppendStraightLineSegment.cs @@ -1,5 +1,6 @@ namespace UglyToad.Pdf.Graphics.Operations.PathConstruction { + using Content; using Geometry; internal class AppendStraightLineSegment : IGraphicsStateOperation @@ -15,6 +16,10 @@ End = new PdfPoint(x, y); } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{End.X} {End.Y} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/BeginNewSubpath.cs b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/BeginNewSubpath.cs index 3e000eca..055d16ae 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/BeginNewSubpath.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/BeginNewSubpath.cs @@ -1,5 +1,6 @@ namespace UglyToad.Pdf.Graphics.Operations.PathConstruction { + using Content; using Geometry; internal class BeginNewSubpath : IGraphicsStateOperation @@ -15,6 +16,10 @@ Point = new PdfPoint(x, y); } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{Point.X} {Point.Y} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/CloseSubpath.cs b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/CloseSubpath.cs index 782e392e..daa43e88 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/CloseSubpath.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/PathConstruction/CloseSubpath.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations.PathConstruction { + using Content; + internal class CloseSubpath : IGraphicsStateOperation { public const string Symbol = "h"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol; diff --git a/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceCmyk.cs b/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceCmyk.cs index 7e1973f1..acbd6fc9 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceCmyk.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceCmyk.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class SetNonStrokeColorDeviceCmyk : IGraphicsStateOperation { public const string Symbol = "K"; @@ -22,6 +24,10 @@ K = k; } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{C} {M} {Y} {K} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceGray.cs b/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceGray.cs index 3ab06ae6..a6496f5e 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceGray.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceGray.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class SetNonStrokeColorDeviceGray : IGraphicsStateOperation { public const string Symbol = "g"; @@ -13,6 +15,10 @@ Gray = gray; } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{Gray} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceRgb.cs b/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceRgb.cs index 7958c870..a55ae63d 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceRgb.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/SetNonStrokeColorDeviceRgb.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class SetNonStrokeColorDeviceRgb : IGraphicsStateOperation { public const string Symbol = "rg"; @@ -19,6 +21,10 @@ B = b; } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{R} {G} {B} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceCmyk.cs b/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceCmyk.cs index 562a338b..e0cd061c 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceCmyk.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceCmyk.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class SetStrokeColorDeviceCmyk : IGraphicsStateOperation { public const string Symbol = "K"; @@ -22,6 +24,10 @@ K = k; } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{C} {M} {Y} {K} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceGray.cs b/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceGray.cs index 82cf4315..22853ef4 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceGray.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceGray.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class SetStrokeColorDeviceGray : IGraphicsStateOperation { public const string Symbol = "G"; @@ -13,6 +15,10 @@ Gray = gray; } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{Gray} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceRgb.cs b/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceRgb.cs index 1fcd3329..05d4d446 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceRgb.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/SetStrokeColorDeviceRgb.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class SetStrokeColorDeviceRgb : IGraphicsStateOperation { public const string Symbol = "RG"; @@ -19,6 +21,10 @@ B = b; } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return $"{R} {G} {B} {Symbol}"; diff --git a/src/UglyToad.Pdf/Graphics/Operations/StrokePath.cs b/src/UglyToad.Pdf/Graphics/Operations/StrokePath.cs index 70218384..e790088b 100644 --- a/src/UglyToad.Pdf/Graphics/Operations/StrokePath.cs +++ b/src/UglyToad.Pdf/Graphics/Operations/StrokePath.cs @@ -1,5 +1,7 @@ namespace UglyToad.Pdf.Graphics.Operations { + using Content; + internal class StrokePath : IGraphicsStateOperation { public const string Symbol = "S"; @@ -12,6 +14,10 @@ { } + public void Run(IOperationContext operationContext, IResourceStore resourceStore) + { + } + public override string ToString() { return Symbol;