c#中将bitmap或者image保存为清晰的gif
在c#中默认可以讲bitmap保存为gif等格式,但是这种保存方法保存的gif会严重失真
正常情况下的代码:
1 System.Drawing.Bitmap b = new System.Drawing.Bitmap(“c:\\original_image.gif“);
2 System.Drawing.Image thmbnail = b.GetThumbnailImage(100,75,null,new IntPtr());
2 System.Drawing.Image thmbnail = b.GetThumbnailImage(100,75,null,new IntPtr());
3 thmbnail.Save(“c:\\thumnail.gif“, System.Drawing.Imaging.ImageFormat.Gif);
今天准备开始写一个批量处理图片的软件,包括各种处理方式,处理效果,但是在保存为gif的时候出现了问题,在网上查了很久
也没有发现一个可用的改善gif图片质量的方法,很多人都在问这个问题,但是很少人回答正确,但是功夫不负有心人,今天晚上
我终于找到了一个解决办法,保存出来的gif容量大减,但是效果基本符合常规
这中方法就是就是“Octree“ 算法。“Octree“ 算法允许我们插入自己的算法来量子化我们的图像。
一个好的“颜色量子化”
使用OctreeQuantizer很方便:
1 System.Drawing.Bitmap b = new System.Drawing.Bitmap(“c:\\original_image.gif“);
2 System.Drawing.Image thmbnail = b.GetThumbnailImage(100,75,null,new IntPtr());
3 OctreeQuantizer quantizer = new OctreeQuantizer ( 255 , 8 ) ;
4 using ( Bitmap quantized = quantizer.Quantize ( thmbnail ) )
5 {
6 quantized.Save(“c:\\thumnail.gif“, System.Drawing.Imaging.ImageFormat.Gif);
7 }
8 OctreeQuantizer grayquantizer = new GrayscaleQuantizer ( ) ;
9 using ( Bitmap quantized = grayquantizer.Quantize ( thmbnail ) )
10 {
11 quantized.Save(“c:\\thumnail.gif“, System.Drawing.Imaging.ImageFormat.Gif);
2 System.Drawing.Image thmbnail = b.GetThumbnailImage(100,75,null,new IntPtr());
3 OctreeQuantizer quantizer = new OctreeQuantizer ( 255 , 8 ) ;
4 using ( Bitmap quantized = quantizer.Quantize ( thmbnail ) )
5 {
6 quantized.Save(“c:\\thumnail.gif“, System.Drawing.Imaging.ImageFormat.Gif);
7 }
8 OctreeQuantizer grayquantizer = new GrayscaleQuantizer ( ) ;
9 using ( Bitmap quantized = grayquantizer.Quantize ( thmbnail ) )
10 {
11 quantized.Save(“c:\\thumnail.gif“, System.Drawing.Imaging.ImageFormat.Gif);
12 }
你可以点击这里下载类的文件(项目文件),根据我的试用,只需要两个类文件(OctreeQuantizer.cs,Quantizer.cs)即可运行,将这两个类文件的namespace改成
你项目的名称就行,还有,需要在不安全编译的方式下编译,右击项目名称,在生成选项卡里选择"允许不安全代码"即可