 |
SAGA API
v9.8
|
Go to the documentation of this file.
93 const char *s = Text.
b_str();
unsigned long c;
95 if( sscanf(s + 1,
"%lx", &c) == 1 )
97 switch( Text.
Length() - 1 )
102 (
unsigned char)((c >> 24) & 0xFF),
103 (
unsigned char)((c >> 16) & 0xFF),
104 (
unsigned char)((c >> 8) & 0xFF)
110 (
unsigned char)((c >> 24) & 0xFF),
111 (
unsigned char)((c >> 16) & 0xFF),
112 (
unsigned char)((c >> 8) & 0xFF),
113 (
unsigned char)((c ) & 0xFF)
120 (
unsigned char)(((c >> 12) & 0xF) * 0x11),
121 (
unsigned char)(((c >> 8) & 0xF) * 0x11),
122 (
unsigned char)(((c >> 4) & 0xF) * 0x11)
128 (
unsigned char)(((c >> 12) & 0xF) * 0x11),
129 (
unsigned char)(((c >> 8) & 0xF) * 0x11),
130 (
unsigned char)(((c >> 4) & 0xF) * 0x11),
131 (
unsigned char)(((c ) & 0xF) * 0x11)
150 Text.
Printf(
"#%02X%02X%02X",
158 Text.
Printf(
"%ld", Color);
195 Create(nColors, Palette, bRevert);
218 if( Colors.m_nColors > 0 )
220 m_nColors = Colors.m_nColors;
221 m_Colors = (
long *)
SG_Realloc(m_Colors, m_nColors *
sizeof(
long));
223 memcpy(m_Colors, Colors.m_Colors, m_nColors *
sizeof(
long));
266 if( nColors == m_nColors )
285 m_Colors = (
long *)
SG_Realloc(m_Colors, m_nColors *
sizeof(
long));
293 m_Colors[i] = Colors[(int)(i * dStep)];
313 if( Index >= 0 && Index < m_nColors )
315 m_Colors[Index] = Color;
357 else if( Value > 255 )
366 ds = (r + g + b) / 3.0;
375 _Set_Brightness(r, g, b);
379 r = g = b = Value / 3.0;
382 return(
Set_Color(Index, (
int)r, (
int)g, (
int)b) );
386 void CSG_Colors::_Set_Brightness(
double &a,
double &b,
double &c,
int Pass)
392 addSum = (int)((a - 255) / 2.0);
400 addSum = (int)(b - 255);
412 addSum = (int)(c - 255);
425 _Set_Brightness(b, c, a, Pass + 1);
443 #define MAKE_NAME(name) CSG_String::Format("[%d] %s", Index, name)
513 default :
return(
_TL(
"") );
1008 m_nColors = nColors;
1009 m_Colors = (
long *)
SG_Realloc(m_Colors, m_nColors *
sizeof(
long));
1011 double d = 0., dStep = 2. *
M_PI / (m_nColors - 1.);
1013 for(
int i=0; i<m_nColors; i++, d+=dStep)
1016 (
int)(d <
M_PI / 2 ? 0 : 128 - 127 * sin(
M_PI - d)),
1017 (
int)(128 - 127 * cos(d)),
1018 (
int)(d >
M_PI * 3 / 2 ? 0 : 128 + 127 * sin(d))
1037 if( iColor_A > iColor_B )
1040 iColor_A = iColor_B;
1055 int n = iColor_B - iColor_A;
1060 double dr = (double)(
SG_GET_R(Color_B) - ar) / (
double)n;
1063 double dg = (double)(
SG_GET_G(Color_B) - ag) / (
double)n;
1066 double db = (double)(
SG_GET_B(Color_B) - ab) / (
double)n;
1068 for(
int i=0; i<=n; i++)
1092 if( iColor_A > iColor_B )
1095 iColor_A = iColor_B;
1110 int n = iColor_B - iColor_A;
1114 double dBrightness = (double)(Brightness_B - Brightness_A) / (double)n;
1116 for(
int i=0; i<=n; i++)
1118 Set_Brightness(iColor_A + i, (
int)(Brightness_A + i * dBrightness));
1138 (
int)(255.0 * (
double)rand() / (
double)RAND_MAX),
1139 (
int)(255.0 * (
double)rand() / (
double)RAND_MAX),
1140 (
int)(255.0 * (
double)rand() / (
double)RAND_MAX)
1161 for(
int i=0, j=
Get_Count()-1; i<j; i++, j--)
1200 return(
Create(Colors) );
1206 return( pColors ?
Create(*pColors) :
false );
1215 #define COLORS_SERIAL_VERSION_BINARY "SAGA_COLORPALETTE_VERSION_0.100_BINARY"
1216 #define COLORS_SERIAL_VERSION__ASCII "SAGA_COLORPALETTE_VERSION_0.100__ASCII"
1235 return(
Serialize(Stream,
false,
false) );
1246 Stream.
Read(&nColors,
sizeof(nColors));
1256 for(
int i=0; i<nColors; i++)
1258 Stream.
Read(c, ValueSize);
1276 Stream.
Read(&nColors,
sizeof(
short));
1278 if( Stream.
Length() == (
int)(
sizeof(
short) + 3 * nColors) &&
Set_Count(nColors) )
1280 BYTE *R = (BYTE *)
SG_Malloc(nColors *
sizeof(BYTE)); Stream.
Read(R, nColors *
sizeof(BYTE));
1281 BYTE *G = (BYTE *)
SG_Malloc(nColors *
sizeof(BYTE)); Stream.
Read(G, nColors *
sizeof(BYTE));
1282 BYTE *
B = (BYTE *)
SG_Malloc(nColors *
sizeof(BYTE)); Stream.
Read(
B, nColors *
sizeof(BYTE));
1284 for(
int i=0; i<nColors; i++)
1340 Stream.
Write(&m_nColors,
sizeof(m_nColors));
1341 Stream.
Write(m_Colors,
sizeof(
long), m_nColors);
1348 Stream.
Read(&nColors,
sizeof(m_nColors));
1352 Stream.
Read(m_Colors,
sizeof(
long), m_nColors);
1425 for(
int i=0, j=0; i<
Get_Count(); i++, j+=12)
bool Set_Brightness(int Index, int Value)
bool Set_Color(int Index, long Color)
bool from_Text(const CSG_String &String)
#define SG_GET_RGB(r, g, b)
@ SG_COLORS_RED_BLUE_GREEN
int Printf(const char *Format,...)
bool Seek_Start(void) const
size_t Length(void) const
bool SG_Color_From_Text(const CSG_String &Text, long &Color)
CSG_String SG_Colors_Get_Name(int Index)
const char * b_str(void) const
bool Load(const CSG_String &File_Name)
CSG_String Mid(size_t first, size_t count=0) const
bool Set_Palette(int Index, bool bRevert=false, int nColors=0)
@ SG_COLORS_RED_GREY_BLUE
static CSG_String Get_Predefined_Name(int Identifier)
long Get_Blue(int Index) const
static double Get_Uniform(void)
SAGA_API_DLL_EXPORT void * SG_Malloc(size_t size)
long SG_Color_Get_Random(void)
SG_Char Get_Char(size_t i) const
@ SG_COLORS_GREEN_WHITE_BLUE
@ SG_COLORS_BLUE_WHITE_RED
SAGA_API_DLL_EXPORT void SG_Free(void *memblock)
@ SG_COLORS_PRECIPITATION_4
bool Set_Blue(int Index, int Value)
long Get_Red(int Index) const
@ SG_COLORS_PRECIPITATION_1
size_t Read(void *Buffer, size_t Size, size_t Count=1) const
bool Set_Ramp(long Color_A, long Color_B)
static int Get_Predefined_Count(void)
@ SG_COLORS_GREEN_GREY_RED
#define COLORS_SERIAL_VERSION__ASCII
int Get_Count(void) const
long Get_Color(int Index) const
@ SG_COLORS_GREEN_YELLOW_RED
bool Set_Red(int Index, int Value)
long SG_Color_From_RGB(int Red, int Green, int Blue, int Alpha)
long Get_Interpolated(double Index) const
virtual bool Open(const SG_Char *FileName, int Mode=SG_FILE_R, bool bBinary=true, int Encoding=SG_FILE_ENCODING_ANSI)
bool Set_Green(int Index, int Value)
bool Set_Count(int nColors)
@ SG_COLORS_DEFAULT_BRIGHT
CSG_String SG_Color_To_Text(long Color, bool bHexadecimal)
@ SG_COLORS_GREEN_YELLOW_BLUE
bool Set_Predefined(int Index, bool bRevert=false, int nColors=0)
@ SG_COLORS_RED_YELLOW_GREEN
@ SG_COLORS_PRECIPITATION_3
CSG_Colors & operator=(const CSG_Colors &Colors)
@ SG_COLORS_BLUE_GREY_RED
static CSG_String Format(const char *Format,...)
@ SG_COLORS_GREEN_GREY_BLUE
int Find(char Character, bool fromEnd=false) const
bool Set_Default(int nColors=11)
@ SG_COLORS_RED_GREY_GREEN
CSG_String AfterFirst(char Character) const
#define COLORS_SERIAL_VERSION_BINARY
long Get_Brightness(int Index) const
@ SG_COLORS_PRECIPITATION_5
long Get_Green(int Index) const
@ SG_COLORS_GREEN_WHITE_RED
bool Serialize(CSG_File &Stream, bool bSave, bool bBinary)
int Printf(const char *Format,...)
bool is_Empty(void) const
bool to_Text(CSG_String &String)
@ SG_COLORS_BLUE_YELLOW_RED
bool Read_Line(CSG_String &Line) const
CSG_String AfterLast(char Character) const
@ SG_COLORS_PRECIPITATION_2
@ SG_COLORS_RED_GREEN_BLUE
virtual ~CSG_Colors(void)
size_t Write(void *Buffer, size_t Size, size_t Count=1) const
SAGA_API_DLL_EXPORT void * SG_Realloc(void *memblock, size_t size)
@ SG_COLORS_GREEN_RED_BLUE
bool Save(const CSG_String &File_Name, bool bBinary)
bool Assign(const CSG_Colors &Colors)
#define SG_GET_RGBA(r, g, b, a)
bool Set_Ramp_Brighness(int Brightness_A, int Brightness_B)