标签: java bufferedimage clear
我正在绘制透明背景,但在每个循环中,我希望清除屏幕,而不是从之前在屏幕上绘图。
有没有办法在Java中擦除绘图屏幕?
答案 0 :(得分:4)
您可能正在寻找Graphics#clearRect()。但是,您可能需要将表面背景设置为透明色:
Graphics#clearRect()
graphics.setBackground(new Color(255, 255, 255, 0));