我有一个数组int [28] [28],由数字0-255组成。 0-黑色,255-白色。我需要制作尺寸为28x28px的图像。怎么做?
答案 0 :(得分:1)
从概念上讲,这个想法很简单。 BufferedImage
可能是更好的选择之一,因为它提供了您也可以编写的可变缓冲区。它可以显示并输出到磁盘。
您需要解决的问题是将“颜色”转换为API使用的“压缩int
”值。
虽然这实际上是一个合理的通用解决方案,但我看到太多的人在实现算法时犯了简单的错误,因此,我改而使用可用的Color
类。它不那么“高效”,但是我不认为您正在尝试产生一种需要每秒运行数百帧的解决方案;)
Random rnd = new Random();
int[][] pixels = new int[128][128];
for (int y = 0; y < 128; y++) {
for (int x = 0; x < 128; x++) {
pixels[y][x] = rnd.nextInt(255);
}
}
BufferedImage img = new BufferedImage(128, 128, BufferedImage.TYPE_INT_RGB);
for (int y = 0; y < 128; y++) {
for (int x = 0; x < 128; x++) {
Color color = new Color(pixels[y][x], pixels[y][x], pixels[y][x]);
img.setRGB(x, y, color.getRGB());
}
}
JOptionPane.showMessageDialog(null, new JLabel(new ImageIcon(img)));
try {
ImageIO.write(img, "png", new File("SuperDuppa.png"));
} catch (IOException ex) {
ex.printStackTrace();
}