01: /*
02: * Created on Dec 19, 2005
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package org.enhydra.snapperPreviewer.spec;
08:
09: import java.io.File;
10: import java.io.IOException;
11: import java.io.OutputStream;
12: import java.util.Vector;
13:
14: import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
15:
16: /**
17: * @author lola
18: *
19: * TODO To change the template for this generated type comment go to
20: * Window - Preferences - Java - Code Style - Code Templates
21: */
22: public interface PDFPictureExtractor {
23:
24: public void init() throws IOException;
25:
26: public Vector getPictureList(File pdfFile);
27:
28: public void writePictureByKey(String pdfFilePath, String imageKey,
29: HttpPresentationComms comms, int scale,
30: String errorImagePath);
31:
32: public File getPicture(File pdfFile, String imageKey, String tempDir);
33: }
|