Enum ClippingOperation
Provides options for boolean clipping operations.
Namespace: SixLabors.ImageSharp.Drawing
Assembly: SixLabors.ImageSharp.Drawing.dll
Syntax
public enum ClippingOperation
Remarks
All clipping operations except for Difference are commutative.
Fields
| Name | Description |
|---|---|
| Difference | Clips regions covered by subject, but not clip polygons. |
| Intersection | Clips regions covered by both subject and clip polygons. |
| None | No clipping is performed. |
| Union | Clips regions covered by subject or clip polygons, or both polygons. |
| Xor | Clips regions covered by subject or clip polygons, but not both. |