Java 实现图片压缩的两种方法
问题背景。
典型的情景:Nemo社区中,用户上传的图片免不了要在某处给用户做展示。
如用户上传的头像,那么其他用户在浏览该用户信息的时候,就会需要回显头像信息了。
用户上传的原图可能由于清晰度较高而体积也相对较大,考虑用户流量带宽,一般而言我们都不会直接体积巨大的原图直接丢给用户让用户慢慢下载。
这时候通常我们会在服务器对图片进行压缩,然后把压缩后的图片内容回显给用户。
压缩方案:
这里主要找了两个java中常用的图片压缩工具库:Graphics和Thumbnailator。
1、Graphics:
/** *compressImage * *@paramimageByte *Imagesourcearray *@paramppi *@return */ publicstaticbyte[]compressImage(byte[]imageByte,intppi){ byte[]smallImage=null; intwidth=0,height=0; if(imageByte==null) returnnull; ByteArrayInputStreambyteInput=newByteArrayInputStream(imageByte); try{ Imageimage=ImageIO.read(byteInput); intw=image.getWidth(null); inth=image.getHeight(null); //adjustweightandheighttoavoidimagedistortion doublescale=0; scale=Math.min((float)ppi/w,(float)ppi/h); width=(int)(w*scale); width-=width%4; height=(int)(h*scale); if(scale>=(double)1) returnimageByte; BufferedImagebuffImg=newBufferedImage(width,height,BufferedImage.TYPE_INT_RGB); buffImg.getGraphics().drawImage(image.getScaledInstance(width,height,Image.SCALE_SMOOTH),0,0,null); ByteArrayOutputStreamout=newByteArrayOutputStream(); ImageIO.write(buffImg,"png",out); smallImage=out.toByteArray(); returnsmallImage; }catch(IOExceptione){ log.error(e.getMessage()); thrownewRSServerInternalException(""); } }
重点在于:
BufferedImagebuffImg=newBufferedImage(width,height,BufferedImage.TYPE_INT_RGB); buffImg.getGraphics().drawImage(image.getScaledInstance(width,height,Image.SCALE_SMOOTH),0,0,null);
2、Thumbnailator:
/** *compressImage * *@parampath *@paramppi *@return */ publicstaticbyte[]compressImage(Stringpath,intppi){ byte[]smallImage=null; try{ ByteArrayOutputStreamout=newByteArrayOutputStream(); Thumbnails.of(path).size(ppi,ppi).outputFormat("png").toOutputStream(out); smallImage=out.toByteArray(); returnsmallImage; }catch(IOExceptione){ log.error(e.getMessage()); thrownewRSServerInternalException(""); } }
实际测试中,批量的情境下,后者较前者更快一些。
以上就是Java实现图片压缩的两种方法的详细内容,更多关于Java图片压缩的资料请关注毛票票其它相关文章!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。