diff --git a/src/ImageSharp/Formats/Gif/GifEncoderCore.cs b/src/ImageSharp/Formats/Gif/GifEncoderCore.cs index 1b25fd1f1..c257a24ed 100644 --- a/src/ImageSharp/Formats/Gif/GifEncoderCore.cs +++ b/src/ImageSharp/Formats/Gif/GifEncoderCore.cs @@ -98,9 +98,7 @@ namespace SixLabors.ImageSharp.Formats.Gif this.hasFrames = image.Frames.Count > 1; - // Dithering when animating gifs is a bad idea as we introduce pixel tearing across frames. var ditheredQuantizer = (IQuantizer)this.quantizer; - ditheredQuantizer.Dither = !this.hasFrames; // Quantize the image returning a palette. QuantizedImage quantized = ditheredQuantizer.Quantize(image.Frames.RootFrame, size);