将ImageIcon转换为BufferedImage
我一直在尝试将a转换ImageIcon
为BufferedImage
…而且我没有运气。
我有一个预先存在的ImageIcon,对于存在的大量BufferedImage操作,需要将其转换为Buffered Image。
我发现了几种方法,但是所有方法都占用大量CPU。
回答:
有什么问题:
BufferedImage bi = new BufferedImage( icon.getIconWidth(),
icon.getIconHeight(),
BufferedImage.TYPE_INT_RGB);
Graphics g = bi.createGraphics();
// paint the Icon to the BufferedImage.
icon.paintIcon(null, g, 0,0);
g.dispose();
以上是 将ImageIcon转换为BufferedImage 的全部内容, 来源链接: utcz.com/qa/415635.html