![]() |
OGRE 1.12.10
Object-Oriented Graphics Rendering Engine
|
Codec specialized in images. More...
#include <OgreImageCodec.h>
Classes | |
| class | ImageData |
| Codec return class for images. More... | |
Public Member Functions | |
| virtual | ~ImageCodec () |
| virtual DecodeResult | decode (const DataStreamPtr &input) const |
| void | decode (const DataStreamPtr &input, const Any &output) const override |
| Codes the data from the input chunk into the output chunk. | |
| DataStreamPtr | encode (const Any &input) const override |
| Codes the input and saves the result in the output stream. | |
| virtual DataStreamPtr | encode (const MemoryDataStreamPtr &input, const CodecDataPtr &pData) const |
| void | encodeToFile (const Any &input, const String &outFileName) const override |
| Codes the data in the input chunk and saves the result in the output filename provided. | |
| virtual void | encodeToFile (const MemoryDataStreamPtr &input, const String &outFileName, const CodecDataPtr &pData) const |
| String | getDataType () const |
| Public Member Functions inherited from Ogre::Codec | |
| virtual | ~Codec () |
| virtual String | getType () const =0 |
| Returns the type of the codec as a String. | |
| bool | magicNumberMatch (const char *magicNumberPtr, size_t maxbytes) const |
| Returns whether a magic number header matches this codec. | |
| 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. | |
Additional Inherited Members | |
| Public Types inherited from Ogre::Codec | |
| 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. | |
| Static Public Member Functions inherited from Ogre::Codec | |
| static Codec * | getCodec (char *magicNumberPtr, size_t maxbytes) |
| Gets the codec that can handle the given 'magic' identifier. | |
| static Codec * | getCodec (const String &extension) |
| Gets the codec registered for the passed in file extension. | |
| static CodecIterator | getCodecIterator (void) |
| static StringVector | getExtensions (void) |
| Gets the file extension list for the registered codecs. | |
| static bool | isCodecRegistered (const String &codecType) |
| Return whether a codec is registered already. | |
| static void | registerCodec (Codec *pCodec) |
| Registers a new codec in the database. | |
| static void | unregisterCodec (Codec *pCodec) |
| Unregisters a codec from the database. | |
Codec specialized in images.
|
virtual |
|
overridevirtual |
Codes the data from the input chunk into the output chunk.
| input | Stream containing the encoded data |
| output | codec type specific result |
Reimplemented from Ogre::Codec.
Reimplemented in Ogre::PVRTCCodec, and Ogre::STBIImageCodec.
Referenced by Ogre::EXRCodec::~EXRCodec().
|
overridevirtual |
Codes the input and saves the result in the output stream.
Reimplemented from Ogre::Codec.
Reimplemented in Ogre::STBIImageCodec.
|
overridevirtual |
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 (codec type specific) |
| outFileName | The filename to write to |
Reimplemented from Ogre::Codec.
Reimplemented in Ogre::STBIImageCodec.
|
inlinevirtual |
Reimplemented from Ogre::Codec.
|
inlinevirtual |
Reimplemented from Ogre::Codec.
Reimplemented in Ogre::PVRTCCodec, and Ogre::STBIImageCodec.
|
inlinevirtual |
|
inlinevirtual |