ImageIcon ii = (ImageIcon) jLabel.getIcon();
Image image = ii.getImage();
int width = ii.getIconWidth();
int height = ii.getIconHeight();
BufferedImage BI =
new BufferedImage(width, height, BufferedImage.TYPE_INT_BGR);
BI.createGraphics().drawImage(image, 0, 0, this);
全站熱搜