We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe045b5 commit f4be2f7Copy full SHA for f4be2f7
1 file changed
src/ImageSharp.Drawing/Processing/Processors/Drawing/RecursiveImageProcessor.cs
@@ -76,11 +76,8 @@ public void Dispose()
76
77
public void Execute()
78
{
79
- // Perform any processing logic you want here, in this case we are going to
80
- // clone the source image then apply the changes requested before using an
81
- // image brush to draw that portion the the original image
82
- // so clone out our source image so we can apply
83
- // various effects to it without mutating the origional yet.
+ // Clone out our source image so we can apply various effects to it without mutating
+ // the original yet.
84
using Image<TPixel> clone = this.source.Clone(this.recursiveImageProcessor.Operation);
85
86
// Use an image brush to apply cloned image as the source for filling the shape.
0 commit comments