Interface ImageManager
public interface ImageManager
- 
Method SummaryModifier 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
 
- 
getImagesReturns a list of images at the given folder, without their BLOB data.
- 
insertImagevoid insertImage(String name, String desc, ImageFormat type, String dir, byte[] input, int width, int height, int size) throws SQLException - Throws:
- SQLException
 
- 
getImage
- 
insertImageFolderInserts a new image folder.- Parameters:
- name- The name of the folder (not a path)
- dir- The path of the parent folder, or- nullfor the root folder.
- Throws:
- SQLException
 
 
-