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