01: /*
02: * Created on Dec 26, 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.OutputStream;
10: import java.util.Vector;
11:
12: import com.lutris.appserver.server.httpPresentation.HttpPresentationComms;
13:
14: /**
15: * @author lola
16: *
17: * TODO To change the template for this generated type comment go to
18: * Window - Preferences - Java - Code Style - Code Templates
19: */
20: public interface PictureManager {
21:
22: public void writePicture(String filePath, OutputStream os,
23: String outputFileFormat, int scale, int colorNumber,
24: boolean useGrayFilter, String errorImagePath);
25:
26: public Vector getPictureListInsidePicture(String filePath);
27:
28: public void writePictureFromPicture(String filePath,
29: String pictureId, OutputStream os, int scale,
30: String errorImagePath);
31:
32: }
|