隨筆-179  評論-666  文章-29  trackbacks-0

           

          源代碼/**
             * 圖二的位置 從左上角開始
             * @param x
             * @param y
             */
            public void createPicTwo(int x,int y)
            {
                try
                {
                  //讀取第一張圖片
                  File fileOne = new File("c:\\1.gif");
                  BufferedImage ImageOne = ImageIO.read(fileOne);
                  int width = ImageOne.getWidth();//圖片寬度
                  int height = ImageOne.getHeight();//圖片高度
                  //從圖片中讀取RGB
                  int[] ImageArrayOne = new int[width*height];
                  ImageArrayOne = ImageOne.getRGB(0,0,width,height,ImageArrayOne,0,width);
                  //對第二張圖片做相同的處理
                  File fileTwo = new File("c:\\2.gif");
                  BufferedImage ImageTwo = ImageIO.read(fileTwo);
                  int widthTwo = ImageTwo.getWidth();//圖片寬度
                  int heightTwo = ImageTwo.getHeight();//圖片高度
                  int[] ImageArrayTwo = new int[widthTwo*heightTwo];
                  ImageArrayTwo = ImageTwo.getRGB(0,0,widthTwo,heightTwo,ImageArrayTwo,0,widthTwo);
                 
                  //生成新圖片
                  BufferedImage ImageNew = new BufferedImage(width*2,height,BufferedImage.TYPE_INT_RGB);
                  ImageNew.setRGB(0,0,width,height,ImageArrayOne,0,width);//設(shè)置左半部分的RGB
                  ImageNew.setRGB(x,y,widthTwo,heightTwo,ImageArrayTwo,0,widthTwo);//設(shè)置右半部分的RGB
                  File outFile = new File("c:\\out.png");
                  ImageIO.write(ImageNew, "png", outFile);//寫圖片

                }
                catch(Exception e)
                {
                  e.printStackTrace();
                }
            }



          方法二:解決透明的問題

          源代碼/**
               *
               * @param filesrc
               * @param logosrc
               * @param outsrc
               * @param x 位置
               * @param y 位置
               */
            public void composePic(String filesrc,String logosrc,String outsrc,int x,int y) {
              try {
                  File bgfile = new File(filesrc);
                  Image bg_src = javax.imageio.ImageIO.read(bgfile);
                 
                  File logofile = new File(logosrc);
                  Image logo_src = javax.imageio.ImageIO.read(logofile);
                 
                  int bg_width = bg_src.getWidth(null);
                  int bg_height = bg_src.getHeight(null);
                  int logo_width = logo_src.getWidth(null);;
                  int logo_height = logo_src.getHeight(null);

                  BufferedImage tag = new BufferedImage(bg_width, bg_height, BufferedImage.TYPE_INT_RGB);
                 
                  Graphics2D g2d = tag.createGraphics();
                  g2d.drawImage(bg_src, 0, 0, bg_width, bg_height, null);
                 
                  g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP,1.0f)); //透明度設(shè)置開始 
                  g2d.drawImage(logo_src,x,y,logo_width,logo_height, null);           
                  g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER)); //透明度設(shè)置 結(jié)束
                 
                  FileOutputStream out = new FileOutputStream(outsrc);
                  JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
                  encoder.encode(tag);
                  out.close();
              }catch (Exception e) {
                  e.printStackTrace();
              }
            }

            public static void main(String args[]) {
                Long star = System.currentTimeMillis();
                TwoComposePic pic = new TwoComposePic();
                pic.composePic("c:\\bb.gif","c:\\bc.gif","c:\\out_pic.gif",490,360);
                Long end =System.currentTimeMillis();
                System.out.print("time====:"+(end-star));
            }

          posted on 2007-08-20 16:01 Alpha 閱讀(7856) 評論(3)  編輯  收藏 所屬分類: Java J2EE JSP

          評論:
          # re: java 圖片合成 解決圖片失真問題 2013-05-24 10:51 | 鮑俊虎
          請問為什么我合成的圖片右邊是全黑的啊,急!!!  回復(fù)  更多評論
            
          # re: javhttp://www.aygfsteel.com/Modules/CaptchaImage/JpegImage.aspx?cacheid=20130729150734a 圖片合成 解決圖片失真問題 2013-07-29 15:16 | http://wwwhttp://www.aygfsteel.com/Modules/CaptchaI
          # re: java 圖片合成 解決圖片失真問題[未登錄] 2013-10-09 11:45 | 卡卡
          你的底圖寬度不夠吧?@鮑俊虎
            回復(fù)  更多評論
            
          主站蜘蛛池模板: 化德县| 格尔木市| 黄龙县| 五莲县| 广灵县| 枞阳县| 崇仁县| 启东市| 郧西县| 宜州市| 永宁县| 阳高县| 宣恩县| 长武县| 吉木萨尔县| 伊宁县| 两当县| 子长县| 拉孜县| 屯昌县| 青阳县| 古交市| 亚东县| 宜春市| 武清区| 大同市| 田林县| 吕梁市| 绿春县| 武夷山市| 区。| 泗阳县| 增城市| 固安县| 泗水县| 南乐县| 海口市| 望谟县| 富川| 长治市| 广平县|