之前上传图片基本都是用的HttpPostedFile方式获取图片,这次因为需求关系,要对准备上传的图片进行删除,最后提交的时候才去保存图片到服务器,

找了下资料,html5有个新的东西出来,js 里面的FileReader用法也写下,有了这个可以很快速的开发一个适配的图片上传插件出来

$('#img_upload').change(function () {// img_upload 为 input 标签的id
var maxsize = 2 * 1024 * 1024;//2M
var file = this.files[0];
var size = this.files[0].size;
var suffix = file.name.split('.')[1];
// 前端初步判断下后缀名是否为图片,更为精确的方式要在服务器端进行
if (suffix.toLowerCase() != "jpg" && suffix.toLowerCase() != "jpeg" && suffix.toLowerCase() != "gif" && suffix.toLowerCase() != "png") {
alert("请上传JPG、JPEG、GIF与PNG格式的图片");
return;
} if (size >= maxsize) {
alert("上传的文件必须小于2M!!!");
return;
} var r = new FileReader();
r.readAsDataURL(file);
$(r).load(function () {
document.getElementById("avatarimg").src = this.result;// this.result 就是 data:image/jpeg;base64,开头的base64格式图片
});
});

  服务器端处理如下

    /// <summary>
/// 将 html5 FileReader 读出来的base64格式图片转化成一定格式的图片存起来
/// </summary>
/// <param name="base64Str">开头为data:image/jpeg;base64, + base64图片字符串</param>
/// <param name="domain">引用程序域名</param>
/// <param name="savePath">根目录开始的保存路径: uploadfile\\201703 不存在该路径则会自动创建 </param>
/// <param name="saveName">2017030278787.jpg 中"." 前一段</param>
/// <param name="extension">.jpg</param>
/// <param name="limitSize">限制字节长度</param>
/// <returns>1:面向用户的错误信息 </returns>
public static SaveImageResult SaveBase64StrToImage(string base64Str, string domain, string savePath, string saveName, string extension, long limitSize)
{
SaveImageResult result = new SaveImageResult();
string imgFullName = saveName + extension; // 格式类似 20170903787878.jpg
try
{
result.ReturnPath = domain + "/" + savePath.Replace("\\", "/") + "/" + imgFullName;// 格式类似 http:axx.xxx.com/uploadfile/2017/03/201709044645545454.jpg
}
catch (Exception)
{
throw new Exception("参数savePath格式错误");
}
byte[] arr = null;
try
{
arr = Convert.FromBase64String(base64Str.Substring(base64Str.IndexOf("base64,") + ));//切除前面那段image标识
}
catch (Exception)
{
throw new Exception("参数base64Str格式错误");
} long size = arr.LongLength; if (size <= limitSize)// 判断文件大小是否超出限制
{
string path = System.Web.HttpRuntime.AppDomainAppPath + savePath;// 获取物理路径 if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
} using (MemoryStream ms = new MemoryStream(arr))
{
try
{
                    Bitmap bmp = new Bitmap(ms);// 此处如果传入的不是一张图片,这里会抛异常
                    bmp.Save(path + "\\" + imgFullName);
}
catch (Exception)
{
throw new Exception("图片保存失败,请检查传入参数");
}
}
}
else
{
result.ErrorCode = ;
result.ErrorMessage = "图片超过限制大小";
}
if (result.ErrorCode != )// 如果有出错,返回路径变成空
{
result.ReturnPath = "";
}
return result;
}
    /// <summary>
/// base64格式转图片存储结果
///
/// </summary>
public class SaveImageResult
{
/// <summary>
/// 0:无错误 1:面向用户的错误信息
/// </summary>
public int ErrorCode { get; set; } /// <summary>
/// 错误信息
/// </summary>
public string ErrorMessage { get; set; } /// <summary>
/// 返回用于存储的路径
/// </summary>
public string ReturnPath { get; set; } }

 
 

base64方式讲完,下面再附上一个普通的HttpPostedFile方式上传的方法

/// <summary>
/// 保存上传的图片,自带用Image对象的方式判断是否为图片,自动获取后缀名
/// </summary>
/// <param name="file">文件 ,该参数可由System.Web.Request.Files集合的索引来得到</param>
/// <param name="savePath">根目录开始的保存路径: uploadfile\\201703 不存在该路径则会自动创建 </param>
/// <param name="saveName">2017030278787.jpg 中"." 前一段</param>
/// <param name="limitSize">限制字节长度</param>
/// <returns></returns>
public static SaveImageResult SaveImage(System.Web.HttpPostedFile file, string domain, string savePath, string saveName, long limitSize)
{
SaveImageResult result = new SaveImageResult();
if (file == null)
{
result.ErrorCode = ;
result.ErrorMessage = "请上传图片";
}
string extension = System.IO.Path.GetExtension(file.FileName);// 获取后缀名
string imgFullName = saveName + extension; // 格式类似 20170903787878.jpg
try
{
result.ReturnPath = domain + "/" + savePath.Replace("\\", "/") + "/" + imgFullName;// 格式类似 http:app.darchin.com/uploadfile/2017/03/201709044645545454.jpg
}
catch (Exception)
{
throw new Exception("参数savePath格式错误");
}
if (file.ContentLength <= limitSize)// 判断文件大小是否超出限制
{
System.Drawing.Image img = null;
try
{
img = System.Drawing.Image.FromStream(file.InputStream);
}
catch (Exception)
{
result.ErrorCode = ;
result.ErrorMessage = "请上传正确格式的图片";
} string path = System.Web.HttpRuntime.AppDomainAppPath + savePath;// 获取物理路径 if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
try
{
img.Save(path + "\\" + imgFullName);
}
catch (Exception)
{
throw new Exception("图片保存失败,请检查传入参数");
} }
else
{
result.ErrorCode = ;
result.ErrorMessage = "上传的图片超过限制大小";
}
if (result.ErrorCode != )// 如果有出错,返回路径变成空
{
result.ReturnPath = "";
}
return result;
}

如果上面所讲有错或者不足的地方还请各位朋友指出,感激不尽

Asp.Net HttpPostedFile和base64两种上传图片(文件)方式的更多相关文章

  1. Git 的两种忽略文件方式 gitignore 和 exclude

    Git 的两种忽略文件方式 gitignore 和 exclude .gitignore 不用说了,大家都知道. 有一个 exclude 可能接触比较少. 知道这个功能后发现,用在服务器上非常方便,因 ...

  2. Asp.Net Core下的两种路由配置方式

    与Asp.Net Mvc创建区域的时候会自动为你创建区域路由方式不同的是,Asp.Net Core下需要自己手动做一些配置,但更灵活了. 我们先创建一个区域,如下图 然后我们启动访问/Manage/H ...

  3. ASP.NET MVC下的四种验证编程方式[续篇]

    在<ASP.NET MVC下的四种验证编程方式>一文中我们介绍了ASP.NET MVC支持的四种服务端验证的编程方式("手工验证"."标注Validation ...

  4. ASP.NET MVC下的四种验证编程方式

    ASP.NET MVC采用Model绑定为目标Action生成了相应的参数列表,但是在真正执行目标Action方法之前,还需要对绑定的参数实施验证以确保其有效性,我们将针对参数的验证成为Model绑定 ...

  5. Form表单中method=post/get两种数据传输的方式的区别

    Form提供了两种数据传输的方式——get和post.虽然它们都是数据的提交方式,但是在实际传输时确有很大的不同,并且可能会对数据产生严重的影响.虽然为了方便的得到变量值,Web容器已经屏蔽了二者的一 ...

  6. ASP.NET MVC下的四种验证编程方式[续篇]【转】

    在<ASP.NET MVC下的四种验证编程方式> 一文中我们介绍了ASP.NET MVC支持的四种服务端验证的编程方式(“手工验证”.“标注ValidationAttribute特性”.“ ...

  7. ASP.NET MVC下的四种验证编程方式【转】

    ASP.NET MVC采用Model绑定为目标Action生成了相应的参数列表,但是在真正执行目标Action方法之前,还需要对绑定的参数实施验证以确保其有效 性,我们将针对参数的验证成为Model绑 ...

  8. Windows Azure VM的两种shut down 方式

    今天在调查Azure的价格时,发现下面的语句,来自http://azure.microsoft.com/en-us/pricing/details/virtual-machines/ * If my ...

  9. 两种隐藏元素方式【display: none】和【visibility: hidden】的区别

    此随笔的灵感来源于上周的一个面试,在谈到隐藏元素的时候,面试官突然问我[display: none]和[visibility: hidden]的区别,我当时一愣,这俩有区别吗,好像有,但是忘记了啊,因 ...

随机推荐

  1. some advice in work

    给研究生的建议 文档抄袭自:北航大佬 Fei-Fei Li:De-Mystifying Good Research and Good Papers (repost) 如何提升你的能力?给年轻程序员的几 ...

  2. ubuntu多版本cuda并存与切换【两个博客链接】

    https://bluesmilery.github.io/blogs/a687003b/ https://blog.csdn.net/Maple2014/article/details/785742 ...

  3. Mafly.Mail实现发送邮件

    安装 打开程序包管理器控制台,执行命令:Install-Package Mafly.MailInstall-Package Newtonsoft.Json.dll 安装之后,项目会自动创建一个Conf ...

  4. 部署Asp.net core & Nginx,通过nginx转发

    部署Asp.net core & Nginx,通过nginx转发 CentOS 7 x64 1.vs2017 建立Asp.net core项目,并发布到目录 2.通过FTP工具,将程序copy ...

  5. ssm又乱码

    以前用mybatis的时候是这样的 mysql.connection.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characte ...

  6. 【Android】android文件的写入与读取---简单的文本读写context.openFileInput() context.openFileOutput()

    最终效果图,点击save会保存到文件中,点击show会从文件中读取出内容并显示. main.xml <?xml version="1.0" encoding="ut ...

  7. js中时间大小的比较

    今天在前台做到一个需要比较两个日期大小的地方,乍一看,发现一个比较奇怪地地方: var t1 = new Date(2018,1,1), t2 = new Date(2018,1,1); consol ...

  8. jenkins(3): jenkins执行shell命令

    参考: https://www.cnblogs.com/reblue520/p/7146693.html 1. 执行 本地 shell命令或者脚本 是在一个构建中的  bulid 选项卡. 执行本地中 ...

  9. BZOJ4566 [Haoi2016]找相同字符 字符串 SAM

    原文链接https://www.cnblogs.com/zhouzhendong/p/BZOJ4566.html 题目传送门 - BZOJ4566 题意 给定两个字符串 $s1$ 和 $s2$ ,问有 ...

  10. Scala-Unit6-final/type关键字、样例类&样例对象

    一.关键字 1.final关键字 用final修饰的类:不能被继承 用final修饰的方法:不能被重写 注意:(1)在Scala中变量不需要用final修饰,因为val与var已经限制了变量是否可变 ...