tahoma2d/toonz/sources/image/tga/tiio_tga.h
Toshihiro Shimizu 890dddabbd first commit
2016-03-19 02:57:51 +09:00

35 lines
700 B
C++

#ifndef TIIO_TGA_INCLUDED
#define TIIO_TGA_INCLUDED
#include "tiio.h"
//#include "timage_io.h"
#include "tproperty.h"
//===========================================================================
namespace Tiio
{
//===========================================================================
class TgaWriterProperties : public TPropertyGroup
{
public:
TEnumProperty m_pixelSize; // 16,24,32
TBoolProperty m_compressed;
TgaWriterProperties();
};
//===========================================================================
Tiio::Reader *makeTgaReader();
Tiio::Writer *makeTgaWriter();
//===========================================================================
} // namespace
#endif