Hi all,
i am trying to save on the disc an image grabbed from the video,
and ima using this code,but it doesn't work,i mean it saved a jpg file
in that destination,but the file has no image!
Can U help me ?
Image imm = bti.createImage(buff1);
try {
FileOutputStream outFile = new FileOutputStream ("C:/work/prova.jpg");
ObjectOutputStream outStream = new ObjectOutputStream(outFile);
outStream.writeObject(imm);
outFile.close();
}
catch (Exception e) {
System.err.println( e);
Best Regards
Pisi
|