diff --git a/src/ImageSharp/Formats/Png/PngEncoder.cs b/src/ImageSharp/Formats/Png/PngEncoder.cs
index 595601522e..e8c88055e7 100644
--- a/src/ImageSharp/Formats/Png/PngEncoder.cs
+++ b/src/ImageSharp/Formats/Png/PngEncoder.cs
@@ -3,6 +3,7 @@
#nullable disable
using SixLabors.ImageSharp.Advanced;
+using SixLabors.ImageSharp.Processing.Processors.Quantization;
namespace SixLabors.ImageSharp.Formats.Png;
@@ -11,6 +12,16 @@ namespace SixLabors.ImageSharp.Formats.Png;
///
public class PngEncoder : QuantizingImageEncoder
{
+ ///
+ /// Initializes a new instance of the class.
+ ///
+ public PngEncoder()
+
+ // Hack. TODO: Investigate means to fix/optimize the Wu quantizer.
+ // The Wu quantizer does not handle the default sampling strategy well for some larger images.
+ // It's expensive and the results are not better than the extensive strategy.
+ => this.PixelSamplingStrategy = new ExtensivePixelSamplingStrategy();
+
///
/// Gets the number of bits per sample or per palette index (not per pixel).
/// Not all values are allowed for all values.
diff --git a/src/ImageSharp/Memory/Buffer2D{T}.cs b/src/ImageSharp/Memory/Buffer2D{T}.cs
index f4b2dfc08c..39c6e62e15 100644
--- a/src/ImageSharp/Memory/Buffer2D{T}.cs
+++ b/src/ImageSharp/Memory/Buffer2D{T}.cs
@@ -9,9 +9,6 @@ namespace SixLabors.ImageSharp.Memory;
/// Represents a buffer of value type objects
/// interpreted as a 2D region of x elements.
///
-///
-/// Before RC1, this class might be target of API changes, use it on your own risk!
-///
/// The value type.
public sealed class Buffer2D : IDisposable
where T : struct