
#include <twl/tcl.h>
typedef enum
{
TCL_IMAGE_TYPE_PICTURE = 0 ,
TCL_IMAGE_TYPE_FRAME ,
TCL_IMAGE_TYPE_COMPOSITE ,
TCL_IMAGE_TYPE_UNKNOWN ,
TCL_IMAGE_TYPE_MAX
} TCLImageType;
Use image types to classify images.
The current version of the library can only save TCL_IMAGE_TYPE_PICTURE image types, so the application does not need to distinguish between types.
The image types are explained in the following list.
| TCL_IMAGE_TYPE_PICTURE | Photos. |
| TCL_IMAGE_TYPE_FRAME | Frames. Frames are photos with cut-out information. They are used with the DSi camera's Frame Camera feature. |
| TCL_IMAGE_TYPE_COMPOSITE | Composite photos created using frames. Search and sort composite photos in same way as the TCL_IMAGE_TYPE_PICTURE type.
|
| TCL_IMAGE_TYPE_UNKNOWN | Unknown image types are treated the same as Photo and Composite types. |
2008/10/07 Initial version.
CONFIDENTIAL