-
-
Notifications
You must be signed in to change notification settings - Fork 888
Closed
Description
Prerequisites
- I have written a descriptive issue title
- I have verified that I am running the latest version of ImageSharp
- I have verified if the problem exist in both
DEBUGandRELEASEmode - I have searched open and closed issues to ensure it has not already been reported
Description
Downsizing a large image can cause oddly sampled pixels in the top rows of pixels (I only noticed it in the top rows at least).
I tested multiple samplers. All of them displayed similar results.
Steps to Reproduce
using (var image = Image.Load(flowersJpg))
{
image.Mutate(i => i.Resize(new ResizeOptions
{
Size = new Size(300, 300),
Mode = ResizeMode.Crop
}));
image.SaveAsJpeg(outputStream);
}
System Configuration
- ImageSharp version: 1.0.0-beta0007
- Other ImageSharp packages and versions:
- Environment (Operating system, version and so on): Windows 10 (1903)
- .NET Framework version: 4.7.1
- Additional information:
Source Image
Example results
antonfirsov, JimBobSquarePants and nookiepl


