Interface for writing software image data. More...
#include <IImageWriter.h>
Inheritance diagram for irr::video::IImageWriter:Public Member Functions | |
| virtual bool | isAWriteableFileExtension (const io::path &filename) const =0 |
| Check if this writer can write a file with the given extension. More... | |
| virtual bool | writeImage (io::IWriteFile *file, IImage *image, u32 param=0) const =0 |
| Write image to file. More... | |
Public Member Functions inherited from irr::IReferenceCounted | |
| IReferenceCounted () | |
| Constructor. More... | |
| virtual | ~IReferenceCounted () |
| Destructor. More... | |
| bool | drop () const |
| Drops the object. Decrements the reference counter by one. More... | |
| const c8 * | getDebugName () const |
| Returns the debug name of the object. More... | |
| s32 | getReferenceCount () const |
| Get the reference count. More... | |
| void | grab () const |
| Grabs the object. Increments the reference counter by one. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from irr::IReferenceCounted | |
| void | setDebugName (const c8 *newName) |
| Sets the debug name of the object. More... | |
Interface for writing software image data.
Definition at line 25 of file IImageWriter.h.
|
pure virtual |
Check if this writer can write a file with the given extension.
| filename | Name of the file to check. |
|
pure virtual |
Write image to file.
| file | File handle to write to. |
| image | Image to write into file. |
| param | Writer specific parameter, influencing e.g. quality. |