tahoma2d/toonz/sources/include/tcolorutils.h
2016-06-15 15:43:10 +09:00

33 lines
907 B
C++

#pragma once
#ifndef COLORCLUSTERIZE_INCLUDED
#define COLORCLUSTERIZE_INCLUDED
//------------------------------------------------------------------------------
#include <set>
//#include "tpixel.h"
#include "traster.h"
#undef DVAPI
#undef DVVAR
#ifdef TAPPTOOLS_EXPORTS
#define DVAPI DV_EXPORT_API
#define DVVAR DV_EXPORT_VAR
#else
#define DVAPI DV_IMPORT_API
#define DVVAR DV_IMPORT_VAR
#endif
namespace TColorUtils {
/*-- 似ている色をまとめて1つのStyleにする --*/
DVAPI void buildPalette(std::set<TPixel32> &palette, const TRaster32P &raster,
int maxColorCount);
/*-- 全ての異なるピクセルの色を別のStyleにする --*/
DVAPI void buildPrecisePalette(std::set<TPixel32> &palette,
const TRaster32P &raster, int maxColorCount);
}
//------------------------------------------------------------------------------
#endif