tahoma2d/toonz/sources/image/png/tiio_png.h
2016-05-17 00:04:11 +09:00

33 lines
618 B
C++

#pragma once
#ifndef TTIO_PNG_INCLUDED
#define TTIO_PNG_INCLUDED
#include "tiio.h"
//#include "timage_io.h"
#include "tproperty.h"
//===========================================================================
namespace Tiio
{
//===========================================================================
class PngWriterProperties : public TPropertyGroup
{
public:
//TEnumProperty m_pixelSize;
TBoolProperty m_matte;
PngWriterProperties();
};
//===========================================================================
Tiio::Reader *makePngReader();
Tiio::Writer *makePngWriter();
} // namespace
#endif