mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-10-15 19:54:52 +08:00
Move Path-Painting Operators to PathPainting folder
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
public const string Symbol = "W";
|
public const string Symbol = "W";
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The instance of the <see cref="EndPath"/> operation.
|
/// The instance of the <see cref="ModifyClippingByNonZeroWindingIntersect"/> operation.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static readonly ModifyClippingByNonZeroWindingIntersect Value = new ModifyClippingByNonZeroWindingIntersect();
|
public static readonly ModifyClippingByNonZeroWindingIntersect Value = new ModifyClippingByNonZeroWindingIntersect();
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
namespace UglyToad.PdfPig.Graphics.Operations
|
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||||
{
|
{
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@@ -1,4 +1,4 @@
|
|||||||
namespace UglyToad.PdfPig.Graphics.Operations
|
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||||
{
|
{
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@@ -1,4 +1,4 @@
|
|||||||
namespace UglyToad.PdfPig.Graphics.Operations
|
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||||
{
|
{
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@@ -1,4 +1,4 @@
|
|||||||
namespace UglyToad.PdfPig.Graphics.Operations
|
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||||
{
|
{
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@@ -1,4 +1,4 @@
|
|||||||
namespace UglyToad.PdfPig.Graphics.Operations
|
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||||
{
|
{
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@@ -1,4 +1,4 @@
|
|||||||
namespace UglyToad.PdfPig.Graphics.Operations
|
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||||
{
|
{
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@@ -1,4 +1,4 @@
|
|||||||
namespace UglyToad.PdfPig.Graphics.Operations
|
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||||
{
|
{
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@@ -1,4 +1,4 @@
|
|||||||
namespace UglyToad.PdfPig.Graphics.Operations
|
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||||
{
|
{
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@@ -1,4 +1,4 @@
|
|||||||
namespace UglyToad.PdfPig.Graphics.Operations
|
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||||
{
|
{
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@@ -1,4 +1,4 @@
|
|||||||
namespace UglyToad.PdfPig.Graphics.Operations
|
namespace UglyToad.PdfPig.Graphics.Operations.PathPainting
|
||||||
{
|
{
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
@@ -2,10 +2,6 @@ using UglyToad.PdfPig.Tokenization;
|
|||||||
|
|
||||||
namespace UglyToad.PdfPig.Graphics
|
namespace UglyToad.PdfPig.Graphics
|
||||||
{
|
{
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Reflection;
|
|
||||||
using Operations;
|
using Operations;
|
||||||
using Operations.ClippingPaths;
|
using Operations.ClippingPaths;
|
||||||
using Operations.Compatibility;
|
using Operations.Compatibility;
|
||||||
@@ -19,7 +15,12 @@ namespace UglyToad.PdfPig.Graphics
|
|||||||
using Operations.TextShowing;
|
using Operations.TextShowing;
|
||||||
using Operations.TextState;
|
using Operations.TextState;
|
||||||
using PdfPig.Core;
|
using PdfPig.Core;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Reflection;
|
||||||
using Tokens;
|
using Tokens;
|
||||||
|
using UglyToad.PdfPig.Graphics.Operations.PathPainting;
|
||||||
|
|
||||||
internal class ReflectionGraphicsStateOperationFactory : IGraphicsStateOperationFactory
|
internal class ReflectionGraphicsStateOperationFactory : IGraphicsStateOperationFactory
|
||||||
{
|
{
|
||||||
|
@@ -1,8 +1,5 @@
|
|||||||
namespace UglyToad.PdfPig.Writer
|
namespace UglyToad.PdfPig.Writer
|
||||||
{
|
{
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.IO;
|
|
||||||
using Content;
|
using Content;
|
||||||
using Core;
|
using Core;
|
||||||
using Fonts;
|
using Fonts;
|
||||||
@@ -16,7 +13,11 @@
|
|||||||
using Graphics.Operations.TextShowing;
|
using Graphics.Operations.TextShowing;
|
||||||
using Graphics.Operations.TextState;
|
using Graphics.Operations.TextState;
|
||||||
using Images;
|
using Images;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
using Tokens;
|
using Tokens;
|
||||||
|
using UglyToad.PdfPig.Graphics.Operations.PathPainting;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A builder used to add construct a page in a PDF document.
|
/// A builder used to add construct a page in a PDF document.
|
||||||
|
Reference in New Issue
Block a user