将图片绘制到面板的代码:
public class MyDraw extends JPanel {
background = new ImageIcon("src/background.jpg").getImage();
@Override
protected void paintComponent(Graphics gr){
super.paintComponent(gr);
gr.drawImage(background, 0, 0, 800, 600, null);
}
}
我不想在这个圆圈里画背景图片,因为我想看到这个圆圈后面的物体。我不想把物体放在图像的前面,因为按wasd键圆会移动。
像这样:点击这里查看图片。
暂无答案!
目前还没有任何答案,快来回答吧!