java 图片缩放裁剪_java图片缩放与裁剪

import java.awt.Graphics;

import java.awt.Image;

import java.awt.image.BufferedImage;

import java.io.File;

import java.io.FileOutputStream;

import java.io.IOException;

import javax.imageio.ImageIO;

import com.alibaba.druid.util.StringUtils;

import com.jfinal.kit.StrKit;

import com.sun.image.codec.jpeg.JPEGCodec;

import com.sun.image.codec.jpeg.JPEGEncodeParam;

import com.sun.image.codec.jpeg.JPEGImageEncoder;

import java.awt.image.BufferedImage;

import java.rmi.registry.Registry;

@SuppressWarnings("restriction")

public class ImageKit {

private final static String[] imgExts=new String[]{"jpg", "jpeg", "png", "bmp"};

public static String getExtName(String fileName){

if(StringUtils.isEmpty(fileName)) return null;

int idx=fileName.lastIndexOf(‘.‘);

if(idx!=-1&&(idx+1)

return fileName.substring(idx+1);

}else{

return null;

}

}

//通过文件扩展名,是否为支持的图片文件

public static boolean isImageExtName(String fileName){

if(StrKit.isBlank(fileName)){

return false;

}

fileName=fileName.trim().toLowerCase();

String ext=getExtName(fileName);

if(StringUtils.isEmpty(ext)) return false;

for (String str:imgExts){

if(str.equals(ext)){

return true;

}

}

return false;

}

public static final boolean notImageExtName(String fileName){

return !isImageExtName(fileName);

}

public static BufferedImage loadImageFils(String sourceImageFileName){

if(notImageExtName(sourceImageFileName)){

throw new IllegalArgumentException("只支持如下几种类型的图像文件:jpg、jpeg、png、bmp");

}

File sourceImageFile=new File(sourceImageFileName);

if(!sourceImageFile.exists()||!sourceImageFile.isFile()){

throw new IllegalArgumentException("文件不存在");

}

try {

return ImageIO.read(sourceImageFile);

}catch (Exception e){

throw new RuntimeException(e);

}

}

public static void zoom(int maxWidth,File srcFile,String saveFile){

float quality=0.8f;

try {

BufferedImage srcImage = ImageIO.read(srcFile);

int srcWidth = srcImage.getWidth();

int srcHeight = srcImage.getHeight();

if(srcWidth<=maxWidth){

saveWithQuality(srcImage, quality, saveFile);

}else {

float scalingRatio=(float) maxWidth/(float)srcWidth;

float maxHeight = ((float)srcHeight * scalingRatio);

BufferedImage ret=resize(srcImage,maxWidth,(int) maxHeight);

saveWithQuality(ret, quality, saveFile);

}

}catch (Exception e) {

throw new RuntimeException(e);

}

}

public static BufferedImage crop(String sourceImageFile,int left, int top, int width, int height){

if (notImageExtName(sourceImageFile)) {

throw new IllegalArgumentException("只支持如下几种类型的图像文件:jpg、jpeg、png、bmp");

}

try {

BufferedImage bi= ImageIO.read(new File(sourceImageFile));

width = Math.min(width, bi.getWidth());

height = Math.min(height, bi.getHeight());

if(width <= 0) width = bi.getWidth();

if(height <= 0) height = bi.getHeight();

left = Math.min(Math.max(0, left), bi.getWidth() - width);

top = Math.min(Math.max(0, top), bi.getHeight() - height);

return bi.getSubimage(left,top,width,height);

}catch (Exception e){

throw new RuntimeException(e);

}

}

public static void save(BufferedImage bi,String outputImageFile){

FileOutputStream newImage=null;

try {

ImageIO.write(bi,getExtName(outputImageFile),new File(outputImageFile));

} catch(Exception e){

throw new RuntimeException(e);

} finally {

if(newImage!=null){

try {

newImage.close();

} catch (IOException e) {

throw new RuntimeException(e);

}

}

}

}

public static BufferedImage resize(BufferedImage bi, int toWidth, int toHeight) {

Graphics g=null;

try {

Image scaledImage = bi.getScaledInstance(toWidth, toHeight, Image.SCALE_SMOOTH);

BufferedImage ret = new BufferedImage(toWidth, toHeight, BufferedImage.TYPE_INT_RGB);

g = ret.getGraphics();

g.drawImage(scaledImage, 0, 0, null);

return ret;

} catch (Exception e) {

throw new RuntimeException(e);

} finally {

if (g != null) {

g.dispose();

}

}

}

public static void saveWithQuality(BufferedImage im, float quality, String outputImageFile){

FileOutputStream newImage = null;

try {

newImage = new FileOutputStream(outputImageFile);

JPEGImageEncoder encoder=JPEGCodec.createJPEGEncoder(newImage);

JPEGEncodeParam jep = JPEGCodec.getDefaultJPEGEncodeParam(im);

jep.setQuality(quality, true);

encoder.encode(im, jep);

}catch (Exception e) {

throw new RuntimeException(e);

} finally {

if (newImage != null) {

try {newImage.close();} catch (IOException e) {throw new RuntimeException(e);}

}

}

}

}

原文:https://www.cnblogs.com/sunliyuan/p/10669630.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要实现Java图片上传处理的缩放功能,可以使用Java提供的ImageIO类和BufferedImage类。以下是一个简单的示例代码: ```java import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.File; import javax.imageio.ImageIO; public class ImageUtils { public static void resizeImage(File inputImage, File outputImage, int maxWidth, int maxHeight) throws Exception { BufferedImage input = ImageIO.read(inputImage); int width = input.getWidth(); int height = input.getHeight(); double ratio = (double) width / height; if (width > maxWidth || height > maxHeight) { if (width > height) { width = maxWidth; height = (int) (maxWidth / ratio); } else { height = maxHeight; width = (int) (maxHeight * ratio); } } BufferedImage output = new BufferedImage(width, height, input.getType()); Graphics2D g2d = output.createGraphics(); g2d.drawImage(input, 0, 0, width, height, null); g2d.dispose(); ImageIO.write(output, "jpg", outputImage); } } ``` 这个示例代码中,resizeImage()方法接收一个输入图片文件、一个输出图片文件、最大宽度和最大高度,然后对输入图片进行缩放处理,使其宽度和高度都不超过指定的最大值。缩放后的图片会保存到输出图片文件中。 使用时,可以像这样调用: ```java File inputFile = new File("input.jpg"); File outputFile = new File("output.jpg"); ImageUtils.resizeImage(inputFile, outputFile, 800, 600); ``` 这个示例代码只是一个简单的缩放示例,实际应用中还需要考虑更多的因素,例如图片格式、质量、裁剪等。但是使用Java提供的ImageIO和BufferedImage类,实现图片缩放功能还是比较容易的。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值