tahoma2d/toonz/sources/include/tiio_jpg_util.h

23 lines
360 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef TTIO_JPG_UTIL_INCLUDED
#define TTIO_JPG_UTIL_INCLUDED
#include "traster.h"
#undef DVAPI
#ifdef TNZCORE_EXPORTS
#define DVAPI DV_EXPORT_API
#else
#define DVAPI DV_IMPORT_API
#endif
2016-06-15 18:43:10 +12:00
namespace Tiio {
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
DVAPI void createJpg(std::vector<UCHAR> &buffer, const TRaster32P &ras,
int quality = 99);
2016-03-19 06:57:51 +13:00
2016-06-15 18:43:10 +12:00
} // namespace
2016-03-19 06:57:51 +13:00
#endif