1 26 27 package net.sourceforge.groboutils.uicapture.v1; 28 29 import java.awt.image.BufferedImage ; 30 import java.io.File ; 31 import java.io.IOException ; 32 33 34 43 public interface IScreenScraper 44 { 45 46 49 57 public void writeImageToFile( BufferedImage image, File file ) 58 throws IOException ; 59 60 61 67 public String getFileExtention(); 68 } 69 70 | Popular Tags |