Browse Source

Use Octree for Png for dithering

pull/106/head
James Jackson-South 9 years ago
parent
commit
e3035f6839
  1. 2
      src/ImageSharp.Formats.Png/PngEncoderCore.cs

2
src/ImageSharp.Formats.Png/PngEncoderCore.cs

@ -495,7 +495,7 @@ namespace ImageSharp.Formats
if (this.Quantizer == null)
{
this.Quantizer = new WuQuantizer<TColor>();
this.Quantizer = new OctreeQuantizer<TColor>();
}
// Quantize the image returning a palette. This boxing is icky.

Loading…
Cancel
Save