-
-
Notifications
You must be signed in to change notification settings - Fork 888
Closed
Labels
Milestone
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
When using the the PNG Encoder / Decoder, I've run a test Gray16 image with a pixel value of 2017 in the top left corner. This incorrectly decodes as 2056.
Steps to Reproduce
using var memoryStream = new MemoryStream();
{
var width = 2;
var height = 2;
var data = new ushort[width * height];
data[0] = 2017;
var image = Image.LoadPixelData<Gray16>(MemoryMarshal.Cast<ushort, byte>(data.AsSpan()), width, height);
Console.WriteLine($"image[0] = {image.GetPixelSpan()[0]}");
IImageEncoder encoder = new PngEncoder();
encoder.Encode(image, memoryStream);
memoryStream.Flush();
}
memoryStream.Seek(0, SeekOrigin.Begin);
{
var imageLoaded = Image.Load<Gray16>(memoryStream);
Console.WriteLine($"image[0] = {imageLoaded.GetPixelSpan()[0]}");
}Prints:
image[0] = Gray16(2017)
image[0] = Gray16(2056)
System Configuration
MacBook Pro
- ImageSharp version: 1.0.0-beta0007
- Other ImageSharp packages and versions: N/A
- Environment (Operating system, version and so on): macOS 10.14.6
- .NET Framework version: Core 3.0
JimBobSquarePants