博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
无法从带有索引像素格式的图像创建graphics对象(转)
阅读量:5992 次
发布时间:2019-06-20

本文共 1552 字,大约阅读时间需要 5 分钟。

大家在用 .NET 做图片水印功能的时候, 很可能会遇到 “无法从带有索引像素格式的图像创建graphics对象”这个错误,对应的英文错误提示是“A Graphics object cannot be created from an image that has an indexed pixel format"

这个exception是出现在 System.Drawing.Graphics g = System.Drawing.Graphics.FromImage("图片路径")  

为了避免此问题的发生,我们在做水印之前,可以先判断原图片是否是索引像素格式的,如果是,则可以采用将此图片先clone到一张BMP上的方法来解决:/// /// 会产生graphics异常的PixelFormat/// private static PixelFormat[] indexedPixelFormats = { PixelFormat.Undefined, PixelFormat.DontCare,PixelFormat.Format16bppArgb1555, PixelFormat.Format1bppIndexed, PixelFormat.Format4bppIndexed,PixelFormat.Format8bppIndexed    };/// /// 判断图片的PixelFormat 是否在 引发异常的 PixelFormat 之中/// /// 原图片的PixelFormat/// 
private static bool IsPixelFormatIndexed(PixelFormat imgPixelFormat){ foreach (PixelFormat pf in indexedPixelFormats) { if (pf.Equals(imgPixelFormat)) return true; } return false;}//.........使用using (Image img = Image.FromFile("原图片路径")){ //如果原图片是索引像素格式之列的,则需要转换 if (IsPixelFormatIndexed(img.PixelFormat)) { Bitmap bmp = new Bitmap(img.Width, img.Height, PixelFormat.Format32bppArgb); using (Graphics g = Graphics.FromImage(bmp)) { g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic; g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality; g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality; g.DrawImage(img, 0, 0); } //下面的水印操作,就直接对 bmp 进行了 //...... } else //否则直接操作 { //直接对img进行水印操作 }}

 

转载地址:http://ubtlx.baihongyu.com/

你可能感兴趣的文章
mongodb索引
查看>>
《失业的程序员》(六):加班
查看>>
nginx一个端口配置多个不同服务映射
查看>>
安装jupyter后,使用时显示找不到命令(command not found)
查看>>
《食堂远程下单系统》需求规格说明书
查看>>
find
查看>>
5.30 Tree Traversal + Tree manipulation
查看>>
关于UIView的userInteractionEnabled属性
查看>>
MyPython-->进阶篇-->异常
查看>>
制定备份策略的指导方向思考
查看>>
HDU 3410 Passing the Message
查看>>
POJ 3420 Quad Tiling
查看>>
CodeForces 703C Chris and Road
查看>>
init();
查看>>
CSS3 3D的总结(初学者易懂)
查看>>
基于人脸识别的商业大数据13
查看>>
kafka和storm集群的环境安装
查看>>
ajax方式下载文件
查看>>
BZOJ 2820 莫比乌斯反演
查看>>
0616考试
查看>>