diff --git a/readme.md b/readme.md index 54502daf..70512d48 100644 --- a/readme.md +++ b/readme.md @@ -206,7 +206,6 @@ Sample Images: |----------------|-------------|------------|------------|---------|-----------|-----------| |System.Drawing|MagicScaler|ImageSharp|MagickNET|NetVips|FreeImage|SkiaSharp| -  The color difference between these should be obvious. Compared to the [original image](https://github.com/bleroy/core-imaging-playground/blob/master/images/IMG_2525.jpg), it's easy to see which are correct (unless your browser is busted). @@ -221,7 +220,6 @@ Sample Images: |----------------|-------------|------------|------------|---------|-----------|-----------| |System.Drawing|MagicScaler|ImageSharp|MagickNET|NetVips|FreeImage|SkiaSharp| -  In addition to keeping the correct colors, MagicScaler does markedly better at preserving image highlights because of the linear light blending. Notice the highlights on the flowers are a better representation of those in the [original image](https://github.com/bleroy/core-imaging-playground/blob/master/images/IMG_2301.jpg) @@ -236,7 +234,6 @@ Sample Images: |----------------|-------------|------------|------------|---------|-----------|-----------| |System.Drawing|MagicScaler|ImageSharp|MagickNET|NetVips|FreeImage|SkiaSharp| -  FreeImage and SkiaSharp have particularly poor image quality in this test, with output substantially more blurry than the others. @@ -255,7 +252,6 @@ Sample Images: |----------------|-------------|------------|------------|---------|-----------|-----------| |System.Drawing|MagicScaler|ImageSharp|MagickNET|NetVips|FreeImage|SkiaSharp| -  The linear light blending combined with the sharpening work to preserve more details from this [original image](https://github.com/bleroy/core-imaging-playground/blob/master/images/sample.jpg) than the other libraries do. Again, some details are mangled by the poor JPEG settings, so MagicScaler's default settings would do even better. diff --git a/src/MagicScaler/Magic/HybridScaleTransform.cs b/src/MagicScaler/Magic/HybridScaleTransform.cs index cea6b710..96cb4099 100644 --- a/src/MagicScaler/Magic/HybridScaleTransform.cs +++ b/src/MagicScaler/Magic/HybridScaleTransform.cs @@ -368,7 +368,6 @@ public void Dispose() return; ArrayPool.Shared.Return(lineBuff); - lineBuff = null!; }