From bufferedImage to Image

There is any way to convert a BufferedImage to an Image? Because the toolkit.createImage() method cannot be found (or that does it say my netbeans IDE ???)

BufferedImages are always Images because BufferedImage extends Image. Make sure that your toolkit variable is set properly, that the Toolkit class is imported, and that you’re using the right arguments for createImage.

Toolkit.getDefaultToolkit().createImage(…)
or (more durably…)
component.getToolkit().createImage(…)