Prerequisites
ImageSharp version
3.1.2
Other ImageSharp packages and versions
3.0.2
Environment (Operating system, version and so on)
Windows VS 17.8.7
.NET Framework version
NET7, NET8
Description
After Resize and image to create a Thumbnail the result image is being created with a black or green or gray background.
using SixLabors.ImageSharp.Image image = SixLabors.ImageSharp.Image.Load(Bytes);
var imageResized = new MemoryStream();
image.Mutate(x => x.Resize(dimensions.Width, dimensions.Height));
image.Save(imageResized, image.Metadata.DecodedImageFormat);
Steps to Reproduce
Using the version 3.0.2 the thumbnail es created at the same of the original png image. After upgrading to 3.1.2 a background is in the result image.
Images


Prerequisites
DEBUGandRELEASEmodeImageSharp version
3.1.2
Other ImageSharp packages and versions
3.0.2
Environment (Operating system, version and so on)
Windows VS 17.8.7
.NET Framework version
NET7, NET8
Description
After Resize and image to create a Thumbnail the result image is being created with a black or green or gray background.
Steps to Reproduce
Using the version 3.0.2 the thumbnail es created at the same of the original png image. After upgrading to 3.1.2 a background is in the result image.
Images