Question

I just had a problem with artifacts at a JPanel which contains transparent parts. My JPanel overrides the paintComponent() method:

protected void paintComponent(Graphics g) {
    g2d = (Graphics2D) g;
    drawMyAplhaImage(g2d);
}

Repaint Artifacts

As you can see, the Image drawn on the JPanel is a bit smaller than the JPanel itself.

Was it helpful?

Solution

The solution is to redraw the Parent component.

To save ressources I just repaint the area of the JPanel.

The new paintComponent() method:

protected void paintComponent(Graphics g) {
    g2d = (Graphics2D) g;
    getParent().repaint(getX(), getY(), getWidth(), getHeight());
    drawMyAplhaImage(g2d);
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top