Codec specialized in images.
More...
#include <OgreImageCodec.h>
|
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. More...
|
|
virtual void | decode (const DataStreamPtr &input, const Any &output) const=0 |
| Codes the data from the input chunk into the output chunk. More...
|
|
virtual DataStreamPtr | encode (const Any &input) const |
| Codes the input and saves the result in the output stream. More...
|
|
DataStreamPtr | encode (const Any &input) const override |
| Codes the input and saves the result in the output stream. More...
|
|
virtual DataStreamPtr | encode (const MemoryDataStreamPtr &input, const CodecDataPtr &pData) const |
|
virtual void | encodeToFile (const Any &input, const String &outFileName) const |
| Codes the data in the input chunk and saves the result in the output filename provided. More...
|
|
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. More...
|
|
virtual void | encodeToFile (const MemoryDataStreamPtr &input, const String &outFileName, const CodecDataPtr &pData) const |
|
virtual | ~Codec () |
|
virtual String | getType () const =0 |
| Returns the type of the codec as a String. More...
|
|
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...
|
|
Codec specialized in images.
◆ CodecDataPtr
◆ DecodeResult
Result of a decoding; both a decoded data stream and CodecData metadata.
◆ ~ImageCodec()
virtual Ogre::ImageCodec::~ImageCodec |
( |
| ) |
|
|
virtual |
◆ decode() [1/3]
void Ogre::ImageCodec::decode |
( |
const DataStreamPtr & |
input, |
|
|
const Any & |
output |
|
) |
| const |
|
overridevirtual |
◆ encode() [1/3]
◆ encodeToFile() [1/3]
void Ogre::ImageCodec::encodeToFile |
( |
const Any & |
input, |
|
|
const String & |
outFileName |
|
) |
| const |
|
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.
- Parameters
-
input | The input data (codec type specific) |
outFileName | The filename to write to |
Reimplemented from Ogre::Codec.
Reimplemented in Ogre::STBIImageCodec, Ogre::RsImageCodec, and Ogre::FreeImageCodec.
◆ encode() [2/3]
◆ encodeToFile() [2/3]
◆ decode() [2/3]
◆ decode() [3/3]
virtual void Ogre::Codec::decode |
Codes the data from the input chunk into the output chunk.
- Parameters
-
input | Stream containing the encoded data |
output | codec type specific result |
◆ encode() [3/3]
Codes the input and saves the result in the output stream.
◆ encodeToFile() [3/3]
virtual void Ogre::Codec::encodeToFile |
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.
- Parameters
-
input | The input data (codec type specific) |
outFileName | The filename to write to |
The documentation for this class was generated from the following file: