The subject says it all. Can anyone tell me how to convert an Image to a BufferedImage?
Regards,
Igor
The subject says it all. Can anyone tell me how to convert an Image to a BufferedImage?
Regards,
Igor
BufferedImage image = new BufferedImage(size from Image);
image.getGraphics().drawImage(image,0,0,null);
Kev