我有一张白色背景和黑色绘图的图像,我想要反转此图像的颜色。 (黑色背景和白色画)。
所以我制作了一个名为" invertImage()"的方法。 (以上) 但我有黑色的问题。我需要"纯粹"黑色。 (000000)。
但是在我的图像中我也有010101六角黑色,我怎么能在我的方法中添加一个阈值来放置所有黑色"纯粹"黑色(000000)?
感谢。
public static File invertImage(String imageName) {
BufferedImage inputFile = null;
try {
inputFile = ImageIO.read(new File(imageName));
} catch (IOException e) {
e.printStackTrace();
}
for (int x = 0; x < inputFile.getWidth(); x++) {
for (int y = 0; y < inputFile.getHeight(); y++) {
int rgba = inputFile.getRGB(x, y);
Color col = new Color(rgba, true);
col = new Color(255 - col.getRed(),255 - col.getGreen(),255 - col.getBlue());
inputFile.setRGB(x, y, col.getRGB());
}
}
try {
File outputFile = new File(""+imageName+"");
ImageIO.write(inputFile, "png", outputFile);
return outputFile;
} catch (IOException e) {
e.printStackTrace();
}
return null;
}