代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
实现静态图片剪切缩放功能
作者:
俊达
/ 发布于
2016/1/14
/
525
一般网站都有自定义头像功能,用户可以上传自己喜欢的图片,然后选取合适的位置,大小,经过裁剪作为自己的头像。这个过程涉及到js裁剪图片,服务器处理图片。 js裁剪一般都使用现成的js类库,如jcrop,这个比较好用。图片经过jcrop剪切后,jcrop能够将剪切信息发送到后台,其实真正的剪切过程是在后台做的。jcrop只是搜集数据。本代码中没考虑gif动态图片。
剪切图片: /** * 剪切图片,没有处理图片后缀名是否正确,还有gif动态图片 * @param sourcePath 源路径(包含图片) * @param targetPath 目标路径 null则默认为源路径 * @param x 起点x坐标 * @param y 起点y左边 * @param width 剪切宽度 * @param height 剪切高度 * @return 目标路径 * @throws IOException if sourcePath image doesn't exist */ public static String cutImage(String sourcePath,String targetPath,int x,int y,int width,int height) throws IOException{ File imageFile = new File(sourcePath); if(!imageFile.exists()){ throw new IOException("Not found the images:"+sourcePath); } if(targetPath==null || targetPath.isEmpty()) targetPath = sourcePath; String format = sourcePath.substring(sourcePath.lastIndexOf(".")+1,sourcePath.length()); BufferedImage image = ImageIO.read(imageFile); image = image.getSubimage(x, y, width, height); ImageIO.write(image, format, new File(targetPath)); return targetPath; } 压缩图片: /** * 压缩图片 * @param sourcePath 源路径(包含图片) * @param targetPath 目标路径 null则默认为源路径 * @param width 压缩后宽度 * @param height 压缩后高度 * @return 目标路径 * @throws IOException if sourcePath image does not exist */ public static String zoom(String sourcePath,String targetPath,int width,int height) throws IOException{ File imageFile = new File(sourcePath); if(!imageFile.exists()){ throw new IOException("Not found the images:"+sourcePath); } if(targetPath==null || targetPath.isEmpty()) targetPath = sourcePath; String format = sourcePath.substring(sourcePath.lastIndexOf(".")+1,sourcePath.length()); BufferedImage image = ImageIO.read(imageFile); image = zoom(image,width,height); ImageIO.write(image, format, new File(targetPath)); return targetPath; } /** * 压缩图片 * @param sourceImage 待压缩图片 * @param width 压缩图片高度 * @param heigt 压缩图片宽度 */ private static BufferedImage zoom(BufferedImage sourceImage , int width , int height){ BufferedImage zoomImage = new BufferedImage(width, height, sourceImage.getType()); Image image = sourceImage.getScaledInstance(width, height, Image.SCALE_SMOOTH); Graphics gc = zoomImage.getGraphics(); gc.setColor(Color.WHITE); gc.drawImage( image , 0, 0, null); return zoomImage; }
试试其它关键字
静态图片
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
俊达
贡献的其它代码
(
12
)
.
下载文件前通过HTTP请求获取文件大小
.
HIVE删除分区
.
asp.net伪静态提交服务器后还转到本页面的方法
.
抽取 HTML 文档中的所有 URL 地址
.
生成友好URL
.
限制文本域textarea的输入字符长度
.
导出json
.
一个存储用户信息的类,支持单点登录
.
JS得到Request.QueryString的值
.
显示用户触摸的持续时间和位置
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3