Interface ImageManager
public interface ImageManager
- 
Method Summary
Modifier and TypeMethodDescriptionvoidvoiddeleteImage(String path) Returns a list of images at the given folder, without their BLOB data.voidinsertImage(String name, String desc, ImageFormat type, String dir, byte[] input, int width, int height, int size) voidinsertImageFolder(String name, String dir) Inserts a new image folder. 
- 
Method Details
- 
copyImage
- Throws:
 Exception
 - 
deleteImage
- Throws:
 Exception
 - 
getImages
Returns a list of images at the given folder, without their BLOB data. - 
insertImage
void insertImage(String name, String desc, ImageFormat type, String dir, byte[] input, int width, int height, int size) throws SQLException - Throws:
 SQLException
 - 
getImage
 - 
insertImageFolder
Inserts a new image folder.- Parameters:
 name- The name of the folder (not a path)dir- The path of the parent folder, ornullfor the root folder.- Throws:
 SQLException
 
 -