i'm making an MSPaint like application on java, but i'm stuck on create a new canvas (a white background JPanel)
My Code is this:
public void creaLienzo(){
BufferedImage canvas=new BufferedImage(lienzo.getWidth(),
lienzo.getHeight(),BufferedImage.TYPE_INT_RGB);
Graphics2D g2=canvas.createGraphics();
g2.setBackground(Color.WHITE);
lienzo.paint(g2);
}
But the JPanel doesn't draw the white background.