我有一个二维数组。我希望每个像素在实际图像中总共由四个表示。我尝试了各种代码,但似乎都没有工作,我也不太明白它是如何工作的。
到目前为止,我有:
panel = new JPanel() {
@Override
public void paint(Graphics g) {
Rectangle rect = g.getClipBounds();
g.setColor(Color.white);
g.fillRect(rect.x, rect.y, rect.width, rect.height);
for (int i = 0; i < m.width(); i++) {
for (int j=0; j < m.height(); j++) {
g.setColor(Color.red);
g.fillRect(j*4, i*4, 4, 4);
}
}
super.paint(g);
}
};
panel.repaint();
我哪里错了?该区域保持完全灰色,没有颜色!