Search code examples
javaimageimageicon

Java - Convert Image to Icon/ImageIcon?


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.


Solution

  • What's wrong with new ImageIcon(Image)?

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