mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-10-15 19:54:52 +08:00
Add CurrentClippingPath to CurrentGraphicsState
This commit is contained in:
@@ -13,6 +13,11 @@ namespace UglyToad.PdfPig.Graphics
|
|||||||
/// </remarks>
|
/// </remarks>
|
||||||
public class CurrentGraphicsState : IDeepCloneable<CurrentGraphicsState>
|
public class CurrentGraphicsState : IDeepCloneable<CurrentGraphicsState>
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The current clipping path.
|
||||||
|
/// </summary>
|
||||||
|
public PdfPath CurrentClippingPath { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The <see cref="CurrentFontState"/> for this graphics state.
|
/// The <see cref="CurrentFontState"/> for this graphics state.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -131,7 +136,8 @@ namespace UglyToad.PdfPig.Graphics
|
|||||||
Smoothness = Smoothness,
|
Smoothness = Smoothness,
|
||||||
StrokeAdjustment = StrokeAdjustment,
|
StrokeAdjustment = StrokeAdjustment,
|
||||||
CurrentStrokingColor = CurrentStrokingColor,
|
CurrentStrokingColor = CurrentStrokingColor,
|
||||||
CurrentNonStrokingColor = CurrentNonStrokingColor
|
CurrentNonStrokingColor = CurrentNonStrokingColor,
|
||||||
|
CurrentClippingPath = CurrentClippingPath
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user