在网上找,发现都是不全的,要么没获取图片路径,要么没后台等等,今天就来个全的

一:总体步骤

=》页面上传图片

=》获取上传图片剪切的四个值x,y,w,h

=》后天进行剪切

接下来就开始飞吧

页面上传图片,这个大家都懂的

 <form action="bookpicture.action" enctype="multipart/form-data" method="post">&nbsp;&nbsp;
<input type="file" name="picture" value="选择图片" />
<input type="submit" value="点击上传" />
</form>

先看看配置文件,这个应该也没问题的

<action name="bookpicture" class="com.ggxytxh.action.PictureAction" method="uploadPicture">
<!-- 动态设置Action的属性值 -->
<param name="path">/img/book_picture</param>
<!-- 配置Struts 2默认的视图页面 -->
<result name="bookpicture">/picture.jsp</result>
<result name="error">/fial.jsp</result>
</action>

上传后,后面的action处理,这些

/******************* 上传图片 *******************/
public String uploadPicture() {
File file = new File(getPath(), pictureFileName);
request.setAttribute("path", path.substring(1) + "/" + pictureFileName);// 页面读取,不知为啥,路径请前多多了“/”
act.getSession().put("bookName", pictureFileName);//等下剪切还要用到名
try {
FileUtils.copyFile(picture, file);
if (!file.getParentFile().exists()) {
file.getParentFile().mkdirs();
}
FileUtils.copyFile(picture, file);
} catch (IOException e) { return ERROR;
}
return "bookpicture";
}

接下来就是大招,开始剪切咯

导入jcrop,这个东西自己找下吧,有心的都会找到

<script src="./js/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="./js/jquery.Jcrop.js" type="text/javascript"></script> <link rel="stylesheet" href="./css/jquery.Jcrop.css" type="text/css" />

接着就是剪切了,这里也有两个地方可能会有问题的,

<img onerror="this.style.display='none'"id="edit" src="${path}"/>这个路径,网上很多人都没说怎么获取,其实也很简单
就把它放到request中
request.setAttribute("path", path.substring(1) + "/" + pictureFileName);// 页面读取,不知为啥,路径请前多多了“/”
<div  class="one">
<img onerror="this.style.display='none'"
id="edit" src="${path}"/>
</div> <div class="two" style="width: 150px;height: 200px;">
<img onerror="this.style.display='none'"
id="preview" src="${path}"/>
</div> <script type="text/javascript">
jQuery(function($) {
// Create variables (in this scope) to hold the API and image size
var jcrop_api, boundx, boundy;
$('#edit').Jcrop({
onChange : updatePreview,//调用各个事件
onSelect : updatePreview,
aspectRatio : 3/4//规定选择区域比例
}, function() {
var bounds = this.getBounds();
boundx = bounds[0];
boundy = bounds[1];
jcrop_api = this;
});
function updatePreview(c) {
if (parseInt(c.w) > 0) {
//计算预览区域图片缩放的比例,通过计算显示区域的宽度(与高度)与剪裁的宽度(与高度)之比得到
var rx = 150 / c.w;//rx=$('#preview').value/ c.w
var ry = 200 / c.h;
$('#preview').css({
width : Math.round(rx * boundx) + 'px',
height : Math.round(ry * boundy) + 'px',
marginLeft : '-' + Math.round(rx * c.x) + 'px',
marginTop : '-' + Math.round(ry * c.y) + 'px',
});
$('#width').val(c.w); //c.w 裁剪区域的宽
$('#height').val(c.h); //c.h 裁剪区域的高
$('#x').val(c.x); //c.x 裁剪区域左上角顶点相对于图片左上角顶点的x坐标
$('#y').val(c.y); //c.y 裁剪区域顶点的y坐标
}
};
});
</script>

<div style="position:absolute;right:5px;bottom:5px;">

<form action="savePicture.action" method="post">
点击
<%-- <input type="hidden" name="pictureFileName" value="${pictureFileName}"> --%>
<input type="hidden" name="x" id="x"/>
<input type="hidden" name="y" id="y"/>
<input type="hidden" name="width" id="width"/>
<input type="hidden" name="height" id="height"/>
<input type="submit" value="确定" />

,设置完成。
</form>
</div>

再看看配置,也没什么的

<action name="savePicture" class="com.ggxytxh.action.PictureAction" method="cutPicture">

            <result name="cutpicture">/addbook.jsp</result>
<result name="error">/fial.jsp</result>
</action>

到这里为止应该大家都会的

很多人就因为接下来的被卡住了

我也不例外

public class PictureAction extends ActionSupport {
private File picture;
private String pictureFileName;
private String path;// 上传路径
private float x;//用了int的
private float y;
private float width;
private float height;

之前一直用int给四个值,一直出错,

问了很多人,都说路径错误,但是路径的确没错,他们没有给正确答案的我的,后来就把

<input type="hidden" name="x" id="x"/> 改了<input type="text" name="y" id="y"/>,发现数据是小数,突然醒悟

改为float就解决问题了

 

最后就是后台进行剪切啦

/******************* 剪切图片 *******************/

    public String cutPicture() {
String savePath;// 最终保存路径
String picName = null;
Image img;
ImageFilter cropFilter;
//获取上传的文件名
pictureFileName=(String) act.getSession().get("bookName");
path = "D:\\Wed\\Tomcat 8.0\\webapps\\Library\\img\\book_picture\\"+ pictureFileName;
File picFile=new File(path);
try {
// 读取源图像
BufferedImage bi = (BufferedImage)ImageIO.read(picFile);
int srcWidth = bi.getWidth(); // 源图宽度
int srcHeight = bi.getHeight(); // 源图高度
//剪切
Image image = bi.getScaledInstance(srcWidth, srcHeight,Image.SCALE_DEFAULT);
cropFilter = new CropImageFilter((int)x, (int)y, (int)width, (int)height);
img = Toolkit.getDefaultToolkit().createImage(new FilteredImageSource(image.getSource(), cropFilter));
BufferedImage tag = new BufferedImage((int)width, (int)height,BufferedImage.TYPE_INT_RGB);
Graphics g = tag.getGraphics();
g.drawImage(img, 0, 0, null); // 绘制缩小后的图
g.dispose();
// 产生图片前的文件夹
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd");
//设置保存保存路径
savePath = "D:\\img\\book_picture\\"
+ formatter.format(new Date()).toString();
File file = new File(savePath);
if (!file.exists()) {
file.mkdirs();// 多级目录,不能用mkdir()
}
//查找该路径下的最大文件名,i+1用于生产下一个文件名
if(file.list().length>0){
Arrays.sort(file.list());
picName=file.list()[file.list().length-1];
picName=String.valueOf((Integer.parseInt(picName.substring(0, picName.length()-4))+1));
System.out.println(picName);
}else {
picName=1+"";
}
// 整个路径包含文件名放在request中
request.setAttribute("bookpath", savePath+"\\"+picName+".jpg");
// 用于保存的图片,生成
ImageIO.write(tag, "JPEG", new File(savePath+"\\"+picName+".jpg"));
//删除原来文件
picFile.delete();
//清除session
act.getSession().remove("bookName");
} catch (IOException e) {
e.printStackTrace();
return ERROR;
}/* */
return "cutpicture";

本人菜鸟,大家共同学习学习,有不好地方求大神指点指点!

2015-05-09

Jcrop+strut2+jsp实现图片剪切的更多相关文章

  1. jQuery Jcrop API参数说明(中文版)(转)(图片剪切)

    Jcrop是一个jQuery图片裁剪插件,它能为你的WEB应用程序快速简单地提供图片裁剪的功能.特点如下: 对所有图片均unobtrusively(无侵入的,保持DOM简洁) 支持宽高比例锁定 支持 ...

  2. 图片上传,图片剪切jquery.imgareaselect

    ---恢复内容开始--- <%@ page language="java" contentType="text/html; charset=UTF-8" ...

  3. iOS开发UI篇—Quartz2D使用(图片剪切)

    iOS开发UI篇—Quartz2D使用(图片剪切) 一.使用Quartz2D完成图片剪切 1.把图片显示在自定义的view中 先把图片绘制到view上.按照原始大小,把图片绘制到一个点上. 代码: - ...

  4. 【iOS】Quartz2D图片剪切

    一.使用Quartz2D完成图片剪切1.把图片显示在自定义的view中 先把图片绘制到view上.按照原始大小,把图片绘制到一个点上. 代码: - (void)drawRect:(CGRect)rec ...

  5. android——拍照,相册图片剪切其实就这么简单

    接触android这么久了.还没有真正的浩浩看看android拍照,相册图片剪切到底是怎么回事,每次都是从别人的代码一扣,就过来了.其实,谷歌提供的API已经很强大.只需要用的好,就那么几句就可以搞定 ...

  6. 图片剪切之Croppic插件

    前几天做图片上传时需要进行图片的剪切和缩放,上网查找时找到了这个插件.样式很好看,功能也很OK.但是网上都是php进行后台处理图片的例子,然后只好慢慢琢磨C#的处理.插件地址是:http://www. ...

  7. 用JavaScript实现图片剪切效果

    学会如何获取鼠标的坐标位置以及监听鼠标的按下.拖动.松开等动作事件,从而实现拖动鼠标来改变图片大小. 还可以学习css中的clip属性. 一.CSS实现图片不透明及裁剪效果. 图片剪切三层结构 1.第 ...

  8. php imagemagick 处理 图片剪切、压缩、合并、插入文本、背景色透明

    php有一款插件叫做imagemagick,功能很强大,提供了图片的很多操作,图片剪切.压缩.合并.插入文本.背景色透明等.并且有api方法调用和命令行操作两种方式,如果只是简单处理的话建议api方法 ...

  9. opencv 图片剪切

    import cv2 as cv import numpy as np # 图片剪切 img = cv.imread('../images/moon.jpg', flags=1) # flags=1读 ...

随机推荐

  1. 解决:Eclipse调试的时候报错'Launching XXX' has encountered a problem. Cannot connect to VM.

    问题如下图: 原因:开了代理(我使用的是Proxifier)如图 解决方案:关闭Proxifier即可

  2. Difference between Pragma and Cache-control headers?

    Pragma is the HTTP/1.0 implementation and cache-control is the HTTP/1.1 implementation of the same c ...

  3. IRQ和FIQ中断的区别【转】

    转自:http://blog.csdn.net/michaelcao1980/article/details/19542039 FIQ和IRQ是两种不同类型的中断,ARM为了支持这两种不同的中断,提供 ...

  4. RSA (cryptosystem)

    https://en.wikipedia.org/wiki/RSA_(cryptosystem) RSA is one of the first practical实用性的 public-key cr ...

  5. Android findBugs

    1.Bug:DM_BOXED_PRIMITIVE_FOR_PARSING "Boxing/unboxing to parse a primitive", A boxed primi ...

  6. Hopfield模型

    1982年,J.Hopfield提出了可用作联想存储器的互连网络,这个网络称为Hopfield网络模型,也称Hopfield模型.Hopfield神经网络模型是一种循环神经网络,从输出到输入有反馈连接 ...

  7. LBS由ip查经纬度

    LBS API: https://api.map.baidu.com/highacciploc/v1?qcip=223.104.5.201&qterm=pc&ak=NLwCqrDce4 ...

  8. CVS数据的导入和导出

    2.CSV导入/导出测试 package junit.test; import java.io.File; import java.util.ArrayList; import java.util.L ...

  9. MINA经典入门例子----Time Server

    原文地址 http://blog.sina.com.cn/s/blog_720bdf0501010b8r.html 貌似java的IO.NIO的入门例子都有相关的Time Server Demo.本例 ...

  10. ionic中登陆逻辑控制

    问题 登陆成功后从login.html调转到home.html,此时在home页面按back键又回到了login.html . 解决方案 登陆成功后,清除导航历史堆栈. 具体代码 menu.html ...