Skip to content

Instantly share code, notes, and snippets.

View Aloento's full-sized avatar
🇨🇳
SoarCraft

Aloento Aloento

🇨🇳
SoarCraft
  • SoarCraft
  • Foot of Sacred Mountain
View GitHub Profile
@Aloento
Aloento / MergeAlpha.java
Last active June 10, 2021 04:15
Merge Alpha Mask and RGB Image with Java
package com.QYun.Test;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;
public class MergeAlpha {
public static void main(String[] args) {
try {
var image = ImageIO.read(new File("src/main/resources/rgb.png"));