OGRE
1.11.6
Object-Oriented Graphics Rendering Engine
|
Codec specialized in images. More...
#include <OgreImageCodec.h>
Classes | |
class | ImageData |
Codec return class for images. More... | |
Public Types | |
typedef SharedPtr< CodecData > | CodecDataPtr |
typedef ConstMapIterator< CodecList > | CodecIterator |
typedef std::pair< MemoryDataStreamPtr, CodecDataPtr > | DecodeResult |
Result of a decoding; both a decoded data stream and CodecData metadata. More... | |
Public Member Functions | |
virtual | ~ImageCodec () |
virtual DecodeResult | decode (const DataStreamPtr &input) const =0 |
Codes the data from the input chunk into the output chunk. More... | |
virtual DataStreamPtr | encode (const MemoryDataStreamPtr &input, const CodecDataPtr &pData) const =0 |
Codes the data in the input stream and saves the result in the output stream. More... | |
virtual void | encodeToFile (const MemoryDataStreamPtr &input, const String &outFileName, const CodecDataPtr &pData) const =0 |
Codes the data in the input chunk and saves the result in the output filename provided. More... | |
String | getDataType () const |
Returns the type of the data that supported by this codec as a String. More... | |
virtual String | getType () const =0 |
Returns the type of the codec as a String. More... | |
virtual bool | magicNumberMatch (const char *magicNumberPtr, size_t maxbytes) const |
Returns whether a magic number header matches this codec. More... | |
virtual String | magicNumberToFileExt (const char *magicNumberPtr, size_t maxbytes) const =0 |
Maps a magic number header to a file extension, if this codec recognises it. More... | |
Static Public Member Functions | |
static Codec * | getCodec (const String &extension) |
Gets the codec registered for the passed in file extension. More... | |
static Codec * | getCodec (char *magicNumberPtr, size_t maxbytes) |
Gets the codec that can handle the given 'magic' identifier. More... | |
static CodecIterator | getCodecIterator (void) |
Gets the iterator for the registered codecs. More... | |
static StringVector | getExtensions (void) |
Gets the file extension list for the registered codecs. More... | |
static bool | isCodecRegistered (const String &codecType) |
Return whether a codec is registered already. More... | |
static void | registerCodec (Codec *pCodec) |
Registers a new codec in the database. More... | |
static void | unregisterCodec (Codec *pCodec) |
Unregisters a codec from the database. More... | |
Codec specialized in images.
|
inherited |
|
inherited |
|
inherited |
Result of a decoding; both a decoded data stream and CodecData metadata.
|
virtual |
|
inlinevirtual |
Returns the type of the data that supported by this codec as a String.
Implements Ogre::Codec.
|
inlinestaticinherited |
Registers a new codec in the database.
References Ogre::Exception::ERR_DUPLICATE_ITEM, Ogre::Codec::getType(), and OGRE_EXCEPT.
|
inlinestaticinherited |
Return whether a codec is registered already.
|
inlinestaticinherited |
Unregisters a codec from the database.
References Ogre::Codec::getType().
|
inlinestaticinherited |
Gets the iterator for the registered codecs.
|
staticinherited |
Gets the file extension list for the registered codecs.
Gets the codec registered for the passed in file extension.
|
staticinherited |
Gets the codec that can handle the given 'magic' identifier.
magicNumberPtr | Pointer to a stream of bytes which should identify the file. Note that this may be more than needed - each codec may be looking for a different size magic number. |
maxbytes | The number of bytes passed |
|
pure virtualinherited |
Codes the data in the input stream and saves the result in the output stream.
Implemented in Ogre::DDSCodec, Ogre::FreeImageCodec, Ogre::ETCCodec, Ogre::ASTCCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.
|
pure virtualinherited |
Codes the data in the input chunk and saves the result in the output filename provided.
Provided for efficiency since coding to memory is progressive therefore memory required is unknown leading to reallocations.
input | The input data |
outFileName | The filename to write to |
pData | Extra information to be passed to the codec (codec type specific) |
Implemented in Ogre::DDSCodec, Ogre::FreeImageCodec, Ogre::ETCCodec, Ogre::ASTCCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.
|
pure virtualinherited |
Codes the data from the input chunk into the output chunk.
input | Stream containing the encoded data |
Implemented in Ogre::DDSCodec, Ogre::FreeImageCodec, Ogre::ETCCodec, Ogre::ASTCCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.
|
pure virtualinherited |
Returns the type of the codec as a String.
Implemented in Ogre::DDSCodec, Ogre::FreeImageCodec, Ogre::ETCCodec, Ogre::ASTCCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.
Referenced by Ogre::Codec::registerCodec(), and Ogre::Codec::unregisterCodec().
|
inlinevirtualinherited |
Returns whether a magic number header matches this codec.
magicNumberPtr | Pointer to a stream of bytes which should identify the file. Note that this may be more than needed - each codec may be looking for a different size magic number. |
maxbytes | The number of bytes passed |
|
pure virtualinherited |
Maps a magic number header to a file extension, if this codec recognises it.
magicNumberPtr | Pointer to a stream of bytes which should identify the file. Note that this may be more than needed - each codec may be looking for a different size magic number. |
maxbytes | The number of bytes passed |
Implemented in Ogre::DDSCodec, Ogre::FreeImageCodec, Ogre::ETCCodec, Ogre::ASTCCodec, Ogre::PVRTCCodec, Ogre::STBIImageCodec, and Ogre::EXRCodec.