Browse Source

BmpEncoder uses Octree as default

pull/2269/head
James Jackson-South 4 years ago
parent
commit
ca51d414ab
  1. 6
      src/ImageSharp/Formats/Bmp/BmpEncoder.cs

6
src/ImageSharp/Formats/Bmp/BmpEncoder.cs

@ -2,7 +2,6 @@
// Licensed under the Six Labors Split License. // Licensed under the Six Labors Split License.
using SixLabors.ImageSharp.Advanced; using SixLabors.ImageSharp.Advanced;
using SixLabors.ImageSharp.Processing;
namespace SixLabors.ImageSharp.Formats.Bmp; namespace SixLabors.ImageSharp.Formats.Bmp;
@ -11,11 +10,6 @@ namespace SixLabors.ImageSharp.Formats.Bmp;
/// </summary> /// </summary>
public sealed class BmpEncoder : QuantizingImageEncoder public sealed class BmpEncoder : QuantizingImageEncoder
{ {
/// <summary>
/// Initializes a new instance of the <see cref="BmpEncoder"/> class.
/// </summary>
public BmpEncoder() => this.Quantizer = KnownQuantizers.Wu;
/// <summary> /// <summary>
/// Gets or sets the number of bits per pixel. /// Gets or sets the number of bits per pixel.
/// </summary> /// </summary>

Loading…
Cancel
Save