【原创】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;

    }

    /**
     * 生成高质量图片
     *
     * @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;
    }

    /**
     * 翻转类
     *
     * @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;
    }

    /**
     * 是否需要翻转
     *
     * @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);
    }

    /**
     * 将旋转角度信息拿到
     */
    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("图片数量小于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到数组中
            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);
        }
        //设置文本样式
        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点坐标
        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())); --判断图片是否旋转

         BufferedImage afterImage = ImageUtil.convert(bufferedImage, imagePro, ro); --判断图片是否旋转

         afterImage = ImageUtil.highDefinition(afterImage, extName); -- 生成高质量图片

         BufferedImage thumbnail = ImageUtil.thumbnail(afterImage, extName); --生成缩略图

         ImageMerge.doMerge(inputStreams, text1, text2, isCodeImage);  --图片拼接
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343