OGRE-Next
4.0.0unstable
Object-Oriented Graphics Rendering Engine
|
Codec specialized in images loaded using FreeImage. More...
#include <OgreFreeImageCodec2.h>
Public Member Functions | |
FreeImageCodec2 (const String &type, unsigned int fiType) | |
~FreeImageCodec2 () override | |
DecodeResult | decode (DataStreamPtr &input) const override |
Codes the data from the input chunk into the output chunk. More... | |
DataStreamPtr | encode (MemoryDataStreamPtr &input, CodecDataPtr &pData) const override |
Codes the data in the input stream and saves the result in the output stream. More... | |
FIBITMAP * | encodeBitmap (MemoryDataStreamPtr &input, CodecDataPtr &pData) const |
Common encoding routine. More... | |
void | encodeToFile (MemoryDataStreamPtr &input, const String &outFileName, CodecDataPtr &pData) const override |
Codes the data in the input chunk and saves the result in the output filename provided. More... | |
virtual String | getType () const override |
Returns the type of the codec as a String. More... | |
String | magicNumberToFileExt (const char *magicNumberPtr, size_t maxbytes) const override |
Maps a magic number header to a file extension, if this codec recognises it. More... | |
ValidationStatus | validateMagicNumber (const char *magicNumberPtr, size_t maxbytes) const override |
validateMagicNumber Returns whether a magic number header matches this codec. More... | |
Public Member Functions inherited from Ogre::ImageCodec2 | |
~ImageCodec2 () override | |
String | getDataType () const override |
Returns the type of the data that supported by this codec as a String. More... | |
Public Member Functions inherited from Ogre::Codec | |
virtual | ~Codec () |
virtual bool | magicNumberMatch (const char *magicNumberPtr, size_t maxbytes) const |
Returns whether a magic number header matches this codec. More... | |
Static Public Member Functions | |
static void | shutdown () |
Static method to shutdown FreeImage and unregister the FreeImage codecs. More... | |
static void | startup () |
Static method to startup FreeImage and register the FreeImage codecs. More... | |
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. More... | |
static Codec * | getCodec (const String &extension) |
Gets the codec registered for the passed in file extension. More... | |
static CodecIterator | getCodecIterator () |
Gets the iterator for the registered codecs. More... | |
static StringVector | getExtensions () |
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... | |
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. More... | |
enum | ValidationStatus { CodecValid , CodecInvalid , CodecUnknown } |
Codec specialized in images loaded using FreeImage.
Ogre::FreeImageCodec2::FreeImageCodec2 | ( | const String & | type, |
unsigned int | fiType | ||
) |
|
inlineoverride |
|
overridevirtual |
Codes the data from the input chunk into the output chunk.
input | Stream containing the encoded data |
Implements Ogre::Codec.
|
overridevirtual |
Codes the data in the input stream and saves the result in the output stream.
Implements Ogre::Codec.
FIBITMAP* Ogre::FreeImageCodec2::encodeBitmap | ( | MemoryDataStreamPtr & | input, |
CodecDataPtr & | pData | ||
) | const |
Common encoding routine.
|
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 |
outFileName | The filename to write to |
pData | Extra information to be passed to the codec (codec type specific) |
Implements Ogre::Codec.
|
overridevirtual |
Returns the type of the codec as a String.
Implements Ogre::Codec.
|
overridevirtual |
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 |
Implements Ogre::Codec.
|
static |
Static method to shutdown FreeImage and unregister the FreeImage codecs.
|
static |
Static method to startup FreeImage and register the FreeImage codecs.
|
overridevirtual |
validateMagicNumber Returns whether a magic number header matches this codec.
At least 4 bytes must be supplied.
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 |
Implements Ogre::Codec.