Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 397
Primm Avatar asked Aug 18 '12 17:08

Primm


1 Answers

What's wrong with new ImageIcon(Image)?

Image img = ...
ImageIcon icon = new ImageIcon(img);
like image 136
Jeffrey Avatar answered Sep 22 '22 14:09

Jeffrey