#include <image_decoder.h>
Public Member Functions | |
virtual bool | loadStream (Common::SeekableReadStream &stream)=0 |
virtual void | destroy ()=0 |
virtual const Graphics::Surface * | getSurface () const =0 |
virtual const byte * | getPalette () const |
virtual bool | hasPalette () const |
virtual uint16 | getPaletteColorCount () const |
virtual bool | hasTransparentColor () const |
virtual uint32 | getTransparentColor () const |
virtual const Graphics::Surface * | getMask () const |
virtual bool | hasMask () const |
A representation of an image decoder that maintains ownership of the surface and palette it decodes to.
This is designed for still frames only.
|
pure virtual |
Load an image from the specified stream.
loadStream() should implicitly call destroy() to free the memory of the last loadStream() call.
stream | Input stream. |
Implemented in Image::IFFDecoder, Image::BitmapDecoder, Image::TGADecoder, Director::BITDDecoder, Ultima::Ultima4::U4LzwImageDecoder, Image::PICTDecoder, Image::PNGDecoder, Image::Cel3DODecoder, Image::PCXDecoder, Image::JPEGDecoder, Ultima::Ultima4::U4RleImageDecoder, Image::ScrDecoder, Image::NeoDecoder, Director::DIBDecoder, Image::HNMFileDecoder, Image::CicnDecoder, Image::HLZFileDecoder, Image::XBMDecoder, Supernova::MSNImage, MM::MM1::Gfx::ScreenDecoder, Prince::MhwanhDecoder, Ultima::Ultima4::U4RawImageDecoder, Ultima::Ultima4::FMTOWNSImageDecoder, Sludge::HSIDecoder, and Image::DoodleDecoder.
|
pure virtual |
Destroy this decoder's surface and palette.
This should be called by a loadStream() implementation as well as by the destructor.
Implemented in Image::IFFDecoder, Image::BitmapDecoder, Image::TGADecoder, Director::BITDDecoder, Image::PICTDecoder, Image::PNGDecoder, Image::Cel3DODecoder, Image::PCXDecoder, Image::JPEGDecoder, Image::ScrDecoder, Image::NeoDecoder, Director::DIBDecoder, Image::HNMFileDecoder, Image::CicnDecoder, Image::HLZFileDecoder, Image::XBMDecoder, Supernova::MSNImage, Ultima::Ultima4::U4ImageDecoder, MM::MM1::Gfx::ScreenDecoder, Prince::MhwanhDecoder, Sludge::HSIDecoder, and Image::DoodleDecoder.
|
pure virtual |
Get the decoded surface.
This surface is owned by this ImageDecoder and remains valid until destroy() or loadStream() is called, or until the destructor of this ImageDecoder is called.
Implemented in Image::IFFDecoder, Image::BitmapDecoder, Director::BITDDecoder, Image::TGADecoder, Image::PICTDecoder, Image::PNGDecoder, Image::Cel3DODecoder, Image::PCXDecoder, Image::JPEGDecoder, Image::ScrDecoder, Image::NeoDecoder, Director::DIBDecoder, Image::HNMFileDecoder, MM::MM1::Gfx::ScreenDecoder, Image::CicnDecoder, Image::HLZFileDecoder, Image::XBMDecoder, Supernova::MSNImage, Ultima::Ultima4::U4ImageDecoder, Prince::MhwanhDecoder, Sludge::HSIDecoder, and Image::DoodleDecoder.
|
inlinevirtual |
Get the decoded palette.
This palette is owned by this ImageDecoder and remains valid until destroy() or loadStream() is called, or until the destructor of this ImageDecoder is called.
The format of the palette is the same as that of the PaletteManager's palette. (interleaved RGB values).
Reimplemented in Image::IFFDecoder, Image::BitmapDecoder, Director::BITDDecoder, Image::TGADecoder, Image::PICTDecoder, Image::PNGDecoder, Image::Cel3DODecoder, Image::PCXDecoder, Image::NeoDecoder, MM::MM1::Gfx::ScreenDecoder, Director::DIBDecoder, Image::CicnDecoder, Image::HLZFileDecoder, Image::XBMDecoder, Supernova::MSNImage, Ultima::Ultima4::U4ImageDecoder, Prince::MhwanhDecoder, and Image::DoodleDecoder.
|
inlinevirtual |
Query whether the decoded image has a palette.
|
inlinevirtual |
Return the number of colors in the palette.
Reimplemented in Image::IFFDecoder, Image::BitmapDecoder, Director::BITDDecoder, Image::TGADecoder, Image::PICTDecoder, Image::PNGDecoder, Image::Cel3DODecoder, Image::PCXDecoder, Image::NeoDecoder, Director::DIBDecoder, MM::MM1::Gfx::ScreenDecoder, Image::CicnDecoder, Image::HLZFileDecoder, Image::XBMDecoder, Ultima::Ultima4::U4ImageDecoder, and Image::DoodleDecoder.
|
inlinevirtual |
Query whether the decoded image has a transparent color.
Reimplemented in Image::PNGDecoder.
|
inlinevirtual |
Return the transparent color.
Reimplemented in Image::PNGDecoder.
|
inlinevirtual |
Get the mask data for the decoded image.
Reimplemented in Image::CicnDecoder.
|
inlinevirtual |
Query whether the decoded image has a mask.