1
vote
PaintComponent Takes a Long Time, Ties up the Swing Event Dispatch Thread
Use background image which is updated by special working thread. Then in JPanel's paintComponent() method just paint this image. The strategy is called double-buffering. You have background and for …
0
votes
Convert JPanel to image
Take a look at BasicTableUI. The cell renderer is drawn on image without showing and then drawn on visible table component.
…
