DoPaletteCorrection
GifOptions.DoPaletteCorrection property
获取或设置一个指示是否应用调色板校正的值。
public bool DoPaletteCorrection { get; set; }
适当的价值
真的
如果应用了调色板校正;否则,错误的
.
评论
调色板校正意味着无论何时将图像导出为 GIF,都会分析源图像颜色 以构建最佳匹配的调色板(如果图像调色板不存在或未在选项中指定)。 分析过程需要一些时间,但是输出图像将具有最佳匹配的调色板,结果在视觉上更好。
例子
此示例显示如何使用各种选项将 BMP 图像保存为 GIF 格式。
[C#]
string dir = "c:\\temp\\";
using (Aspose.Imaging.Image bmpImage = new Aspose.Imaging.FileFormats.Bmp.BmpImage(1000, 1000))
{
// 用蓝黄色渐变填充整个图像。
Aspose.Imaging.Brushes.LinearGradientBrush gradientBrush = new Aspose.Imaging.Brushes.LinearGradientBrush(
new Aspose.Imaging.Point(0, 0),
new Aspose.Imaging.Point(bmpImage.Width, bmpImage.Height),
Aspose.Imaging.Color.Blue,
Aspose.Imaging.Color.Yellow);
Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(bmpImage);
graphics.FillRectangle(gradientBrush, bmpImage.Bounds);
Aspose.Imaging.ImageOptions.GifOptions saveOptions = new Aspose.Imaging.ImageOptions.GifOptions();
// 存储颜色所需的位数,减 1。
saveOptions.ColorResolution = 7;
// 调色板校正意味着每当图像导出为 GIF 时,都会分析源图像的颜色
// 为了构建最佳匹配的调色板(如果图像调色板不存在或未在选项中指定)
saveOptions.DoPaletteCorrection = true;
// 以渐进方式加载 GIF 图片。
// 隔行扫描的 GIF 不会从上到下线性显示其扫描线,而是重新排序
// 所以 GIF 的内容在加载完成之前就变得清晰了。
saveOptions.Interlaced = true;
// 另存为无损 GIF。
using (System.IO.Stream stream = System.IO.File.OpenWrite(dir + "output.gif"))
{
bmpImage.Save(stream, saveOptions);
System.Console.WriteLine("The size of the lossless GIF: {0} bytes.", stream.Length);
}
// 设置允许的最大像素差。如果大于零,将使用有损压缩。
// 最佳有损压缩的推荐值为 80。30 是非常轻的压缩,200 是重的。
saveOptions.MaxDiff = 80;
// 另存为有损 GIF。
using (System.IO.Stream stream = System.IO.File.OpenWrite(dir + "output.lossy.gif"))
{
bmpImage.Save(stream, saveOptions);
System.Console.WriteLine("The size of the lossy GIF: {0} bytes.", stream.Length);
}
}
//输出可能如下所示:
//无损GIF的大小:212816字节。
//有损GIF的大小:89726字节。
也可以看看
- class GifOptions
- 命名空间 Aspose.Imaging.ImageOptions
- 部件 Aspose.Imaging