java image zoom_java 图像压缩

importjava.awt.Graphics2D;importjava.awt.Image;importjava.awt.RenderingHints;importjava.awt.color.ColorSpace;importjava.awt.geom.AffineTransform;importjava.awt.image.AffineTransformOp;importjava.awt.image.BufferedImage;importjava.awt.image.ColorConvertOp;importjava.io.ByteArrayOutputStream;importjava.io.File;importjava.util.Base64;importjavax.imageio.ImageIO;public classProgram {public static void main(String[] args) throwsException {int maxWidth = 800;int maxHeight = 600;

BufferedImage image= ImageIO.read(new File("E:\\Desktop\\IMG20200322201448.jpg"));

image=zoomImageFromWidthAndHeight(image,maxWidth,maxHeight);

ImageIO.write(image,"jpg", new File("E:\\Desktop\\IMG20200322201448(" + maxWidth + "x" + maxHeight + ").jpg"));

System.out.println("OK");

}public static BufferedImage grayImage(finalBufferedImage srcImg) {int iw =srcImg.getWidth();int ih =srcImg.getHeight();

Graphics2D srcG=srcImg.createGraphics();

RenderingHints rhs=srcG.getRenderingHints();

ColorSpace cs=ColorSpace.getInstance(ColorSpace.CS_GRAY);

ColorConvertOp theOp= newColorConvertOp(cs, rhs);

BufferedImage dstImg= newBufferedImage(iw, ih,

BufferedImage.TYPE_INT_RGB);

theOp.filter(srcImg, dstImg);returndstImg;

}public static BufferedImage zoomImageFromWidthAndHeight(BufferedImage bufImg, int maxWidth, intmaxHeight) {int actualWidth =bufImg.getWidth();int actualHeight =bufImg.getHeight();if(((double)maxWidth*(double)actualHeight/(double)actualWidth)*(double)maxWidth< ((double)maxHeight*(double)actualWidth/(double)actualHeight)*(double)maxHeight)

{

actualHeight= (int)((double)maxWidth * (double)actualHeight / (double)actualWidth);

actualWidth=maxWidth;

}else{

actualWidth= (int)((double)maxHeight * (double)actualWidth / (double)actualHeight);

actualHeight=maxHeight;

}double wr = 0,hr = 0;

Image Itemp= bufImg.getScaledInstance(actualWidth, actualHeight, bufImg.SCALE_SMOOTH);//设置缩放目标图片模板

wr= actualWidth*1.0 /bufImg.getWidth();

hr= actualHeight*1.0 /bufImg.getHeight();

AffineTransformOp ato= new AffineTransformOp(AffineTransform.getScaleInstance(wr, hr), null);

Itemp= ato.filter(bufImg, null);return(BufferedImage) Itemp;

}

}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值