使用NQUANT量化图像时的误差

时间:2019-01-17 05:57:21

标签: c# nuget quantization

我最近获得了NuGet软件包Nquant

我计划使用它来减小位图的文件大小并将其保存到PNG中。但是我得到这个错误:

  

您要量化的图像不包含32位ARGB调色板。该图像的位深度为8,具有256种颜色。

这里有人使用过Nquant吗?您是否遇到了此错误,以及如何解决?

我的代码供您参考:

var bitmap = new Bitmap(width, jbgsize / height, PixelFormat.Format8bppIndexed);
        ColorPalette pal = bitmap.Palette;
        for (int i = 0; i <= 255; i++)
        {
            // create greyscale color table
            pal.Entries[i] = Color.FromArgb(i, i, i);
        }
        bitmap.Palette = pal; // you need to re-set this property to force the new ColorPalette

        var bitmap_data = bitmap.LockBits(new Rectangle(0, 0, bitmap.Width, bitmap.Height), ImageLockMode.WriteOnly, PixelFormat.Format8bppIndexed);
        Marshal.Copy(output, 0, bitmap_data.Scan0, output.Length);
        bitmap.UnlockBits(bitmap_data);
        MemoryStream stream = new MemoryStream();
var quantizer = new WuQuantizer();
        using(var bmp = new Bitmap(bitmap))
        {
            using (var quantized = quantizer.QuantizeImage(bitmap))
            {
                quantized.Save(stream, ImageFormat.Png);
            }
        }

        byteArray = stream.ToArray();
        return byteArray.Concat(output).ToArray();

1 个答案:

答案 0 :(得分:1)

您可以将图像转换为Format32bppPArgb,然后对其进行量化。

这是我的示例,可将图像尺寸减小约3倍。

public static byte[] CompressImageStream(byte[] imageStream)
{
    using (var ms = new MemoryStream(imageStream))
    using (var original = new Bitmap(ms))
    using (var clonedWith32PixelsFormat = new Bitmap(
        original.Width,
        original.Height,
        PixelFormat.Format32bppPArgb))
    {
        using (Graphics gr = Graphics.FromImage(clonedWith32PixelsFormat))
        {
            gr.DrawImage(
                original,
                new Rectangle(0, 0, clonedWith32PixelsFormat.Width, clonedWith32PixelsFormat.Height));
        }

        using (Image compressedImage = new WuQuantizer().QuantizeImage(clonedWith32PixelsFormat))
        {
            return ImageToByteArray(compressedImage);
        }
    }
}

public static byte[] ImageToByteArray(Image image)
{
    if (image == null)
    {
        throw new ArgumentNullException(nameof(image));
    }

    using (var stream = new MemoryStream())
    {
        image.Save(stream, ImageFormat.Png);
        return stream.ToArray();
    }
}