Merge pull request #283 from SixLabors/js/fix-xml

Normalize XML comments.
This commit is contained in:
James Jackson-South 2023-08-14 20:46:19 +10:00 коммит произвёл GitHub
Родитель b059f31421 0d840b6b4a
Коммит f7f0f4dcad
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
19 изменённых файлов: 91 добавлений и 91 удалений

Просмотреть файл

@ -14,7 +14,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
private const string DrawingTransformMatrixKey = "DrawingTransformMatrix3x2";
/// <summary>
/// Gets the default shape processing options against the image processing context.
/// Gets the default shape processing options against The source image processing context.
/// </summary>
/// <param name="context">The image processing context to retrieve defaults from.</param>
/// <returns>The globally configured default options.</returns>

Просмотреть файл

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image with the specified color without any blending.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
public static IImageProcessingContext Clear(this IImageProcessingContext source, Color color)
@ -22,7 +22,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image with the specified color without any blending.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="color">The color.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -32,7 +32,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image with the specified brush without any blending.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
public static IImageProcessingContext Clear(this IImageProcessingContext source, Brush brush) =>
@ -41,7 +41,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image with the specified brush without any blending.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="brush">The brush.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>

Просмотреть файл

@ -14,7 +14,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// Flood fills the image within the provided region defined by an <see cref="IPath"/> using the specified
/// color without any blending.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="region">The <see cref="IPath"/> defining the region to fill.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -28,7 +28,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// Flood fills the image within the provided region defined by an <see cref="IPath"/> using the specified color
/// without any blending.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="color">The color.</param>
/// <param name="region">The <see cref="IPath"/> defining the region to fill.</param>
@ -44,7 +44,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// Flood fills the image within the provided region defined by an <see cref="IPath"/> using the specified brush
/// without any blending.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="region">The <see cref="IPath"/> defining the region to fill.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -58,7 +58,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// Flood fills the image within the provided region defined by an <see cref="IPath"/> using the specified brush
/// without any blending.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="brush">The brush.</param>
/// <param name="region">The <see cref="IPath"/> defining the region to fill.</param>

Просмотреть файл

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the rectangle of the provided rectangle with the specified color without any blending.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="rectangle">The rectangle defining the region to fill.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -23,7 +23,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the rectangle of the provided rectangle with the specified color without any blending.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="color">The color.</param>
/// <param name="rectangle">The rectangle defining the region to fill.</param>
@ -38,7 +38,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the rectangle of the provided rectangle with the specified brush without any blending.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="rectangle">The rectangle defining the region to fill.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -51,7 +51,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image at the given rectangle bounds with the specified brush without any blending.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="brush">The brush.</param>
/// <param name="rectangle">The rectangle defining the region to fill.</param>

Просмотреть файл

@ -15,7 +15,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Applies the processing operation within the provided region defined by an <see cref="IPath"/>.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="region">The <see cref="IPath"/> defining the region to operation within.</param>
/// <param name="operation">The operation to perform.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>

Просмотреть файл

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open Bezier path with the supplied pen
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="pen">The pen.</param>
/// <param name="points">The points.</param>
@ -28,7 +28,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open Bezier path with the supplied pen
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="pen">The pen.</param>
/// <param name="points">The points.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -41,7 +41,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open Bezier path at the provided thickness with the supplied brush
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The thickness.</param>
@ -58,7 +58,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open Bezier path at the provided thickness with the supplied brush
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The thickness.</param>
/// <param name="points">The points.</param>
@ -73,7 +73,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open Bezier path at the provided thickness with the supplied brush
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The thickness.</param>
/// <param name="points">The points.</param>
@ -88,7 +88,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open Bezier path at the provided thickness with the supplied brush
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The thickness.</param>

Просмотреть файл

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The line thickness.</param>
@ -30,7 +30,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The line thickness.</param>
/// <param name="points">The points.</param>
@ -45,7 +45,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The line thickness.</param>
/// <param name="points">The points.</param>
@ -60,7 +60,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open linear path at the provided thickness with the supplied brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The line thickness.</param>
@ -77,7 +77,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open linear path with the supplied pen.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="pen">The pen.</param>
/// <param name="points">The points.</param>
@ -92,7 +92,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as an open linear path with the supplied pen.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="pen">The pen.</param>
/// <param name="points">The points.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>

Просмотреть файл

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided pen.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="pen">The pen.</param>
/// <param name="paths">The paths.</param>
@ -35,7 +35,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided pen.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="pen">The pen.</param>
/// <param name="paths">The paths.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -46,7 +46,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The thickness.</param>
@ -63,7 +63,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The thickness.</param>
/// <param name="paths">The paths.</param>
@ -78,7 +78,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The thickness.</param>
@ -95,7 +95,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The thickness.</param>
/// <param name="paths">The paths.</param>

Просмотреть файл

@ -14,7 +14,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided pen.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="pen">The pen.</param>
/// <param name="path">The path.</param>
@ -29,7 +29,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided pen.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="pen">The pen.</param>
/// <param name="path">The path.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -39,7 +39,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The thickness.</param>
@ -56,7 +56,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The thickness.</param>
/// <param name="path">The path.</param>
@ -71,7 +71,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The thickness.</param>
@ -88,7 +88,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The thickness.</param>
/// <param name="path">The path.</param>

Просмотреть файл

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as a closed linear polygon with the provided pen.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="pen">The pen.</param>
/// <param name="points">The points.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -26,7 +26,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as a closed linear polygon with the provided pen.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="pen">The pen.</param>
/// <param name="points">The points.</param>
@ -41,7 +41,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as a closed linear polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The thickness.</param>
@ -58,7 +58,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as a closed linear polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The thickness.</param>
/// <param name="points">The points.</param>
@ -73,7 +73,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as a closed linear polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The thickness.</param>
/// <param name="points">The points.</param>
@ -88,7 +88,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the provided points as a closed linear polygon with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The thickness.</param>

Просмотреть файл

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the rectangle with the provided pen.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="pen">The pen.</param>
/// <param name="shape">The shape.</param>
@ -28,7 +28,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the rectangle with the provided pen.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="pen">The pen.</param>
/// <param name="shape">The shape.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -38,7 +38,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the rectangle with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The thickness.</param>
@ -55,7 +55,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the rectangle with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="thickness">The thickness.</param>
/// <param name="shape">The shape.</param>
@ -70,7 +70,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the rectangle with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The thickness.</param>
@ -87,7 +87,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the outline of the rectangle with the provided brush at the provided thickness.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="thickness">The thickness.</param>
/// <param name="shape">The shape.</param>

Просмотреть файл

@ -15,7 +15,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text onto the image filled with the given color.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="text">The text to draw.</param>
/// <param name="font">The font.</param>
/// <param name="color">The color.</param>
@ -32,7 +32,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text using the supplied drawing options onto the image filled with the given color.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="drawingOptions">The drawing options.</param>
/// <param name="text">The text to draw.</param>
/// <param name="font">The font.</param>
@ -51,7 +51,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text using the supplied text options onto the image filled via the brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="textOptions">The text rendering options.</param>
/// <param name="text">The text to draw.</param>
/// <param name="color">The color.</param>
@ -66,7 +66,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text onto the image filled via the brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="text">The text to draw.</param>
/// <param name="font">The font.</param>
/// <param name="brush">The brush used to fill the text.</param>
@ -83,7 +83,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text onto the image outlined via the pen.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="text">The text to draw.</param>
/// <param name="font">The font.</param>
/// <param name="pen">The pen used to outline the text.</param>
@ -100,7 +100,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text onto the image filled via the brush then outlined via the pen.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="text">The text to draw.</param>
/// <param name="font">The font.</param>
/// <param name="brush">The brush used to fill the text.</param>
@ -122,7 +122,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text using the given options onto the image filled via the brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="textOptions">The text rendering options.</param>
/// <param name="text">The text to draw.</param>
/// <param name="brush">The brush used to fill the text.</param>
@ -137,7 +137,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text using the given options onto the image outlined via the pen.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="textOptions">The text rendering options.</param>
/// <param name="text">The text to draw.</param>
/// <param name="pen">The pen used to outline the text.</param>
@ -152,7 +152,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text using the given options onto the image filled via the brush then outlined via the pen.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="textOptions">The text rendering options.</param>
/// <param name="text">The text to draw.</param>
/// <param name="brush">The brush used to fill the text.</param>
@ -169,7 +169,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text onto the image outlined via the pen.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="drawingOptions">The drawing options.</param>
/// <param name="text">The text to draw.</param>
/// <param name="font">The font.</param>
@ -188,7 +188,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text onto the image filled via the brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="drawingOptions">The drawing options.</param>
/// <param name="text">The text to draw.</param>
/// <param name="font">The font.</param>
@ -207,7 +207,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text using the given drawing options onto the image filled via the brush then outlined via the pen.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="drawingOptions">The drawing options.</param>
/// <param name="text">The text to draw.</param>
/// <param name="font">The font.</param>
@ -231,7 +231,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Draws the text using the given options onto the image filled via the brush then outlined via the pen.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="drawingOptions">The drawing options.</param>
/// <param name="textOptions">The text rendering options.</param>
/// <param name="text">The text to draw.</param>

Просмотреть файл

@ -14,7 +14,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image with the specified color.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
public static IImageProcessingContext Fill(this IImageProcessingContext source, Color color)
@ -23,7 +23,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image with the specified color.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="color">The color.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -33,7 +33,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image with the specified brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
public static IImageProcessingContext Fill(this IImageProcessingContext source, Brush brush)
@ -42,7 +42,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image with the specified brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="brush">The brush.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>

Просмотреть файл

@ -15,7 +15,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// Flood fills the image within the provided region defined by an <see cref="PathBuilder"/> method
/// using the specified color.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="region">The <see cref="PathBuilder"/> method defining the region to fill.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -29,7 +29,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// Flood fills the image within the provided region defined by an <see cref="PathBuilder"/> method
/// using the specified color.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="color">The color.</param>
/// <param name="region">The <see cref="PathBuilder"/> method defining the region to fill.</param>
@ -45,7 +45,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// Flood fills the image within the provided region defined by an <see cref="PathBuilder"/> method
/// using the specified brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="region">The <see cref="PathBuilder"/> method defining the region to fill.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -59,7 +59,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// Flood fills the image within the provided region defined by an <see cref="PathBuilder"/> method
/// using the specified brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The graphics options.</param>
/// <param name="brush">The brush.</param>
/// <param name="region">The <see cref="PathBuilder"/> method defining the region to fill.</param>

Просмотреть файл

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided polygon with the specified brush.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The graphics options.</param>
/// <param name="brush">The brush.</param>
/// <param name="paths">The shapes.</param>
@ -35,7 +35,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided polygon with the specified brush.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="paths">The paths.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -48,7 +48,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided polygon with the specified brush.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="color">The color.</param>
/// <param name="paths">The paths.</param>
@ -63,7 +63,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided polygon with the specified brush.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="paths">The paths.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>

Просмотреть файл

@ -14,7 +14,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided polygon with the specified brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="path">The logic path.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -27,7 +27,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided polygon with the specified brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="color">The color.</param>
/// <param name="path">The logic path.</param>
@ -42,7 +42,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided polygon with the specified brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="path">The logic path.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -55,7 +55,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided polygon with the specified brush.
/// </summary>
/// <param name="source">The image processing context.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The drawing options.</param>
/// <param name="brush">The brush.</param>
/// <param name="path">The shape.</param>

Просмотреть файл

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of a linear polygon described by the points
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="brush">The brush.</param>
/// <param name="points">The points.</param>
@ -28,7 +28,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of a linear polygon described by the points
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="points">The points.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -41,7 +41,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of a linear polygon described by the points
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="color">The color.</param>
/// <param name="points">The points.</param>
@ -56,7 +56,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of a linear polygon described by the points
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="points">The points.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>

Просмотреть файл

@ -13,7 +13,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided rectangle with the specified brush.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="brush">The brush.</param>
/// <param name="shape">The shape.</param>
@ -28,7 +28,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided rectangle with the specified brush.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="brush">The brush.</param>
/// <param name="shape">The shape.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
@ -39,7 +39,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided rectangle with the specified brush.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="options">The options.</param>
/// <param name="color">The color.</param>
/// <param name="shape">The shape.</param>
@ -54,7 +54,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
/// <summary>
/// Flood fills the image in the shape of the provided rectangle with the specified brush.
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="source">The source image processing context.</param>
/// <param name="color">The color.</param>
/// <param name="shape">The shape.</param>
/// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>

Просмотреть файл

@ -12,7 +12,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
public static class ShapeGraphicOptionsDefaultsExtensions
{
/// <summary>
/// Sets the default shape processing options against the image processing context.
/// Sets the default shape processing options against The source image processing context.
/// </summary>
/// <param name="context">The image processing context to store default against.</param>
/// <param name="optionsBuilder">The action to update instance of the default options used.</param>
@ -38,7 +38,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
}
/// <summary>
/// Sets the default shape processing options against the image processing context.
/// Sets the default shape processing options against The source image processing context.
/// </summary>
/// <param name="context">The image processing context to store default against.</param>
/// <param name="options">The default options to use.</param>
@ -58,7 +58,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
=> configuration.Properties[typeof(ShapeOptions)] = options;
/// <summary>
/// Gets the default shape processing options against the image processing context.
/// Gets the default shape processing options against The source image processing context.
/// </summary>
/// <param name="context">The image processing context to retrieve defaults from.</param>
/// <returns>The globally configured default options.</returns>
@ -77,7 +77,7 @@ namespace SixLabors.ImageSharp.Drawing.Processing
}
/// <summary>
/// Gets the default shape processing options against the image processing context.
/// Gets the default shape processing options against The source image processing context.
/// </summary>
/// <param name="configuration">The configuration to retrieve defaults from.</param>
/// <returns>The globally configured default options.</returns>