我创建了像这样的椭圆形物体:
for (toop b : top)
{
g.setColor(Color.orange);
g.fillOval(b.getx(), b.gety(), 50, 50);
}
一切都很好。但现在我想添加 ball.png 而不是为其设置颜色。我使用了这段代码,但没有任何改变:
for (toop b : top)
{
g.drawImage(new ImageIcon("C:\\Users\\PETTER\\Desktop\\ball.png").getImage(), b.getx() , b.gety() , 50, 50, b);
g.fillOval(b.getx(), b.gety(), 50, 50);
}
那么我该怎么做呢?请帮帮我