摘要: 这个主要是因为图片的模式问题:RGB模式下的图片在ie6、7、8、9下都是正常的,但是CMYK模式的图片只在ie9下是正常的解决方法:在上传图片的时候对图片的模式进行判断并且把CMYG模式的图片转换为RGB模式判断:Bitmap bmp = new Bitmap(allow_fileStream); //文件路径 allowUpload = stringHelper.IsCMYK(bmp) == "true" ? false : true; //返回true字符串则图片不是RGB模式的 public string IsCMYK(System.Drawing.Image im 阅读全文
posted @ 2014-03-24 10:42 天殇月痕 阅读(334) 评论(0) 推荐(0) 编辑