Convert Image into BufferedImage Need Help!!
Hi All;
String newImagePath = "C:\temp\abc.bmp"
File filePath = new File(newImagePath);
Image watermarkImg = Toolkit.getDefaultToolkit().getImage(filePath.toURL());
Any how i want convert this file in the "newImagePath " to a BufferedImage.
I tried to create a Image object and then convert into BufferedImage but it didn't work.
Pls give your suggessions
Thanks
madumm

