Merging two images
Just create a new BufferedImage with transparency, then paint the other two images (with full or semi-transparency) on it. This is how it will look like: Sample code (images are called ‘image.png’ and ‘overlay.png’): File path = … // base path of the images // load source images BufferedImage image = ImageIO.read(new File(path, “image.png”)); BufferedImage … Read more