canva画图 图片居中裁剪_Java实现的不同图片居中剪裁生成同一尺寸缩略图功能示例...

本文实例讲述了Java实现的不同图片居中剪裁生成同一尺寸缩略图功能。分享给大家供大家参考,具体如下:

因为业务需要,写了这样一个简单类,希望能帮助对有这方面需要的人,高手莫笑

源码如下:

package platform.edu.resource.utils;

import java.awt.Graphics;

import java.awt.image.BufferedImage;

import java.io.File;

import java.io.IOException;

import javax.imageio.ImageIO;

/**

* 图片工具类

* @author hjn

* @version 1.0 2013-11-26

*

*/

public class ImageUtil {

/**

* 图片等比缩放居中剪裁

* 不管尺寸不等的图片生成的缩略图都是同一尺寸,方便用于页面展示

* @param imageSrc图片所在路径

* @param thumbWidth缩略图宽度

* @param thumbHeight缩略图长度

* @param outFilePath缩略图存放路径

* @throws InterruptedException

* @throws IOException

*/

public static void createImgThumbnail(String imgSrc, int thumbWidth, int thumbHeight, String outFilePath) throws InterruptedException, IOException {

File imageFile=new File(imgSrc);

BufferedImage image = ImageIO.read(imageFile);

Integer width = image.getWidth();

Integer height = image.getHeight();

double i = (double) width / (double) height;

double j = (double) thumbWidth / (double) thumbHeight;

int[] d = new int[2];

int x = 0;

int y = 0;

if (i > j) {

d[1] = thumbHeight;

d[0] = (int) (thumbHeight * i);

y = 0;

x = (d[0] - thumbWidth) / 2;

} else {

d[0] = thumbWidth;

d[1] = (int) (thumbWidth / i);

x = 0;

y = (d[1] - thumbHeight) / 2;

}

File outFile = new File(outFilePath);

if (!outFile.getParentFile().exists()) {

outFile.getParentFile().mkdirs();

}

/*等比例缩放*/

BufferedImage newImage = new BufferedImage(d[0],d[1],image.getType());

Graphics g = newImage.getGraphics();

g.drawImage(image, 0,0,d[0],d[1],null);

g.dispose();

/*居中剪裁*/

newImage = newImage.getSubimage(x, y, thumbWidth, thumbHeight);

ImageIO.write(newImage, imageFile.getName().substring(imageFile.getName().lastIndexOf(".") + 1), outFile);

}

}

PS:这里再为大家推荐几款比较实用的图片处理工具供大家参考使用:

希望本文所述对大家java程序设计有所帮助。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值