将缓冲图像转换为图像图标

如何将缓冲图像转换为图像图标?

我找不到任何关于此的文档。


答案 1

使用构造函数:ImageIcon(Image image),扩展 。BufferedImageImage


答案 2

BufferedImage扩展 ,所以它很简单:Image

new ImageIcon(myBufferedImage);

推荐