91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java實現的上傳并壓縮圖片功能【可等比例壓縮或原尺寸壓縮】

發布時間:2020-09-11 08:53:06 來源:腳本之家 閱讀:328 作者:赤砂之蝎我愛羅 欄目:編程語言

本文實例講述了Java實現的上傳并壓縮圖片功能。分享給大家供大家參考,具體如下:

先看效果:

原圖:1.33M

Java實現的上傳并壓縮圖片功能【可等比例壓縮或原尺寸壓縮】

處理后:27.4kb

Java實現的上傳并壓縮圖片功能【可等比例壓縮或原尺寸壓縮】

關鍵代碼:

package codeGenerate.util;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import javax.imageio.ImageIO;
public class ImageZipUtil {
  public static void main(String[] args) {
    zipWidthHeightImageFile(new File("C:\\spider\\3.png"),new File("C:\\spider\\3-1.jpg"),425,638,0.7f);
    //zipImageFile(new File("C:\\spider\\2.JPG"),new File("C:\\spider\\2-2.JPG"),425,638,0.7f);
    //zipImageFile(new File("C:\\spider\\3.jpg"),new File("C:\\spider\\3-3.jpg"),425,638,0.7f);
    System.out.println("ok");
  }
  /**
   * 根據設置的寬高等比例壓縮圖片文件<br> 先保存原文件,再壓縮、上傳
   * @param oldFile 要進行壓縮的文件
   * @param newFile 新文件
   * @param width 寬度 //設置寬度時(高度傳入0,等比例縮放)
   * @param height 高度 //設置高度時(寬度傳入0,等比例縮放)
   * @param quality 質量
   * @return 返回壓縮后的文件的全路徑
   */
  public static String zipImageFile(File oldFile,File newFile, int width, int height,float quality) {
    if (oldFile == null) {
      return null;
    }
    try {
      /** 對服務器上的臨時文件進行處理 */
      Image srcFile = ImageIO.read(oldFile);
      int w = srcFile.getWidth(null);
      int h = srcFile.getHeight(null);
      double bili;
      if(width>0){
        bili=width/(double)w;
        height = (int) (h*bili);
      }else{
        if(height>0){
          bili=height/(double)h;
          width = (int) (w*bili);
        }
      }
      String srcImgPath = newFile.getAbsoluteFile().toString();
      System.out.println(srcImgPath);
      String subfix = "jpg";
      subfix = srcImgPath.substring(srcImgPath.lastIndexOf(".")+1,srcImgPath.length());
      BufferedImage buffImg = null;
      if(subfix.equals("png")){
        buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
      }else{
        buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
      }
      Graphics2D graphics = buffImg.createGraphics();
      graphics.setBackground(new Color(255,255,255));
      graphics.setColor(new Color(255,255,255));
      graphics.fillRect(0, 0, width, height);
      graphics.drawImage(srcFile.getScaledInstance(width, height, Image.SCALE_SMOOTH), 0, 0, null);
      ImageIO.write(buffImg, subfix, new File(srcImgPath));
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    }
    return newFile.getAbsolutePath();
  }
  /**
   * 按設置的寬度高度壓縮圖片文件<br> 先保存原文件,再壓縮、上傳
   * @param oldFile 要進行壓縮的文件全路徑
   * @param newFile 新文件
   * @param width 寬度
   * @param height 高度
   * @param quality 質量
   * @return 返回壓縮后的文件的全路徑
   */
  public static String zipWidthHeightImageFile(File oldFile,File newFile, int width, int height,float quality) {
    if (oldFile == null) {
      return null;
    }
    String newImage = null;
    try {
      /** 對服務器上的臨時文件進行處理 */
      Image srcFile = ImageIO.read(oldFile);
      String srcImgPath = newFile.getAbsoluteFile().toString();
      System.out.println(srcImgPath);
      String subfix = "jpg";
      subfix = srcImgPath.substring(srcImgPath.lastIndexOf(".")+1,srcImgPath.length());
      BufferedImage buffImg = null;
      if(subfix.equals("png")){
        buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
      }else{
        buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
      }
      Graphics2D graphics = buffImg.createGraphics();
      graphics.setBackground(new Color(255,255,255));
      graphics.setColor(new Color(255,255,255));
      graphics.fillRect(0, 0, width, height);
      graphics.drawImage(srcFile.getScaledInstance(width, height, Image.SCALE_SMOOTH), 0, 0, null);
      ImageIO.write(buffImg, subfix, new File(srcImgPath));
    } catch (FileNotFoundException e) {
      e.printStackTrace();
    } catch (IOException e) {
      e.printStackTrace();
    }
    return newImage;
  }
}

說明:

1、根據需求大家可以自行設置質量參數quality,到底設置成多少,可以先看下效果在取值;

2、網上通用的方法用的是jdk自帶jar包中方法,我這里衍生了一下:用Graphics2D,能夠同時處理jpg和png格式;

3、new Color(255,255,255)是白色,等同于WHITE,但是用WHITE 的話,Linux下某些圖片會有其它色值;

4、main中的寬425和高638可以根據自己的需求自行設置,但是對于長和寬一樣的,按照400(小值的值425)*400來處理;

更多java相關內容感興趣的讀者可查看本站專題:《Java圖片操作技巧匯總》、《java日期與時間操作技巧匯總》、《Java操作DOM節點技巧總結》、《Java文件與目錄操作技巧匯總》及《Java數據結構與算法教程》。

希望本文所述對大家java程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

营口市| 益阳市| 当雄县| 东明县| 常熟市| 岑巩县| 利川市| 永川市| 阿克| 攀枝花市| 马关县| 象山县| 三都| 灌南县| 迁西县| 曲麻莱县| 湖南省| 霍山县| 久治县| 杨浦区| 中牟县| 云安县| 叙永县| 凯里市| 咸丰县| 班戈县| 隆回县| 仙游县| 嘉兴市| 托克托县| 崇明县| 道真| 湘乡市| 清徐县| 彭水| 锦屏县| 始兴县| 天长市| 崇信县| 商河县| 聂荣县|