diff --git a/src/ImageSharp/ImageFrame{TPixel}.cs b/src/ImageSharp/ImageFrame{TPixel}.cs index f1fff473e..0caacd8a8 100644 --- a/src/ImageSharp/ImageFrame{TPixel}.cs +++ b/src/ImageSharp/ImageFrame{TPixel}.cs @@ -87,13 +87,8 @@ namespace SixLabors.ImageSharp this.configuration = configuration; this.MemoryManager = configuration.MemoryManager; this.PixelBuffer = this.MemoryManager.Allocate2D(width, height, false); - - if (!default(TPixel).Equals(backgroundColor)) - { - this.Clear(configuration.ParallelOptions, backgroundColor); - } - this.MetaData = metaData; + this.Clear(configuration.ParallelOptions, backgroundColor); } ///