【原創(chuàng)】ImageUtil 和 ImageMerge工具類


import com.drew.imaging.ImageMetadataReader;

import com.drew.imaging.ImageProcessingException;

import com.drew.metadata.Directory;

import com.drew.metadata.Metadata;

import com.drew.metadata.Tag;

import java.awt.*;

import java.awt.image.BufferedImage;

import java.io.IOException;

import java.io.InputStream;

import java.math.BigDecimal;

import java.util.HashMap;

import java.util.Map;

public class ImageUtil {

/**

* 按指定寬度 等比例縮放圖片

*

    * @param bufferedImage 圖片

    * @throws IOException

*/

    public static BufferedImagethumbnail(BufferedImage bufferedImage, String suffix)throws IOException {

        Integer originalWidth = bufferedImage.getWidth();

        Integer originalHeight = bufferedImage.getHeight();

        int wscale = Math.round((originalWidth /500) *100) /100;

        int hscale = Math.round((originalHeight /500) *100) /100;

        int scale = Math.max(wscale, hscale);

        if (scale <2) {
            scale =2;
        }
        int newWidth = originalWidth / scale;
        int newHeight = originalHeight / scale;
        if (suffix !=null &&(suffix.trim().toLowerCase().endsWith("png")         
              ||suffix.trim().toLowerCase().endsWith("gif"))) {
              bufferedImage =dealPngAndGif(bufferedImage, newWidth, newHeight);
        }else {
              bufferedImage =dealCommon(bufferedImage, newWidth, newHeight);
        }

        if (newWidth > newHeight) {
             //長方形寬大于高蟋软,截掉部分寬
            int i =new BigDecimal(newWidth).subtract(new BigDecimal(newHeight)).intValue();
            bufferedImage = bufferedImage.getSubimage(i /2, 0, newHeight, newHeight);
        }else if (newWidth < newHeight) {
            //長方形高大于寬舷暮,截掉部分高
            int i =new BigDecimal(newHeight).subtract(new BigDecimal(newWidth)).intValue();
            bufferedImage = bufferedImage.getSubimage(0, i /2, newWidth, newWidth);
        }
        return bufferedImage;

    }

    /**
     * 生成高質(zhì)量圖片
     *
     * @param bufferedImage 圖片
     * @throws IOException
     */
    public static BufferedImagehighDefinition(BufferedImage bufferedImage, String suffix)
                                              throws IOException {
        Integer originalWidth = bufferedImage.getWidth();
        Integer originalHeight = bufferedImage.getHeight();
        if (originalWidth <3000) {
            return bufferedImage;
        }
        int newWidth =new BigDecimal(originalWidth).divide(
            new BigDecimal(1.6), 2, BigDecimal.ROUND_HALF_DOWN).intValue();
        int newHeight =new BigDecimal(originalHeight).divide(
            new BigDecimal(1.6), 2, BigDecimal.ROUND_HALF_DOWN).intValue();
        if (suffix !=null &&(suffix.trim().toLowerCase().endsWith("png") || suffix.trim().toLowerCase().endsWith("gif"))) {
            return dealPngAndGif(bufferedImage, newWidth, newHeight);
        }else {
            return dealCommon(bufferedImage, newWidth, newHeight);
        }
}

    /**
     * 處理gif圖片
     *
     * @param bufferedImage 圖片流
     * @param width        寬度
     * @param height        高度
     * @return
     */
    private static BufferedImagedealPngAndGif(BufferedImage bufferedImage, int width, int height) {
        // 處理 png 背景變黑的問題
        BufferedImage newImage =new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
        Graphics2D graphics2D = newImage.createGraphics();
        newImage =graphics2D.getDeviceConfiguration().createCompatibleImage(width, height, Transparency.TRANSLUCENT);
        graphics2D.dispose();
        graphics2D = newImage.createGraphics();
        graphics2D.drawImage(bufferedImage.getScaledInstance(width, height, Image.SCALE_AREA_AVERAGING), 0, 0, null);
        graphics2D.dispose();
        return newImage;
    }

    /**
     * 普通圖片處理
     *
     * @param bufferedImage 圖片流
     * @param width        寬度
     * @param height        高度
     * @return
     */
    private static BufferedImagedealCommon(BufferedImage bufferedImage, int width, int height) {
         BufferedImage newImage =new BufferedImage(width, height, bufferedImage.getType());
         Graphics graphics = newImage.getGraphics();
         graphics.drawImage(bufferedImage, 0, 0, width, height, null);
         graphics.dispose();
         return newImage;
    }

    /**
     * 翻轉(zhuǎn)類
     *
     * @param src
     * @param imagePro
     * @param ro
     * @return
     */
    public static BufferedImageconvert(BufferedImage src, Map imagePro, int ro) {
        int angle =90 * ro;
        int type = src.getColorModel().getTransparency();
        int wid = imagePro.get("width");
        int hei = imagePro.get("height");
        if (ro %2 !=0) {
            int temp = imagePro.get("width");
            imagePro.put("width", imagePro.get("height"));
            imagePro.put("height", temp);
        }
        Rectangle re =new Rectangle(new Dimension(imagePro.get("width"), imagePro.get("height")));
        BufferedImage BfImg =null;
        BfImg =new BufferedImage(re.width, re.height, type);
        Graphics2D g2 = BfImg.createGraphics();
        g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
                              RenderingHints.VALUE_INTERPOLATION_BILINEAR);
        g2.rotate(Math.toRadians(angle), re.width /2, re.height /2);
        g2.drawImage(src, (re.width - wid) /2, (re.height - hei) /2, null);
        g2.dispose();
        return BfImg;
    }

    /**
     * 是否需要翻轉(zhuǎn)
     *
     * @param map
     * @return
     */
    public static int getAngle(Map map) {
        int ro =0;
        if (map.get("Orientation") !=null) {
            String ori = map.get("Orientation").toString();
            if (ori.indexOf("90") >=0) {
                ro =1;
            }else if (ori.indexOf("180") >=0) {
                ro =2;
            }else if (ori.indexOf("270") >=0) {
               ro =3;
            }
        }
        return ro;
  }

  /**
   * 獲取圖片exif信息
   *
   * @param inputStream
   * @return
   * @throws ImageProcessingException
   * @throws IOException
   */
    public static MapgetExif(InputStream inputStream)throws ImageProcessingException, IOException {
        Metadata metadata = ImageMetadataReader.readMetadata(inputStream);
        return printExif(metadata);
    }

    /**
     * 將旋轉(zhuǎn)角度信息拿到
     */
    private static MapprintExif(Metadata metadata) {
        Map map =new HashMap();
        String tagName =null;
        String desc =null;
        for (Directory directory : metadata.getDirectories()) {
            for (Tag tag : directory.getTags()) {
                tagName = tag.getTagName();
                desc = tag.getDescription();
                if (tagName.equals("Orientation")) {
                      map.put("Orientation", desc);
                }
            }
         }
        return map;
    }

}

-------------------------------------------------------分割線--------------------------------------------------


import javax.imageio.ImageIO;

import java.awt.*;

import java.awt.image.BufferedImage;

import java.io.*;

import java.math.BigDecimal;

/**
 * 圖片拼接類.
 */
public class ImageMerge {

  /**
   * 圖片拼接類
   *
   * @param inputStreams 圖片流
   * @param text1        底部文字1
   * @param text2        底部文字2
   * @param isCodeImage  是否有2維碼
   * @return
   * @throws Exception
   */
    public static BufferedImagedoMerge(InputStream[] inputStreams, String text1, String text2, Boolean isCodeImage)throws Exception {
    if (isCodeImage) {
            BufferedImage[] bufferedImages =new BufferedImage[inputStreams.length];
            int width =1600;
            for (int i =0; i < inputStreams.length -1; i++) {
                bufferedImages[i] = ImageIO.read(inputStreams[i]);
            }
            bufferedImages[inputStreams.length -1] =generateImg(inputStreams[inputStreams.length -1], width, text1, text2);
            return dealImage(bufferedImages, width);
        }else {
            BufferedImage[] bufferedImages =new BufferedImage[inputStreams.length +1];
            int width =1600;
            for (int i =0; i < inputStreams.length; i++) {
                bufferedImages[i] = ImageIO.read(inputStreams[i]);
            }

            if (text1 !=null || text2 !=null) {
                  bufferedImages[inputStreams.length] =generateImg(null, width, text1, text2);
            }
            return dealImage(bufferedImages, width);
        }
    }

    /**
     * 圖片等寬處理
     *
     * @param bufferedImages 圖片緩存
     * @param width          寬度
     * @return
     */
    private static BufferedImagedealImage(BufferedImage[] bufferedImages, int width) {
        BufferedImage[] bufferedImagesNew =new BufferedImage[bufferedImages.length];
        for (int i =0; i < bufferedImages.length; i++) {
            BufferedImage originImage = bufferedImages[i];
            int originWidth = originImage.getWidth();
            int originHeight = originImage.getHeight();
            BigDecimal scale =new BigDecimal(originWidth).divide(new BigDecimal(width), 10, BigDecimal.ROUND_HALF_DOWN);
            int height =new BigDecimal(originHeight).divide(scale, 10, BigDecimal.ROUND_HALF_DOWN).intValue();
            BufferedImage newImage =new BufferedImage(width, height, originImage.getType());
            Graphics graphics = newImage.getGraphics();
            graphics.drawImage(originImage, 0, 0, width, height, null);
            graphics.dispose();
            bufferedImagesNew[i] = newImage;
        }
        return mergeImage(bufferedImagesNew, width);
    }

    /**
     * 拼接圖片
     *
     * @param images img1 ,img2
     */
    public static BufferedImagemergeImage(BufferedImage[] images, int width) {
        int len = images.length;
        if (len <1) {
            throw new RuntimeException("圖片數(shù)量小于1");
        }
        int height =0;
        for (int i =0; i < len; i++) {
            height += images[i].getHeight();
        }
        int gap =3;
        height += (len -1) * gap;
        // 生成新圖片
        BufferedImage imageNew =new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
        //增加少許圖片間隙
        BufferedImage blank =new BufferedImage(width, gap, BufferedImage.TYPE_INT_RGB);
        Graphics2D graphics2D = blank.createGraphics();
        graphics2D.setBackground(Color.WHITE);
        graphics2D.fillRect(0, 0, width, gap);
        int[] blankArray = blank.getRGB(0, 0, width, gap, new int[width * gap], 0, width);
        int startY =0;
        for (int i =0; i < images.length; i++) {
            int iWidth = images[i].getWidth();
            int iHeight = images[i].getHeight();
            // 逐行掃描圖像中各個像素的RGB到數(shù)組中
            int[] imageArray = images[i].getRGB(0, 0, iWidth, iHeight, new int[iWidth * iHeight], 0, iWidth);
            imageNew.setRGB(0, startY, width, iHeight, imageArray, 0, width);
            startY += iHeight;
            if (i < (images.length -1)) {
                imageNew.setRGB(0, startY, width, gap, blankArray, 0, width);
                startY += gap;
            }
        }
        return imageNew;
    }

    /**
     * 生成拼接的二維碼
     *
     * @param codeInputStream 二維碼圖片
     * @param width          寬度
     * @param text1          底部文字1
     * @param text2          底部文字2
     * @return
     * @throws Exception
     */
    public static BufferedImagegenerateImg(InputStream codeInputStream, int width, String text1, String text2)throws Exception {
      int height =new BigDecimal(width).divide(new BigDecimal(4), 10,BigDecimal.ROUND_HALF_DOWN).intValue();
        // 生成底部圖片
        BufferedImage imageLocal =new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
        // 以原圖片為模板
        Graphics2D graphics2D = imageLocal.createGraphics();
        graphics2D.setBackground(Color.WHITE);
        graphics2D.fillRect(0, 0, width, height);
        if (codeInputStream !=null) {
            // 加載用戶的二維碼
            BufferedImage imageCode = ImageIO.read(codeInputStream);
            // 在模板上添加用戶二維碼(地址,左邊距,上邊距,圖片寬度,圖片高度,未知)
            graphics2D.drawImage(imageCode, width - height + (height /4), height /4, height /2, height /2, null);
        }
        //設(shè)置文本樣式
        int fontSize =new BigDecimal(width).divide(new BigDecimal(30), 10, BigDecimal.ROUND_HALF_DOWN).intValue();
        graphics2D.setFont(new Font("宋體", Font.BOLD, fontSize));
        graphics2D.setColor(Color.black);
        //計算文字長度拦盹,計算居中的x點(diǎn)坐標(biāo)
        graphics2D.drawString(text1, width /20, (height /4) + fontSize);
        graphics2D.setFont(new Font("宋體", Font.PLAIN, fontSize *7 /10));
        graphics2D.setColor(Color.darkGray);
        graphics2D.drawString(text2, width /20, (height *3 /4) - (fontSize /2));
        return imageLocal;
     }
}

使用方式:

         int ro = ImageUtil.getAngle(ImageUtil.getExif(file.getInputStream())); --判斷圖片是否旋轉(zhuǎn)

         BufferedImage afterImage = ImageUtil.convert(bufferedImage, imagePro, ro); --判斷圖片是否旋轉(zhuǎn)

         afterImage = ImageUtil.highDefinition(afterImage, extName); -- 生成高質(zhì)量圖片

         BufferedImage thumbnail = ImageUtil.thumbnail(afterImage, extName); --生成縮略圖

         ImageMerge.doMerge(inputStreams, text1, text2, isCodeImage);  --圖片拼接
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市待锈,隨后出現(xiàn)的幾起案子篡帕,更是在濱河造成了極大的恐慌耗拓,老刑警劉巖留美,帶你破解...
    沈念sama閱讀 211,817評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件彰檬,死亡現(xiàn)場離奇詭異,居然都是意外死亡谎砾,警方通過查閱死者的電腦和手機(jī)逢倍,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來景图,“玉大人较雕,你說我怎么就攤上這事≈⑿” “怎么了郎笆?”我有些...
    開封第一講書人閱讀 157,354評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長忘晤。 經(jīng)常有香客問我宛蚓,道長,這世上最難降的妖魔是什么设塔? 我笑而不...
    開封第一講書人閱讀 56,498評論 1 284
  • 正文 為了忘掉前任凄吏,我火速辦了婚禮,結(jié)果婚禮上闰蛔,老公的妹妹穿的比我還像新娘痕钢。我一直安慰自己,他們只是感情好序六,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,600評論 6 386
  • 文/花漫 我一把揭開白布任连。 她就那樣靜靜地躺著,像睡著了一般例诀。 火紅的嫁衣襯著肌膚如雪随抠。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,829評論 1 290
  • 那天繁涂,我揣著相機(jī)與錄音拱她,去河邊找鬼。 笑死扔罪,一個胖子當(dāng)著我的面吹牛秉沼,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播矿酵,決...
    沈念sama閱讀 38,979評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼唬复,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了坏瘩?” 一聲冷哼從身側(cè)響起盅抚,我...
    開封第一講書人閱讀 37,722評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎倔矾,沒想到半個月后妄均,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,189評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡哪自,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,519評論 2 327
  • 正文 我和宋清朗相戀三年丰包,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片壤巷。...
    茶點(diǎn)故事閱讀 38,654評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡邑彪,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出胧华,到底是詐尸還是另有隱情寄症,我是刑警寧澤宙彪,帶...
    沈念sama閱讀 34,329評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站有巧,受9級特大地震影響释漆,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜篮迎,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,940評論 3 313
  • 文/蒙蒙 一男图、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧甜橱,春花似錦逊笆、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,762評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至譬胎,卻和暖如春差牛,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背堰乔。 一陣腳步聲響...
    開封第一講書人閱讀 31,993評論 1 266
  • 我被黑心中介騙來泰國打工偏化, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人镐侯。 一個月前我還...
    沈念sama閱讀 46,382評論 2 360
  • 正文 我出身青樓侦讨,卻偏偏與公主長得像,于是被迫代替她去往敵國和親苟翻。 傳聞我的和親對象是個殘疾皇子韵卤,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,543評論 2 349