System.Drawing.Image.Save(Savepath),保存为jpg格式,参数错误,文件0kb解决办法
问题场景:asp.net给图片添加文字水印保存为jpg格式时出现标题所描述错误(图片为.jpg格式);
简单验证:用本机的画图程序打开,然后保存为jpg格式会出现警告框“画图程序不能存储该文件,保存被中断 所以文件未被保存“
解决代码:
try
{
using (System.Drawing.Image image = System.Drawing.Image.FromFile(@"D:\WWW\test\DownLoad\企业毕业证书.jpg"))
{
#region 解决方案一,移除属性,可以保存为jpeg格式图片
System.Drawing.Imaging.PropertyItem[] pi = image.PropertyItems;
foreach (System.Drawing.Imaging.PropertyItem p in pi)
{
image.RemovePropertyItem(p.Id);
}
#endregion
Response.Write("1" + "\r\n");
//新建一个画板
System.Drawing.Graphics graphic = System.Drawing.Graphics.FromImage(image);
Response.Write("2" + "\r\n");
graphic.DrawImage(image, 0, 0, image.Width, image.Height);
Response.Write("3" + "\r\n");
//设置字体
System.Drawing.Font f = new System.Drawing.Font("宋体", 12);
Response.Write("4" + "\r\n");
//设置字体颜色
System.Drawing.Brush b = new System.Drawing.SolidBrush(System.Drawing.Color.Black);
Response.Write("5" + "\r\n");
graphic.DrawString("2", f, b, 729, 326);
Response.Write("6" + "\r\n");
graphic.DrawString("2013", f, b, 1083, 1325);
graphic.DrawString("12", f, b, 1375, 1325);
graphic.DrawString("2", f, b, 1842, 1325);
graphic.DrawString("99", f, b, 2676, 1325);
graphic.DrawString("13", f, b, 656, 326);
graphic.DrawString("12", f, b, 1083, 1485);
graphic.DrawString("12", f, b, 1375, 1485);
graphic.DrawString("1", f, b, 1928, 1485);
graphic.DrawString("1", f, b, 2735, 1485);
graphic.DrawString("2013", f, b, 2494, 1837);
graphic.DrawString("12", f, b, 2673, 1837);
graphic.DrawString("31", f, b, 2790, 1837);
Response.Write("7" + "\r\n");
//设置字体
System.Drawing.Font f1 = new System.Drawing.Font("宋体", 18);
Response.Write("8" + "\r\n");
graphic.DrawString("2", f1, b, 1412, 988);
graphic.DrawString("test", f1, b, 1471, 1132);
Response.Write("9" + "\r\n");
graphic.Dispose();
Response.Write("10" + "\r\n");
string OutPath = Server.MapPath("UploadImg/毕业证书");
if (!Directory.Exists(OutPath))
{
Response.Write("11" + "\r\n");
Directory.CreateDirectory(OutPath);
}
Response.Write("12" + "\r\n");
string Savepath = Path.Combine(@"D:\WWW\test\UploadImg\毕业证书", "1.JPG");
System.Drawing.Image outimg = image;
Response.Write("13" + "\r\n");
outimg.Save(Savepath, System.Drawing.Imaging.ImageFormat.Jpeg);
#region 解决方案二,保存为png格式图片
outimg.Save(Savepath,System.Drawing.Imaging.ImageFormat.Png);
#endregion
outimg.Dispose();
Response.Write("14" + "\r\n");
Response.Write("15" + "\r\n");
Response.Write(Savepath);
}
}
catch (Exception ex)
{
Response.Write(ex.Message);
}
System.Drawing.Image.Save(Savepath),保存为jpg格式,参数错误,文件0kb解决办法的更多相关文章
- asp.net EF6.0中出现未找到具有固定名称“System.Data.SqlClient”的 ADO.NET提供程序的实体框架提供程序解决办法
出现的错误信息如下所示: 指定的架构无效.错误: DataModel.ssdl(2,2) : 错误 0152: 未找到具有固定名称“System.Data.SqlClient”的 ADO.NET 提 ...
- Activiti保存流程图时diagrms中没有生成png解决办法
window ——> preferences——>activiti——>save——>选中create process definition image when saving ...
- EF6.0中出现未找到具有固定名称“System.Data.SqlClient”的 ADO.NET提供程序的实体框架提供程序解决办法
在多工程项目中,由于EF封装在某一个工程里,那么该项目用于EF相关类库 EntityFramework.dll,以及EntityFramework.SqlServer.dll的引用 那么你一个启动工程 ...
- 使用System.Drawing.Imaging.dll进行图片的合并
在最近开发项目的时候有时候需要进行图片的合并,即将两张图片合并成功一张图片 合并图片的代码: #region 两张图片的合并 /// <summary > /// 将Image对象转化成二 ...
- 类库探源——System.Drawing
一.System.Drawing 命名空间简述 System.Drawing 命名空间提供访问 GDI+ 的基本功能,更高级的功能在 System.Drawing.Drawing2D,System.D ...
- [Tomcat]无法使用tomcat6.exe启动服务解决办法, The system cannot find the Registry key for service 'tomcat7'
重新配置环境变量后,可以使用startup.bat启动服务, 但是无法使用tomcat6.exe启动服务, 错误信息: [2011-03-10 18:51:49] [warn] The system ...
- .net学习笔记----利用System.Drawing.Image类进行图片相关操作
C#中对图片的操作主要是通过System.Drawing.Image等类进行. 一.将图片转换为字节流 /// <summary> /// 图片处理帮助类 /// </summary ...
- Asp.Net Core使用System.Drawing.Common部署到docker报错问题
Asp.Net Core 2.1发布后,正式支持System.Drawing.Common绘图了,可以用来做一些图片验证码之类的功能.但是把网站部署到docker容器里运行会遇到很多问题,也是非常闹心 ...
- 把System.Drawing.Image对象img,在页面的Image控件上显示出来
1.保存到本地,然后调用. //定义文件名 string iname = DateTime.Now.ToString("yyMMddhhmmss"); //保存到服务器,b是 ...
随机推荐
- JQuery属性过滤(转)
属性过滤(Attribute Filters)的内容就是html元素中的属性 其包括以下几个选择器: [attribute] [attribute=value] [attribute!=value] ...
- HUNNU--湖师大--11410--Eligibility
[I] Eligibility Regional Contest Director Osama Ismail knows that an individual cannot participate i ...
- JAVA-1-学习历程1:基础知识1
前言:此文属于个人学习中总结记录的较重要的知识点,分享一下.望对刚開始学习的人有点用. 视频04 语句.函数.数组 1.函数的重载 2.数组内存空间的划分 栈.堆 视频05 数组 1. ...
- Sqlserver查询表结构信息-字段说明、类型、长度等信息
Sqlserver 中查询表结构信息-字段说明.类型.长度等信息综合语法. SELECT 表名 = d.name,--case when a.colorder=1 then d.name else ' ...
- .NET注册页面代码
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI ...
- python的数与字符串
双引号 c1="sldkjf"print c1c2="It's a dog"print c2 单引号c1='sldkjf'print c1c2='It" ...
- css ie hack整理
网上有很多关于ie hack的文章,可能由于文章发布后ie的版本还在升级.所以导致有些hack写法已经不适用了.以下是本人整理的ie6-11的一些hack常用写法.(以下默认文档模式为标准模式) 1. ...
- Ajax跨域请求中的Cookie问题(默认不带cookie等凭证)
1.原生Ajax请求方式,设置跨域请求附带详细参数 var xhr = new XMLHttpRequest(); xhr.open("POST", "http://xx ...
- 运维监控利器smokeping 500报错处理
检查apache日志发现有以下错误: No such file or directory: exec of '/usr/local/smokeping/htdocs/smokeping.cgi' fa ...
- UI基本之UITextField相关方法属性
//初始化textfield并设置位置及大小 UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(, , , )]; // ...