JAva簡単透かし除去

1954 ワード

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を参照してください.フォルダの下にあるすべてのピクチャを一括処理する場合は、フォルダを巡回すればいいです.