Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace SixLabors.ImageSharp.Processing
public static class FilterExtensions
{
/// <summary>
/// Filters an image but the given color matrix
/// Filters an image by the given color matrix
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="matrix">The filter color matrix</param>
Expand All @@ -21,7 +21,7 @@ public static IImageProcessingContext Filter(this IImageProcessingContext source
=> source.ApplyProcessor(new FilterProcessor(matrix));

/// <summary>
/// Filters an image but the given color matrix
/// Filters an image by the given color matrix
/// </summary>
/// <param name="source">The image this method extends.</param>
/// <param name="matrix">The filter color matrix</param>
Expand All @@ -32,4 +32,4 @@ public static IImageProcessingContext Filter(this IImageProcessingContext source
public static IImageProcessingContext Filter(this IImageProcessingContext source, ColorMatrix matrix, Rectangle rectangle)
=> source.ApplyProcessor(new FilterProcessor(matrix), rectangle);
}
}
}