具有透明背景的javacv图像



我有一张背景透明的PNG图像,要添加到另一张图像中。

我的问题是,当我加载IplImage时,背景不再透明——它变成了白色。

如何在javacv中使用具有透明背景的图像?

IplImage src = cvLoadImage("2.png");
IplImage tmp = cvLoadImage("1.png");
cvSetImageROI(src, cvRect(41,28,tmp.width(),tmp.height())); // not the same size 
cvShowImage("1", src);  //before
cvCopy(src, tmp);
cvShowImage("2", src); //after
cvWaitKey(0);
cvResetImageROI(src);

尝试添加alpha通道,但没有成功:

Graphics g=src.getBufferedImage().getGraphics();
        Graphics2D g2d = (Graphics2D)g;
        g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER,
                                                    10 * 0.1f));
        BufferedImage a = new BufferedImage(tmp.width(), tmp.height(), BufferedImage.TYPE_INT_ARGB);
        src = IplImage.createFrom(a);

thx andrew你对alpha的看法是对的:)我确实花了更多的时间才找到同样有效的东西,但现在是:)

public static void combine()
{
    try{
              File path = new File("D:/proj2/javacv2");
    // load source images
      BufferedImage image = ImageIO.read(new File(path, "3.jpg"));
      BufferedImage overlay = ImageIO.read(new File(path, "test4a.png"));
     // BufferedImage image=src.getBufferedImage();
   // BufferedImage overlay =tmp.getBufferedImage();
    // create the new image, canvas size is the max. of both image sizes
    int w = Math.max(image.getWidth(), overlay.getWidth());
    int h = Math.max(image.getHeight(), overlay.getHeight());
      //int w=tmp.width();
     // int h=tmp.height();
    BufferedImage combined = new BufferedImage(w, h, BufferedImage.TYPE_INT_ARGB);
    // paint both images, preserving the alpha channels
    Graphics g = combined.getGraphics();
    g.drawImage(image, 0, 0, null);
    g.drawImage(overlay, 41, 30, null);
    // Save as new image
       ImageIO.write(combined, "PNG", new File(path, "combined.png"));
    }catch(Exception e)
    {
        System.out.println("exception ");
    }
}

相关内容

  • 没有找到相关文章

最新更新