From 1bd4704c4e4c96a73e466dce18b905d4e29bb00e Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Thu, 20 Feb 2020 10:57:31 +1100 Subject: [PATCH] Update DitherExtensions.cs --- .../Processing/Extensions/Dithering/DitherExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImageSharp/Processing/Extensions/Dithering/DitherExtensions.cs b/src/ImageSharp/Processing/Extensions/Dithering/DitherExtensions.cs index e765ea9b0..a04aa0df8 100644 --- a/src/ImageSharp/Processing/Extensions/Dithering/DitherExtensions.cs +++ b/src/ImageSharp/Processing/Extensions/Dithering/DitherExtensions.cs @@ -73,7 +73,7 @@ namespace SixLabors.ImageSharp.Processing source.ApplyProcessor(new PaletteDitherProcessor(dither, ditherScale, palette)); /// - /// Dithers the image reducing it to a web-safe palette using . + /// Dithers the image reducing it to a web-safe palette using . /// /// The image this method extends. /// @@ -81,7 +81,7 @@ namespace SixLabors.ImageSharp.Processing /// /// The to allow chaining of operations. public static IImageProcessingContext Dither(this IImageProcessingContext source, Rectangle rectangle) => - Dither(source, KnownDitherings.Bayer4x4, rectangle); + Dither(source, KnownDitherings.Bayer8x8, rectangle); /// /// Dithers the image reducing it to a web-safe palette using ordered dithering.