当前位置:首页>>网络编程>>ASP.net>>正文

.Net中使用GDI+提高gif图片画质的代码

文章出处:设计前沿收集 作者:未知 发布时间:2007-10-09 浏览次数:34

  在.net中使用GDI+来提高gif图片画质,这就是“Octree” 算法。“Octree”算法允许我们插入自己的算法来量子化我们的图像。

  使用octreequantizer很方便:

system.drawing.bitmap b = new System.Drawing.Bitmap(“c:\original_image.gif“);
  System.Drawing.Image thmbnail = b.GetThumbnailImage(100,75,null,new IntPtr());
  OctreeQuantizer quantizer = new OctreeQuantizer ( 255 , 8 ) ;
  using ( Bitmap quantized = quantizer.Quantize ( thmbnail ) )
  {
  quantized.Save(“c:\thumnail.gif“, System.Drawing.Imaging.ImageFormat.Gif);
  }
  octreequantizer grayquantizer = new GrayscaleQuantizer ( ) ;
  using ( Bitmap quantized = grayquantizer.Quantize ( thmbnail ) )
  {
  quantized.Save(“c:\thumnail.gif“, System.Drawing.Imaging.ImageFormat.Gif);
  }

  主要代码就这么多,是不是很简单呢?

Google