Simple question about displaying a BufferedImage in Swing
I have a program that is working on medium-sized BufferedImages (600x600 or so). I really just need to display them. Right now, I'm doing:
panel.add(new JLabel(new ImageIcon(bufferedImage)));
It works, of course, but is this the right way to do it? Or is there some better way to express that?
Thanks

