|
enum | Save {
SAVE_OPEN_EXR_16 = 0,
SAVE_OPEN_EXR_32,
SAVE_JPEG,
SAVE_BITMAP,
SAVE_TARGA,
SAVE_PNG_8,
SAVE_PNG_16,
SAVE_TIFF_8,
SAVE_TIFF_16,
SAVE_TIFF_32,
SAVE_COUNT,
SAVE_UNKNOWN = SAVE_COUNT
} |
|
enum | OpenExrCompressionMethod {
DEFAULT_COMPRESSION = 0,
FIRST_COMPRESSION,
NO_COMPRESSION = FIRST_COMPRESSION,
RLE_COMPRESSION,
ZIPS_COMPRESSION,
ZIP_COMPRESSION,
PIZ_COMPRESSION,
PXR24_COMPRESSION,
B44_COMPRESSION,
B44A_COMPRESSION,
DWAA_COMPRESSION,
DWAB_COMPRESSION,
COMPRESSION_COUNT,
COMPRESSION_UNKNOWN = COMPRESSION_COUNT
} |
|
enum | Load {
LOAD_OPEN_EXR = 0,
LOAD_JPEG,
LOAD_BITMAP,
LOAD_TARGA,
LOAD_PNG,
LOAD_TIFF,
LOAD_TX,
LOAD_HDR,
LOAD_COUNT,
LOAD_UNKNOWN = LOAD_COUNT
} |
|
|
static const char * | get_compression_name (const OpenExrCompressionMethod &compression_format) |
|
static const char * | get_save_name (const Save &file_format) |
|
static bool | is_extension_valid (const CoreString &ext) |
|
static unsigned int | get_bytes_per_channel (const Save &file_format) |
|
static const char * | get_load_name (const Load &file_format) |
|
static const char * | get_short_name (const Save &file_format) |
|
static const char * | get_short_name (const OpenExrCompressionMethod &compression) |
|
static OpenExrCompressionMethod | get_compression_from_short_name (const CoreString &sname) |
|
static Save | get_save_from_short_name (const CoreString &sname) |
|
static Save | get_save_from_extension (const CoreString &ext) |
|
static CoreVector< CoreString > | get_save_extensions (const Save &file_format) |
|
static CoreVector< CoreString > | get_load_extensions (const Load &file_format) |
|
static CoreString | get_extension_file_filters_for_save_file () |
|
static CoreString | get_extension_file_filters_for_open_file () |
|
static CoreVector< CoreString > & | get_supported_extensions () |
|
static CoreString | construct_layer_file_name (const CoreString &filename, const CoreString &layer_name) |
|
static CoreString | construct_tile_file_name (const CoreString &filename, int count, int idx) |
|
static const CoreClassInfo & | class_info () |
| Get the type descriptor of this instance.
|
|