【图片叠加组合 】

package wkrjsystem.utils;

import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.net.URL;

import javax.imageio.ImageIO;


/**
 * @author CXR
 * @version 创建时间:2019年5月8日 上午9:49:57
 * 功能:图片合成
 */
public class SynthesisImg {

	private Font       font     = new Font("宋体", Font.PLAIN, 12); // 添加字体的属性设置  
	 
    private Graphics2D g        = null;
 
    private int        fontsize = 0;
 
    private int        x        = 0;
 
    private int        y        = 0;
    /** 
     * 导入本地图片到缓冲区 
     */
    public BufferedImage loadImageLocal(String imgName) {
        try {
            return ImageIO.read(new File(imgName));
        } catch (IOException e) {
            System.out.println(e.getMessage());
        }
        return null;
    }
    /** 
     * 导入网络图片到缓冲区 
     */
    public BufferedImage loadImageUrl(String imgName) {
        try {
            URL url = new URL(imgName);
            return ImageIO.read(url);
        } catch (IOException e) {
            System.out.println(e.getMessage());
        }
        return null;
    }
    /** 
     * 生成新图片到本地 
     */
    public void writeImageLocal(String newImage, BufferedImage img) {
        if (newImage != null && img != null) {
            try {
                File outputfile = new File(newImage);
                ImageIO.write(img, "jpg", outputfile);
            } catch (IOException e) {
                System.out.println(e.getMessage());
            }
        }
    }
    /** 
     * 设定文字的字体等 
     */
    public void setFont(String fontStyle, int fontSize) {
        this.fontsize = fontSize;
        this.font = new Font(fontStyle, Font.PLAIN, fontSize);
    }
    /** 
     * 修改图片,返回修改后的图片缓冲区(只输出一行文本) 
     */
    public BufferedImage modifyImage(BufferedImage img, Object content, int x, int y) {
 
        try {
            int w = img.getWidth();
            int h = img.getHeight();
            g = img.createGraphics();
            g.setBackground(Color.WHITE);
            g.setColor(Color.orange);//设置字体颜色  
            if (this.font != null)
                g.setFont(this.font);
            // 验证输出位置的纵坐标和横坐标  
            if (x >= h || y >= w) {
                this.x = h - this.fontsize + 2;
                this.y = w;
            } else {
                this.x = x;
                this.y = y;
            }
            if (content != null) {
                g.drawString(content.toString(), this.x, this.y);
            }
            g.dispose();
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
 
        return img;
    }
    /** 
     * 修改图片,返回修改后的图片缓冲区(输出多个文本段) xory:true表示将内容在一行中输出;false表示将内容多行输出 
     */
    public BufferedImage modifyImage(BufferedImage img, Object[] contentArr, int x, int y,
                                     boolean xory) {
        try {
            int w = img.getWidth();
            int h = img.getHeight();
            g = img.createGraphics();
            g.setBackground(Color.WHITE);
            g.setColor(Color.RED);
            if (this.font != null)
                g.setFont(this.font);
            // 验证输出位置的纵坐标和横坐标  
            if (x >= h || y >= w) {
                this.x = h - this.fontsize + 2;
                this.y = w;
            } else {
                this.x = x;
                this.y = y;
            }
            if (contentArr != null) {
                int arrlen = contentArr.length;
                if (xory) {
                    for (int i = 0; i < arrlen; i++) {
                        g.drawString(contentArr[i].toString(), this.x, this.y);
                        this.x += contentArr[i].toString().length() * this.fontsize / 2 + 5;// 重新计算文本输出位置  
                    }
                } else {
                    for (int i = 0; i < arrlen; i++) {
                        g.drawString(contentArr[i].toString(), this.x, this.y);
                        this.y += this.fontsize + 2;// 重新计算文本输出位置  
                    }
                }
            }
            g.dispose();
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
 
        return img;
    }
    /** 
     * 修改图片,返回修改后的图片缓冲区(只输出一行文本) 
     *  
     * 时间:2007-10-8 
     *  
     * @param img 
     * @return 
     */
    public BufferedImage modifyImageYe(BufferedImage img) {
 
        try {
            int w = img.getWidth();
            int h = img.getHeight();
            g = img.createGraphics();
            g.setBackground(Color.WHITE);
            g.setColor(Color.blue);//设置字体颜色  
            if (this.font != null)
                g.setFont(this.font);
            g.drawString("www.hi.baidu.com?xia_mingjian", w - 85, h - 5);
            g.dispose();
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
 
        return img;
    }
 
    public BufferedImage modifyImagetogeter(BufferedImage b, BufferedImage d) {
 
        try {
            int w = b.getWidth();
            int h = b.getHeight();
            g = d.createGraphics();
            g.drawImage(b, 250, 100, w, h, null);
            g.dispose();
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
 
        return d;
    }
 
    public static void main(String[] args) {
 
    	SynthesisImg tt = new SynthesisImg();
    	//背景图
        BufferedImage d = tt.loadImageLocal("E:\\apache-tomcat-7.0.57-windows-x64\\apache-tomcat-7.0.57\\webapps\\java\\upload\\filenew\\20190508330170.png");
        //中间图
        BufferedImage b = tt.loadImageLocal("E:\\apache-tomcat-7.0.57-windows-x64\\apache-tomcat-7.0.57\\webapps\\java\\upload\\qrcode\\1b5c270f-67bf-4ced-9520-1d599ec394c6.png");  
        //往图片上写文件  
        //tt.writeImageLocal("E:\\ploanshare\\2\\22.jpg", tt.modifyImage(d, "000000", 90, 90));
        //获取路径后缀
        String suffix = "E:\\apache-tomcat-7.0.57-windows-x64\\apache-tomcat-7.0.57\\webapps\\java\\upload\\filenew\\20190508330170.png"
        		.substring("E:\\apache-tomcat-7.0.57-windows-x64\\apache-tomcat-7.0.57\\webapps\\java\\upload\\filenew\\20190508330170.png".lastIndexOf(".") + 1);
        tt.writeImageLocalNew(suffix,"E:\\apache-tomcat-7.0.57-windows-x64\\apache-tomcat-7.0.57\\webapps\\java\\upload\\cc.jpg", tt.modifyImagetogeterNew(b, d));  
        //将多张图片合在一起  
        //System.out.println("success");
    }
    public void writeImageLocalNew(String suffix,String newImage, BufferedImage img) {
        if (newImage != null && img != null) {
            try {
                File outputfile = new File(newImage);
                ImageIO.write(img, suffix, outputfile);
            } catch (IOException e) {
                System.out.println(e.getMessage());
            }
        }
    }
    public BufferedImage modifyImagetogeterNew(BufferedImage b, BufferedImage d) {
    	 
        try {
            int w = b.getWidth();
            int h = b.getHeight();
            w=182;
            h=182;
            g = d.createGraphics();
            g.drawImage(b, 272, 102, w, h, null);
            g.dispose();
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
 
        return d;
    }
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值