Posted By:
Christopher_Schultz
Posted On:
Friday, April 19, 2002 07:38 AM
I'm not sure about v1.4, but in previous versions, once you had a
java.awt.Image object, you can use
java.awt.Component.drawImage to draw that image on pretty much anything.
Generally, you would do this in a paint() callback on that component, or use the Swing class javax.swint.ImageIcon, which is a component you can slap into any Container, like a JPanel or a JFrame.
Hope that helps,
-chris