Skip to content

Instantly share code, notes, and snippets.

@skd1993
Created February 3, 2015 16:25
Show Gist options
  • Save skd1993/6dbc43ba32ad95adc35c to your computer and use it in GitHub Desktop.
Save skd1993/6dbc43ba32ad95adc35c to your computer and use it in GitHub Desktop.
Create Lable for Image
protected JLabel createLabelForImage(BufferedImage im) {
JLabel label = new JLabel(new ImageIcon(im));
label.setVerticalAlignment(JLabel.TOP);
label.setHorizontalAlignment(JLabel.CENTER);
label.setOpaque(true);
label.setBounds(0, 0, im.getWidth(), im.getHeight());
return label;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment