Java - Convert Image to Icon/ImageIcon?

Primm picture Primm · Aug 18, 2012 · Viewed 52k times · Source

I have an Image object that I would like to convert to an Icon or ImageIcon to add to a JTextPane. How would I go about doing this? (this is in JAVA)

clarification: my "Image" is an instance of the Image Object, not a File.

Answer

Jeffrey picture Jeffrey · Aug 18, 2012

What's wrong with new ImageIcon(Image)?

Image img = ...
ImageIcon icon = new ImageIcon(img);