博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
网站中集成jquery.imgareaselect实现图片的本地预览和选择截取
阅读量:5049 次
发布时间:2019-06-12

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

 是由 开发的一款非常好用的jquery插件,实现了图片的截取功能。其文档和Demo也是很详尽的。大家可以到了解更多的细节。

下面我们就开始使用 开始code吧。

第一还是要引用jquery,接着引用下载好的 jquery.imgareaselect.pack.js 文件和 imgareaselect-default.css 样式文件。

接着写一些元素标签

It's coming right for us!                            

这将用来展示图片和记录截取图片的坐标点。

接着开始写js

上述js完成了本地预览(此处的预览在chrome中正常;在IE中有些问题暂时没有找到本地预览的方法,大家可以用远程方式替换)和截取图片的功能。

前端写完了,接下来开始写后端的代码了

protected void Page_Load(object sender, EventArgs e)        {            if (IsPostBack)            {                int x1 = Convert.ToInt32(Request["x1"]);                int y1 = Convert.ToInt32(Request["y1"]);                int x2 = Convert.ToInt32(Request["x2"]);                int y2 = Convert.ToInt32(Request["y2"]);                HttpFileCollection files = Request.Files;                for (int i = 0; i < files.Count; i++)                {                    HttpPostedFile file = files[i];                    file.SaveAs(Server.MapPath("Upload/" + file.FileName));                    //设置缩略图                    int Thumbnailwidth = 400;                    int Thumbnailheight = 300;                    //新建一个bmp图片                      Bitmap bitmap = new Bitmap(Thumbnailwidth, Thumbnailheight);                    //新建一个画板                      Graphics graphic = Graphics.FromImage(bitmap);                    //设置高质量插值法                      graphic.InterpolationMode = InterpolationMode.High;                    //设置高质量,低速度呈现平滑程度                      graphic.SmoothingMode = SmoothingMode.HighQuality;                    //清空画布并以透明背景色填充                      graphic.Clear(System.Drawing.Color.Transparent);                    //原图片                    Bitmap originalImage = new Bitmap(file.InputStream);                    //在指定位置并且按指定大小绘制原图片的指定部分                      graphic.DrawImage(originalImage, new System.Drawing.Rectangle(0, 0, Thumbnailwidth, Thumbnailheight),                        new System.Drawing.Rectangle(0, 0, originalImage.Width, originalImage.Height),                        System.Drawing.GraphicsUnit.Pixel);                    //得到缩略图                    System.Drawing.Image ThumbnailImage = System.Drawing.Image.FromHbitmap(bitmap.GetHbitmap());                    //创建选择图片                    Bitmap selectbitmap = new Bitmap(x2-x1, y2-y1);                    //新建一个画板                      Graphics selectgraphic = Graphics.FromImage(selectbitmap);                                       //裁切                    selectgraphic.DrawImage(ThumbnailImage, 0, 0, new Rectangle(x1, y1, x2 - x1, y2 - y1), GraphicsUnit.Pixel);                    //保存                    selectbitmap.Save(Server.MapPath("Upload/"+Guid.NewGuid() + file.FileName), ImageFormat.Jpeg);                   //todo:将上述资源释放                }            }        }

这里我们先将图片缩小到与前台大图一样的比例,然后在进行截取,并保存到文件中。

 

转载于:https://www.cnblogs.com/WilliamWang/archive/2012/09/17/imgareaselect.html

你可能感兴趣的文章
word20161215
查看>>
12th week blog
查看>>
dijkstra (模板)
查看>>
python小记(3)
查看>>
编译Linux驱动程序 遇到的问题
查看>>
大型分布式网站架构技术总结
查看>>
HDU 1017[A Mathematical Curiosity]暴力,格式
查看>>
[算法之美] KMP算法的直观理解
查看>>
EntityFramework 性能优化
查看>>
【ASP.NET开发】菜鸟时期的ADO.NET使用笔记
查看>>
android圆角View实现及不同版本号这间的兼容
查看>>
OA项目设计的能力③
查看>>
Cocos2d-x3.0 文件处理
查看>>
全面整理的C++面试题
查看>>
Activity和Fragment生命周期对比
查看>>
OAuth和OpenID的区别
查看>>
android 分辨率自适应
查看>>
查找 EXC_BAD_ACCESS 问题根源的方法
查看>>
国外媒体推荐的5款当地Passbook通行证制作工具
查看>>
日常报错
查看>>