Dither

DjvuImage.Dither method

对当前图像执行抖动。

public override void Dither(DitheringMethod ditheringMethod, int bitsCount, 
    IColorPalette customPalette)
范围类型描述
ditheringMethodDitheringMethod抖动方法。
bitsCountInt32最后的比特数用于抖动。
customPaletteIColorPalette用于抖动的自定义调色板。

例子

以下示例加载 DJVU 图像并使用不同的调色板深度执行阈值和弗洛伊德抖动。

[C#]

string dir = "c:\\temp\\";

using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(dir + "sample.djvu"))
{
    Aspose.Imaging.FileFormats.Djvu.DjvuImage dicomImage = (Aspose.Imaging.FileFormats.Djvu.DjvuImage)image;

    // 使用包含 16 种颜色的 4 位调色板执行阈值抖动。
    // 指定的位数越多,输出图像的质量越高,尺寸越大。
    // 请注意,目前仅支持 1 位、4 位和 8 位调色板。
    dicomImage.Dither(Aspose.Imaging.DitheringMethod.ThresholdDithering, 4, null);

    dicomImage.Save(dir + "sample.ThresholdDithering4.png", new Aspose.Imaging.ImageOptions.PngOptions());
}

using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(dir + "sample.djvu"))
{
    Aspose.Imaging.FileFormats.Djvu.DjvuImage dicomImage = (Aspose.Imaging.FileFormats.Djvu.DjvuImage)image;

    // 使用仅包含 2 种颜色(黑色和白色)的 1 位调色板执行弗洛伊德抖动。
    // 指定的位数越多,输出图像的质量越高,尺寸越大。
    // 请注意,目前仅支持 1 位、4 位和 8 位调色板。
    dicomImage.Dither(Aspose.Imaging.DitheringMethod.FloydSteinbergDithering, 1, null);

    dicomImage.Save(dir + "sample.FloydSteinbergDithering1.png", new Aspose.Imaging.ImageOptions.PngOptions());
}

也可以看看