"L. Spiro Engine"
|
OpenJpeg declarations. More...
#include <LSIOpenJpeg.h>
OpenJpeg declarations.
Class COpenJpeg Description: OpenJpeg declarations.
static CJpegCommonStructs::opj_cinfo_t* LSE_CALL lsi::COpenJpeg::opj_create_compress | ( | OPJ_CODEC_FORMAT | _cfFormat | ) | [static] |
Creates a J2K/JP2 compression structure.
_cfFormat | Coder to select. |
static CJpegCommonStructs::opj_dinfo_t* LSE_CALL lsi::COpenJpeg::opj_create_decompress | ( | OPJ_CODEC_FORMAT | _cfFormat | ) | [static] |
Creates a J2K/JPT/JP2 decompression structure.
_cfFormat | Decoder to select. |
static CJpegImage::opj_image_t* LSE_CALL lsi::COpenJpeg::opj_decode | ( | CJpegCommonStructs::opj_dinfo_t * | _pdInfo, |
CCio::opj_cio_t * | _pcCio | ||
) | [static] |
Decode an image from a JPEG-2000 codestream.
_pdInfo | decompressor handle. |
_pcCio | Input buffer stream. |
static CJpegImage::opj_image_t* LSE_CALL lsi::COpenJpeg::opj_decode_with_info | ( | CJpegCommonStructs::opj_dinfo_t * | _pdInfo, |
CCio::opj_cio_t * | _pcCio, | ||
CJpegCommonStructs::opj_codestream_info_t * | _pciInfo | ||
) | [static] |
Decode an image from a JPEG-2000 codestream and extract the codestream information.
_pdInfo | decompressor handle. |
_pcCio | Input buffer stream. |
_pciInfo | Codestream information structure if needed afterwards, NULL otherwise. |
static LSVOID LSE_CALL lsi::COpenJpeg::opj_destroy_compress | ( | CJpegCommonStructs::opj_cinfo_t * | _cpInfo | ) | [static] |
Destroy a compressor handle.
_cpInfo | compressor handle to destroy. |
static LSVOID LSE_CALL lsi::COpenJpeg::opj_destroy_cstr_info | ( | CJpegCommonStructs::opj_codestream_info_t * | _pciInfo | ) | [static] |
Destroy Codestream information after compression or decompression.
_pciInfo | Codestream information structure. |
static LSVOID LSE_CALL lsi::COpenJpeg::opj_destroy_decompress | ( | CJpegCommonStructs::opj_dinfo_t * | _pdInfo | ) | [static] |
Destroy a decompressor handle.
_pdInfo | decompressor handle to destroy. |
static LSBOOL LSE_CALL lsi::COpenJpeg::opj_encode | ( | CJpegCommonStructs::opj_cinfo_t * | _cpInfo, |
CCio::opj_cio_t * | _pcCio, | ||
CJpegImage::opj_image_t * | _piImage | ||
) | [static] |
Encode an image into a JPEG-2000 codestream.
_cpInfo | compressor handle. |
_pcCio | Output buffer stream. |
_piImage | Image to encode. |
static LSBOOL LSE_CALL lsi::COpenJpeg::opj_encode_with_info | ( | CJpegCommonStructs::opj_cinfo_t * | _cpInfo, |
CCio::opj_cio_t * | _pcCio, | ||
CJpegImage::opj_image_t * | _piImage, | ||
CJpegCommonStructs::opj_codestream_info_t * | _pciInfo | ||
) | [static] |
Encode an image into a JPEG-2000 codestream and extract the codestream information.
_cpInfo | compressor handle. |
_pcCio | Output buffer stream. |
_piImage | Image to encode. |
_pciInfo | Codestream information structure if needed afterwards, NULL otherwise. |
static LSVOID LSE_CALL lsi::COpenJpeg::opj_set_default_decoder_parameters | ( | CJpegCommonStructs::opj_dparameters_t * | _pdParameters | ) | [static] |
Set decoding parameters to default values.
_pdParameters | Decompression parameters. |
static LSVOID LSE_CALL lsi::COpenJpeg::opj_set_default_encoder_parameters | ( | CJpegCommonStructs::opj_cparameters_t * | _pdParameters | ) | [static] |
Set encoding parameters to default values, that means:
_pdParameters | Compression parameters. |
static CJpegCommonStructs::opj_event_mgr_t* LSE_CALL lsi::COpenJpeg::opj_set_event_mgr | ( | CJpegCommonStructs::opj_common_ptr | _cpInfo, |
CJpegCommonStructs::opj_event_mgr_t * | _pemEventManager, | ||
LSVOID * | _pvContext | ||
) | [static] |
Undocumented function from the OpenJpeg Library.
_cpInfo | Undocumented parameter from the OpenJpeg Library. |
_pemEventManager | Undocumented parameter from the OpenJpeg Library. |
_pvContext | Undocumented parameter from the OpenJpeg Library. |
static LSVOID LSE_CALL lsi::COpenJpeg::opj_setup_decoder | ( | CJpegCommonStructs::opj_dinfo_t * | _pdInfo, |
CJpegCommonStructs::opj_dparameters_t * | _pdParameters | ||
) | [static] |
Setup the decoder decoding parameters using user parameters. Decoding parameters are returned in j2k->cp.
_pdInfo | decompressor handle. |
_pdParameters | decompression parameters. |
static LSVOID LSE_CALL lsi::COpenJpeg::opj_setup_encoder | ( | CJpegCommonStructs::opj_cinfo_t * | _cpInfo, |
CJpegCommonStructs::opj_cparameters_t * | _pdParameters, | ||
CJpegImage::opj_image_t * | _piImage | ||
) | [static] |
Setup the encoder parameters using the current image and using user parameters.
_cpInfo | Compressor handle. |
_pdParameters | Compression parameters. |
_piImage | Input filled image. |