Java 使用Thumbnails對(duì)大圖片壓縮
引言
在最近的項(xiàng)目開(kāi)發(fā)中,經(jīng)常會(huì)使用到圖片上傳,但是過(guò)大的圖片在查看的時(shí)候會(huì)影響打開(kāi)速度,浪費(fèi)流量以及服務(wù)器存儲(chǔ)空間,所以需要在后端處理完圖片再上傳,這里我們用到了Thumbnails圖片處理工具類(lèi)。
Thumbnails主要支持以下一些功能
1、指定大小進(jìn)行縮放
2、按照比例進(jìn)行縮放
3、不按照比例,指定大小進(jìn)行縮放
4、旋轉(zhuǎn)
5、水印
6、裁剪
7、轉(zhuǎn)化圖片格式
8、輸出到OutputStream
9、輸出到BufferedImage
使用步驟:
一、添加Maven
<dependency> <groupId>net.coobird</groupId> <artifactId>thumbnailator</artifactId> <version>0.4.8</version> </dependency>
二、具體操作
1:指定大小進(jìn)行縮放
/** * 指定大小進(jìn)行縮放 * * @throws IOException */ private void test1() throws IOException { /* * size(width,height) 若圖片橫比200小,高比300小,不變 * 若圖片橫比200小,高比300大,高縮小到300,圖片比例不變 若圖片橫比200大,高比300小,橫縮小到200,圖片比例不變 * 若圖片橫比200大,高比300大,圖片按比例縮小,橫為200或高為300 */ Thumbnails.of("images/test.jpg").size(200, 300).toFile("C:/image_200x300.jpg"); Thumbnails.of("images/test.jpg").size(2560, 2048).toFile("C:/image_2560x2048.jpg"); }
2:按照比例進(jìn)行縮放
/** * 按照比例進(jìn)行縮放 * scale 圖片的壓縮比例 值在0-1之間,1f就是原圖,0.5就是原圖的一半大小 * outputQuality 圖片壓縮的質(zhì)量 值在0-1 之間,越接近1質(zhì)量越好,越接近0 質(zhì)量越差 * @throws IOException */ private void test2() throws IOException { /** * scale(比例) */ Thumbnails.of("images/test.jpg").scale(0.25f).outputQuality(0.8f).toFile("C:/image_25%.jpg"); Thumbnails.of("images/test.jpg").scale(0.75f).outputQuality(0.8f).toFile("C:/image_110%.jpg"); }
3:不按照比例,指定大小進(jìn)行縮放
/** * 不按照比例,指定大小進(jìn)行縮放 * * @throws IOException */ private void test3() throws IOException { /** * keepAspectRatio(false) 默認(rèn)是按照比例縮放的 */ Thumbnails.of("images/test.jpg").size(120, 120).keepAspectRatio(false).toFile("C:/image_120x120.jpg"); }
4:旋轉(zhuǎn)
/** * 旋轉(zhuǎn) * * @throws IOException */ private void test4() throws IOException { /** * rotate(角度),正數(shù):順時(shí)針 負(fù)數(shù):逆時(shí)針 */ Thumbnails.of("images/test.jpg").size(1280, 1024).rotate(90).toFile("C:/image+90.jpg"); Thumbnails.of("images/test.jpg").size(1280, 1024).rotate(-90).toFile("C:/iamge-90.jpg"); }
5:水印
/** * 水印 * * @throws IOException */ private void test5() throws IOException { /** * watermark(位置,水印圖,透明度) */ Thumbnails.of("images/test.jpg").size(1280, 1024).watermark(Positions.BOTTOM_RIGHT, ImageIO.read(new File("images/watermark.png")), 0.5f) .outputQuality(0.8f).toFile("C:/image_watermark_bottom_right.jpg"); Thumbnails.of("images/test.jpg").size(1280, 1024).watermark(Positions.CENTER, ImageIO.read(new File("images/watermark.png")), 0.5f) .outputQuality(0.8f).toFile("C:/image_watermark_center.jpg"); }
6:裁剪
/** * 裁剪 * * @throws IOException */ private void test6() throws IOException { /** * 圖片中心400*400的區(qū)域 */ Thumbnails.of("images/test.jpg").sourceRegion(Positions.CENTER, 400, 400).size(200, 200).keepAspectRatio(false) .toFile("C:/image_region_center.jpg"); /** * 圖片右下400*400的區(qū)域 */ Thumbnails.of("images/test.jpg").sourceRegion(Positions.BOTTOM_RIGHT, 400, 400).size(200, 200).keepAspectRatio(false) .toFile("C:/image_region_bootom_right.jpg"); /** * 指定坐標(biāo) */ Thumbnails.of("images/test.jpg").sourceRegion(600, 500, 400, 400).size(200, 200).keepAspectRatio(false).toFile("C:/image_region_coord.jpg"); }
7:轉(zhuǎn)化圖片格式
/** * 轉(zhuǎn)化圖片格式 * * @throws IOException */ private void test7() throws IOException { /** * outputFormat(圖像格式) */ Thumbnails.of("images/test.jpg").size(1280, 1024).outputFormat("png").toFile("C:/image_1280x1024.png"); Thumbnails.of("images/test.jpg").size(1280, 1024).outputFormat("gif").toFile("C:/image_1280x1024.gif"); }
8:輸出到OutputStream
/** * 輸出到OutputStream * * @throws IOException */ private void test8() throws IOException { /** * toOutputStream(流對(duì)象) */ OutputStream os = new FileOutputStream("C:/image_1280x1024_OutputStream.png"); Thumbnails.of("images/test.jpg").size(1280, 1024).toOutputStream(os); }
9:輸出到BufferedImage
/** * 輸出到BufferedImage * * @throws IOException */ private void test9() throws IOException { /** * asBufferedImage() 返回BufferedImage */ BufferedImage thumbnail = Thumbnails.of("images/test.jpg").size(1280, 1024).asBufferedImage(); ImageIO.write(thumbnail, "jpg", new File("C:/image_1280x1024_BufferedImage.jpg")); }
三、對(duì)圖片文件進(jìn)行Base64操作
/** * 對(duì)內(nèi)存中的圖片文件進(jìn)行Base64處理 * * @throws IOException */ public String Base64ImageByMemory(BufferedImage pic) { String imgString = ""; ByteArrayOutputStream newBaos = new ByteArrayOutputStream();//io流 try { ImageIO.write(pic, "jpg", newBaos);//寫(xiě)入流中 byte[] bytes = newBaos.toByteArray();//轉(zhuǎn)換成字節(jié) imgString = URLEncoder.encode(new BASE64Encoder().encode(bytes), "UTF-8"); } catch (Exception e) { e.printStackTrace(); } return imgString; }
四、獲取服務(wù)器圖片文件大小
/** * 輸出到OutputStream * * @throws IOException */ public void getImageFileSize(){ int size; URLConnection conn; try { String path=""; path="https://bkimg.cdn.bcebos.com/pic/a8773912b31bb051c36044e93b7adab44bede0af";//世界地圖 //path="http://10.30.23.217:9017/image/0c09ca36-abea-4efa-85b0-99b6d261f66c"; //服務(wù)器上圖片 URL url = new URL(path); conn = url.openConnection(); size = conn.getContentLength(); if (size < 0){ System.out.println("Could not determine file size."); }else{ System.out.println("The size of file is = " + size + " bytes"); BigDecimal filesize = new BigDecimal(size); BigDecimal megabyte = new BigDecimal(1024 * 1024); float returnValue = filesize.divide(megabyte, 2, BigDecimal.ROUND_UP).floatValue(); System.out.println("The size of file is = "+returnValue+"M"); } conn.getInputStream().close(); } catch (IOException e) { e.printStackTrace(); } }
至此,圖片壓縮的相關(guān)處理和Base64以及獲取服務(wù)器文件大小的功能就總結(jié)完了!
以上就是Java 使用Thumbnails對(duì)大圖片壓縮的詳細(xì)內(nèi)容,更多關(guān)于java 大圖片壓縮的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
淺談對(duì)象數(shù)組或list排序及Collections排序原理
下面小編就為大家?guī)?lái)一篇淺談對(duì)象數(shù)組或list排序及Collections排序原理。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-09-09mybaties plus實(shí)體類(lèi)設(shè)置typeHandler不生效的解決
這篇文章主要介紹了mybaties plus實(shí)體類(lèi)設(shè)置typeHandler不生效的解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-08-08Java日期工具類(lèi)DateUtils實(shí)例詳解
這篇文章主要為大家詳細(xì)介紹了Java日期工具類(lèi)DateUtils實(shí)例,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-12-12SpringBoot構(gòu)造器注入循環(huán)依賴及解決方案
這篇文章主要介紹了SpringBoot構(gòu)造器注入循環(huán)依賴及解決方案,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2024-03-03SpringBoot使用自動(dòng)配置xxxAutoConfiguration
這篇文章介紹了SpringBoot自動(dòng)配置xxxAutoConfiguration的使用方法,對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-12-12