Skip to content

Commit 67e546e

Browse files
Merge branch 'main' into js/shape-constructors
2 parents 4c3a3ef + f7f0f4d commit 67e546e

19 files changed

+91
-91
lines changed

src/ImageSharp.Drawing/Processing/DrawingOptionsDefaultsExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static class DrawingOptionsDefaultsExtensions
1414
private const string DrawingTransformMatrixKey = "DrawingTransformMatrix3x2";
1515

1616
/// <summary>
17-
/// Gets the default shape processing options against the image processing context.
17+
/// Gets the default shape processing options against The source image processing context.
1818
/// </summary>
1919
/// <param name="context">The image processing context to retrieve defaults from.</param>
2020
/// <returns>The globally configured default options.</returns>

src/ImageSharp.Drawing/Processing/Extensions/ClearExtensions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class ClearExtensions
1313
/// <summary>
1414
/// Flood fills the image with the specified color without any blending.
1515
/// </summary>
16-
/// <param name="source">The image processing context.</param>
16+
/// <param name="source">The source image processing context.</param>
1717
/// <param name="color">The color.</param>
1818
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
1919
public static IImageProcessingContext Clear(this IImageProcessingContext source, Color color)
@@ -22,7 +22,7 @@ public static IImageProcessingContext Clear(this IImageProcessingContext source,
2222
/// <summary>
2323
/// Flood fills the image with the specified color without any blending.
2424
/// </summary>
25-
/// <param name="source">The image processing context.</param>
25+
/// <param name="source">The source image processing context.</param>
2626
/// <param name="options">The drawing options.</param>
2727
/// <param name="color">The color.</param>
2828
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@@ -32,7 +32,7 @@ public static IImageProcessingContext Clear(this IImageProcessingContext source,
3232
/// <summary>
3333
/// Flood fills the image with the specified brush without any blending.
3434
/// </summary>
35-
/// <param name="source">The image processing context.</param>
35+
/// <param name="source">The source image processing context.</param>
3636
/// <param name="brush">The brush.</param>
3737
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
3838
public static IImageProcessingContext Clear(this IImageProcessingContext source, Brush brush) =>
@@ -41,7 +41,7 @@ public static IImageProcessingContext Clear(this IImageProcessingContext source,
4141
/// <summary>
4242
/// Flood fills the image with the specified brush without any blending.
4343
/// </summary>
44-
/// <param name="source">The image processing context.</param>
44+
/// <param name="source">The source image processing context.</param>
4545
/// <param name="options">The drawing options.</param>
4646
/// <param name="brush">The brush.</param>
4747
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>

src/ImageSharp.Drawing/Processing/Extensions/ClearPathExtensions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static class ClearPathExtensions
1414
/// Flood fills the image within the provided region defined by an <see cref="IPath"/> using the specified
1515
/// color without any blending.
1616
/// </summary>
17-
/// <param name="source">The image processing context.</param>
17+
/// <param name="source">The source image processing context.</param>
1818
/// <param name="color">The color.</param>
1919
/// <param name="region">The <see cref="IPath"/> defining the region to fill.</param>
2020
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@@ -28,7 +28,7 @@ public static IImageProcessingContext Clear(
2828
/// Flood fills the image within the provided region defined by an <see cref="IPath"/> using the specified color
2929
/// without any blending.
3030
/// </summary>
31-
/// <param name="source">The image processing context.</param>
31+
/// <param name="source">The source image processing context.</param>
3232
/// <param name="options">The drawing options.</param>
3333
/// <param name="color">The color.</param>
3434
/// <param name="region">The <see cref="IPath"/> defining the region to fill.</param>
@@ -44,7 +44,7 @@ public static IImageProcessingContext Clear(
4444
/// Flood fills the image within the provided region defined by an <see cref="IPath"/> using the specified brush
4545
/// without any blending.
4646
/// </summary>
47-
/// <param name="source">The image processing context.</param>
47+
/// <param name="source">The source image processing context.</param>
4848
/// <param name="brush">The brush.</param>
4949
/// <param name="region">The <see cref="IPath"/> defining the region to fill.</param>
5050
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@@ -58,7 +58,7 @@ public static IImageProcessingContext Clear(
5858
/// Flood fills the image within the provided region defined by an <see cref="IPath"/> using the specified brush
5959
/// without any blending.
6060
/// </summary>
61-
/// <param name="source">The image processing context.</param>
61+
/// <param name="source">The source image processing context.</param>
6262
/// <param name="options">The drawing options.</param>
6363
/// <param name="brush">The brush.</param>
6464
/// <param name="region">The <see cref="IPath"/> defining the region to fill.</param>

src/ImageSharp.Drawing/Processing/Extensions/ClearRectangleExtensions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class ClearRectangleExtensions
1313
/// <summary>
1414
/// Flood fills the image in the rectangle of the provided rectangle with the specified color without any blending.
1515
/// </summary>
16-
/// <param name="source">The image this method extends.</param>
16+
/// <param name="source">The source image processing context.</param>
1717
/// <param name="color">The color.</param>
1818
/// <param name="rectangle">The rectangle defining the region to fill.</param>
1919
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@@ -23,7 +23,7 @@ public static IImageProcessingContext Clear(this IImageProcessingContext source,
2323
/// <summary>
2424
/// Flood fills the image in the rectangle of the provided rectangle with the specified color without any blending.
2525
/// </summary>
26-
/// <param name="source">The image this method extends.</param>
26+
/// <param name="source">The source image processing context.</param>
2727
/// <param name="options">The drawing options.</param>
2828
/// <param name="color">The color.</param>
2929
/// <param name="rectangle">The rectangle defining the region to fill.</param>
@@ -38,7 +38,7 @@ public static IImageProcessingContext Clear(
3838
/// <summary>
3939
/// Flood fills the image in the rectangle of the provided rectangle with the specified brush without any blending.
4040
/// </summary>
41-
/// <param name="source">The image this method extends.</param>
41+
/// <param name="source">The source image processing context.</param>
4242
/// <param name="brush">The brush.</param>
4343
/// <param name="rectangle">The rectangle defining the region to fill.</param>
4444
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@@ -51,7 +51,7 @@ public static IImageProcessingContext Clear(
5151
/// <summary>
5252
/// Flood fills the image at the given rectangle bounds with the specified brush without any blending.
5353
/// </summary>
54-
/// <param name="source">The image this method extends.</param>
54+
/// <param name="source">The source image processing context.</param>
5555
/// <param name="options">The drawing options.</param>
5656
/// <param name="brush">The brush.</param>
5757
/// <param name="rectangle">The rectangle defining the region to fill.</param>

src/ImageSharp.Drawing/Processing/Extensions/ClipPathExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static class ClipPathExtensions
1515
/// <summary>
1616
/// Applies the processing operation within the provided region defined by an <see cref="IPath"/>.
1717
/// </summary>
18-
/// <param name="source">The image processing context.</param>
18+
/// <param name="source">The source image processing context.</param>
1919
/// <param name="region">The <see cref="IPath"/> defining the region to operation within.</param>
2020
/// <param name="operation">The operation to perform.</param>
2121
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>

src/ImageSharp.Drawing/Processing/Extensions/DrawBezierExtensions.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class DrawBezierExtensions
1313
/// <summary>
1414
/// Draws the provided points as an open Bezier path with the supplied pen
1515
/// </summary>
16-
/// <param name="source">The image this method extends.</param>
16+
/// <param name="source">The source image processing context.</param>
1717
/// <param name="options">The options.</param>
1818
/// <param name="pen">The pen.</param>
1919
/// <param name="points">The points.</param>
@@ -28,7 +28,7 @@ public static IImageProcessingContext DrawBeziers(
2828
/// <summary>
2929
/// Draws the provided points as an open Bezier path with the supplied pen
3030
/// </summary>
31-
/// <param name="source">The image this method extends.</param>
31+
/// <param name="source">The source image processing context.</param>
3232
/// <param name="pen">The pen.</param>
3333
/// <param name="points">The points.</param>
3434
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@@ -41,7 +41,7 @@ public static IImageProcessingContext DrawBeziers(
4141
/// <summary>
4242
/// Draws the provided points as an open Bezier path at the provided thickness with the supplied brush
4343
/// </summary>
44-
/// <param name="source">The image this method extends.</param>
44+
/// <param name="source">The source image processing context.</param>
4545
/// <param name="options">The options.</param>
4646
/// <param name="brush">The brush.</param>
4747
/// <param name="thickness">The thickness.</param>
@@ -58,7 +58,7 @@ public static IImageProcessingContext DrawBeziers(
5858
/// <summary>
5959
/// Draws the provided points as an open Bezier path at the provided thickness with the supplied brush
6060
/// </summary>
61-
/// <param name="source">The image this method extends.</param>
61+
/// <param name="source">The source image processing context.</param>
6262
/// <param name="brush">The brush.</param>
6363
/// <param name="thickness">The thickness.</param>
6464
/// <param name="points">The points.</param>
@@ -73,7 +73,7 @@ public static IImageProcessingContext DrawBeziers(
7373
/// <summary>
7474
/// Draws the provided points as an open Bezier path at the provided thickness with the supplied brush
7575
/// </summary>
76-
/// <param name="source">The image this method extends.</param>
76+
/// <param name="source">The source image processing context.</param>
7777
/// <param name="color">The color.</param>
7878
/// <param name="thickness">The thickness.</param>
7979
/// <param name="points">The points.</param>
@@ -88,7 +88,7 @@ public static IImageProcessingContext DrawBeziers(
8888
/// <summary>
8989
/// Draws the provided points as an open Bezier path at the provided thickness with the supplied brush
9090
/// </summary>
91-
/// <param name="source">The image this method extends.</param>
91+
/// <param name="source">The source image processing context.</param>
9292
/// <param name="options">The options.</param>
9393
/// <param name="color">The color.</param>
9494
/// <param name="thickness">The thickness.</param>

src/ImageSharp.Drawing/Processing/Extensions/DrawLineExtensions.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class DrawLineExtensions
1313
/// <summary>
1414
/// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
1515
/// </summary>
16-
/// <param name="source">The image processing context.</param>
16+
/// <param name="source">The source image processing context.</param>
1717
/// <param name="options">The options.</param>
1818
/// <param name="brush">The brush.</param>
1919
/// <param name="thickness">The line thickness.</param>
@@ -30,7 +30,7 @@ public static IImageProcessingContext DrawLine(
3030
/// <summary>
3131
/// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
3232
/// </summary>
33-
/// <param name="source">The image processing context.</param>
33+
/// <param name="source">The source image processing context.</param>
3434
/// <param name="brush">The brush.</param>
3535
/// <param name="thickness">The line thickness.</param>
3636
/// <param name="points">The points.</param>
@@ -45,7 +45,7 @@ public static IImageProcessingContext DrawLine(
4545
/// <summary>
4646
/// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
4747
/// </summary>
48-
/// <param name="source">The image processing context.</param>
48+
/// <param name="source">The source image processing context.</param>
4949
/// <param name="color">The color.</param>
5050
/// <param name="thickness">The line thickness.</param>
5151
/// <param name="points">The points.</param>
@@ -60,7 +60,7 @@ public static IImageProcessingContext DrawLine(
6060
/// <summary>
6161
/// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
6262
/// </summary>
63-
/// <param name="source">The image processing context.</param>
63+
/// <param name="source">The source image processing context.</param>
6464
/// <param name="options">The options.</param>
6565
/// <param name="color">The color.</param>
6666
/// <param name="thickness">The line thickness.</param>
@@ -77,7 +77,7 @@ public static IImageProcessingContext DrawLine(
7777
/// <summary>
7878
/// Draws the provided points as an open linear path with the supplied pen.
7979
/// </summary>
80-
/// <param name="source">The image processing context.</param>
80+
/// <param name="source">The source image processing context.</param>
8181
/// <param name="options">The options.</param>
8282
/// <param name="pen">The pen.</param>
8383
/// <param name="points">The points.</param>
@@ -92,7 +92,7 @@ public static IImageProcessingContext DrawLine(
9292
/// <summary>
9393
/// Draws the provided points as an open linear path with the supplied pen.
9494
/// </summary>
95-
/// <param name="source">The image processing context.</param>
95+
/// <param name="source">The source image processing context.</param>
9696
/// <param name="pen">The pen.</param>
9797
/// <param name="points">The points.</param>
9898
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>

src/ImageSharp.Drawing/Processing/Extensions/DrawPathCollectionExtensions.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static class DrawPathCollectionExtensions
1313
/// <summary>
1414
/// Draws the outline of the polygon with the provided pen.
1515
/// </summary>
16-
/// <param name="source">The image this method extends.</param>
16+
/// <param name="source">The source image processing context.</param>
1717
/// <param name="options">The options.</param>
1818
/// <param name="pen">The pen.</param>
1919
/// <param name="paths">The paths.</param>
@@ -35,7 +35,7 @@ public static IImageProcessingContext Draw(
3535
/// <summary>
3636
/// Draws the outline of the polygon with the provided pen.
3737
/// </summary>
38-
/// <param name="source">The image this method extends.</param>
38+
/// <param name="source">The source image processing context.</param>
3939
/// <param name="pen">The pen.</param>
4040
/// <param name="paths">The paths.</param>
4141
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@@ -46,7 +46,7 @@ public static IImageProcessingContext
4646
/// <summary>
4747
/// Draws the outline of the polygon with the provided brush at the provided thickness.
4848
/// </summary>
49-
/// <param name="source">The image this method extends.</param>
49+
/// <param name="source">The source image processing context.</param>
5050
/// <param name="options">The options.</param>
5151
/// <param name="brush">The brush.</param>
5252
/// <param name="thickness">The thickness.</param>
@@ -63,7 +63,7 @@ public static IImageProcessingContext Draw(
6363
/// <summary>
6464
/// Draws the outline of the polygon with the provided brush at the provided thickness.
6565
/// </summary>
66-
/// <param name="source">The image this method extends.</param>
66+
/// <param name="source">The source image processing context.</param>
6767
/// <param name="brush">The brush.</param>
6868
/// <param name="thickness">The thickness.</param>
6969
/// <param name="paths">The paths.</param>
@@ -78,7 +78,7 @@ public static IImageProcessingContext Draw(
7878
/// <summary>
7979
/// Draws the outline of the polygon with the provided brush at the provided thickness.
8080
/// </summary>
81-
/// <param name="source">The image this method extends.</param>
81+
/// <param name="source">The source image processing context.</param>
8282
/// <param name="options">The options.</param>
8383
/// <param name="color">The color.</param>
8484
/// <param name="thickness">The thickness.</param>
@@ -95,7 +95,7 @@ public static IImageProcessingContext Draw(
9595
/// <summary>
9696
/// Draws the outline of the polygon with the provided brush at the provided thickness.
9797
/// </summary>
98-
/// <param name="source">The image this method extends.</param>
98+
/// <param name="source">The source image processing context.</param>
9999
/// <param name="color">The color.</param>
100100
/// <param name="thickness">The thickness.</param>
101101
/// <param name="paths">The paths.</param>

0 commit comments

Comments
 (0)