我正在将彩色图像转换为黑白图像。我为此使用 BufferedImage,类型为 TYPE_BYTE_BINARY。但输出图像未正确转换。例如,如果图像包含黑色背景上的蓝色字母,则该部分的结果图像是全黑的。有谁能够帮我?我的代码如下。
//Invert the colormodel
byte[] map = new byte[] { (byte) (255), (byte) (0) };
IndexColorModel colorModel = new IndexColorModel(1, 2, map,
map, map);
BufferedImage bufferedImage = new BufferedImage(
img.getWidth(null), img.getHeight(null),
BufferedImage.TYPE_BYTE_BINARY, colorModel);
Graphics2D g2 = bufferedImage.createGraphics();
g2.drawImage(img, 0, 0, null);
g2.dispose();