diff --git a/src/ImageSharp.Drawing/Processing/ImageBrush.cs b/src/ImageSharp.Drawing/Processing/ImageBrush.cs index 838c7461..5a8062e3 100644 --- a/src/ImageSharp.Drawing/Processing/ImageBrush.cs +++ b/src/ImageSharp.Drawing/Processing/ImageBrush.cs @@ -55,7 +55,7 @@ public ImageBrush(Image image, Point offset) /// The region of interest. /// This overrides any region used to initialize the brush applicator. /// - internal ImageBrush(Image image, RectangleF region) + public ImageBrush(Image image, RectangleF region) : this(image, region, Point.Empty) { } @@ -71,7 +71,7 @@ internal ImageBrush(Image image, RectangleF region) /// /// An offset to apply the to image image while drawing apply the texture. /// - internal ImageBrush(Image image, RectangleF region, Point offset) + public ImageBrush(Image image, RectangleF region, Point offset) { this.image = image; this.region = RectangleF.Intersect(image.Bounds, region);