java 简单去除水印

import javax.imageio.ImageIO;
import javax.imageio.ImageWriter;
import javax.imageio.stream.ImageOutputStream;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.Iterator;

public class Test {
    File imageFile;
    String path;

    public Test(String path) {
        this.imageFile = new File(path);
        this.path = path;
    }

    public void clearWaterMark() throws IOException {
        BufferedImage bi = ImageIO.read(imageFile);
        //水印替换成白色
        Color disColor = new Color(255, 255, 255);
        for (int i = 0; i < bi.getWidth(); i++) {
            for (int j = 0; j < bi.getHeight(); j++) {
                int color = bi.getRGB(i, j);
                Color oriColor = new Color(color);
                int red = oriColor.getRed();
                int greed = oriColor.getGreen();
                int blue = oriColor.getBlue();
                //245,245,245是灰色  这里是把当前像素点由灰色替换成白色
                if (red == 245 && greed == 245 && blue == 245) {
                    bi.setRGB(i, j, disColor .getRGB());
                }
            }
        }
        String type = path.substring(path.lastIndexOf(".") + 1, path.length());
        Iterator it = ImageIO.getImageWritersByFormatName(type);
        ImageWriter writer = it.next();
        File f = new File("目标位置");
        f.getParentFile().mkdirs();
        ImageOutputStream ios = ImageIO.createImageOutputStream(f);
        writer.setOutput(ios);
        writer.write(bi);
        bi.flush();
        ios.flush();
        ios.close();
    }

    public static void main(String[] args) throws IOException {
        Test t = new Test("图片路径");
        t.clearWaterMark();
    }
}

这是简单处理一张本地图片的代码示例,至于从网络上获取的图片流 请查看BufferedImage API, 如果要批量处理某一文件夹下的所有图片,遍历文件夹即可

你可能感兴趣的:(java)