java代码合成多张图片成一张

将多张图片合成一张,不多说直接上代码:注意当图片宽度不同时会报数组下标异常。

	/**
	 * 
	 *@类功能说明:java拼接多张图片,生成的格式是jpg、bmp、gif等,
	 *            如果其他格式则报错或者photoshop或者画图工具打不开
	 *@修改人员名: yang
	 *@修改日期:2016-3-10 上午10:35:04
	 *@创建时间:2016-3-10 上午10:35:04
	 * -------------------------------------------------------------------------------------------
	 *  修改次数         修改人员    修改内容                       修改原因                     
	 *                                                                                                                                   
	 * @备注:只能拼接同类型的图片(不能连续拼接)、宽度需要一致(高度可以不限制)
	 * @版本: V1.0
	 */
public class JoinMoreImage  {

	/** 
	    * Java拼接多张图片 
	    *  
	    * @param imgs 图片地址集合
	    * @param type 图片类型
	    * @param dst_pic //输出的文件:F:/test2.jpg
	    * @return 
	    */  
	   public static boolean merge(String[] imgs, String type, String dst_pic) {  
	    //获取需要拼接的图片长度
	       int len = imgs.length;  
	       //判断长度是否大于0
	       if (len < 1) {  
	           return false;  
	       }  
	       File[] src = new File[len];  
	       BufferedImage[] images = new BufferedImage[len];  
	       int[][] ImageArrays = new int[len][];  
	       for (int i = 0; i < len; i++) {  
	           try {  
	               src[i] = new File(imgs[i]);  
	               images[i] = ImageIO.read(src[i]);  
	           } catch (Exception e) {  
	               e.printStackTrace();  
	               return false;  
	           }  
	           int width = images[i].getWidth();  
	           int height = images[i].getHeight();  
	        // 从图片中读取RGB 像素
	           ImageArrays[i] = new int[width * height];
	           ImageArrays[i] = images[i].getRGB(0, 0, width, height,  ImageArrays[i], 0, width);  
	       }  
	 
	       int dst_height = 0;  
	       int dst_width = images[0].getWidth();  
	     //合成图片像素
	       for (int i = 0; i < images.length; i++) {  
	           dst_width = dst_width > images[i].getWidth() ? dst_width     : images[i].getWidth();  
	           dst_height += images[i].getHeight();  
	       }  
	       //合成后的图片
	       System.out.println("宽度:"+dst_width);  
	       System.out.println("高度:"+dst_height);  
	       if (dst_height < 1) {  
	           System.out.println("dst_height < 1");  
	           return false;  
	       }  
	       // 生成新图片   
	       try {  
	           dst_width = images[0].getWidth();   
	           BufferedImage ImageNew = new BufferedImage(dst_width, dst_height,  
	                   BufferedImage.TYPE_INT_RGB);  
	           int height_i = 0;  
	           for (int i = 0; i < images.length; i++) {  
	               ImageNew.setRGB(0, height_i, dst_width, images[i].getHeight(),  
	                       ImageArrays[i], 0, dst_width);  
	               height_i += images[i].getHeight();  
	           }  
	 
	           File outFile = new File(dst_pic);  
	           ImageIO.write(ImageNew, type, outFile);// 写图片 ,输出到硬盘 
	       } catch (Exception e) {  
	           e.printStackTrace();  
	           return false;  
	       }  
	       return true;  
	   }  
	   
       //测试类:注意图片的长宽高不一致可能会报错
	public static void main(String[] args) {
	//输入图片地址
	String[] imgs={"F:/tomcat7/webapps/PicLive/image/fc24fa10-31.jpg","F:/tomcat7/webapps/PicLive/image/08f48370-.jpg"};
	//调用方法生成图片
	JoinMoreImage.merge(imgs,"jpg","F:/test.jpg");
	
	}
	
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值