我想我只是從給我這個問題的代碼開始。爲什麼Java Ellipse2D繪製得很小時,會變成矩形?
class AnimationPanel extends JPanel
{
OfficeLoad load;
Timer timer = new Timer();
private static final long serialVersionUID = 1L;
public AnimationPanel()
{
setBackground(new Color(240, 240, 240));
setBorder(null);
setOpaque(false);
setBounds(10, 143, 400, 21);
}
public void paintComponent(Graphics g)
{
super.paintComponent(g);
load = new OfficeLoad(g);
}
...
}
...
final Color WHITE = Color.WHITE;
public OfficeLoad(Graphics g)
{
Graphics2D g2 = (Graphics2D)g.create();
g2.setPaint(WHITE);
g2.fill(new Ellipse2D.Double(30, 1, 5, 5));
g.fillOval(40, 1, 5, 5);
g.fillOval(50, 1, 5, 5);
g.fillOval(60, 1, 5, 5);
g.fillOval(70, 1, 5, 5);
g.setColor(new Color(0, 102, 51));
g.fillRect(0, 0, 10, 21);
}
兩個當我使用g.fillOval()
,當我使用g2.fill(new Ellipse2D())
原來的正方形。只是爲了獲得一些額外的信息,我只是爲了好玩,當它啓動時試圖複製excel 2013啓動畫面。這部分用於加載「Excel」下面的點。我已經用gif做了這個,這很容易,但是我的朋友挑戰我使用油漆,重漆等等。但我真的不能這樣做,除非他們成爲圓而不是正方形......任何幫助將不勝感激。 :)
是否啓用與'g2.setRenderingHint(java.awt.RenderingHints.KEY_ANTIALIASING,java.awt.RenderingHints.VALUE_ANTIALIAS_ON)反鋸齒工作;'? – halex