fixed parsing of XPM data files from demos/forty
(decoder did not parse lowercase hexadecimal numbers) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10110 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -491,6 +491,25 @@ static rgbRecord theRGBRecords[] =
|
|||||||
};
|
};
|
||||||
static int numTheRGBRecords = 234;
|
static int numTheRGBRecords = 234;
|
||||||
|
|
||||||
|
static unsigned char ParseHexadecimal(char digit1, char digit2)
|
||||||
|
{
|
||||||
|
unsigned char i1, i2;
|
||||||
|
|
||||||
|
if (digit1 >= 'a')
|
||||||
|
i1 = digit1 - 'a' + 0x0A;
|
||||||
|
else if (digit1 >= 'A')
|
||||||
|
i1 = digit1 - 'A' + 0x0A;
|
||||||
|
else
|
||||||
|
i1 = digit1 - '0';
|
||||||
|
if (digit2 >= 'a')
|
||||||
|
i2 = digit2 - 'a' + 0x0A;
|
||||||
|
else if (digit2 >= 'A')
|
||||||
|
i2 = digit2 - 'A' + 0x0A;
|
||||||
|
else
|
||||||
|
i2 = digit2 - '0';
|
||||||
|
return (0x10 * i1 + i2);
|
||||||
|
}
|
||||||
|
|
||||||
static bool GetRGBFromName(const char *inname, bool *isNone,
|
static bool GetRGBFromName(const char *inname, bool *isNone,
|
||||||
unsigned char *r, unsigned char*g, unsigned char *b)
|
unsigned char *r, unsigned char*g, unsigned char *b)
|
||||||
{
|
{
|
||||||
@@ -503,16 +522,10 @@ static bool GetRGBFromName(const char *inname, bool *isNone,
|
|||||||
// #rrggbb are not in database, we parse them directly
|
// #rrggbb are not in database, we parse them directly
|
||||||
if ( *inname == '#' && strlen(inname) == 7 )
|
if ( *inname == '#' && strlen(inname) == 7 )
|
||||||
{
|
{
|
||||||
char buf[3];
|
*r = ParseHexadecimal(inname[1], inname[2]);
|
||||||
buf[2] = 0;
|
*g = ParseHexadecimal(inname[3], inname[4]);
|
||||||
buf[0] = inname[1]; buf[1] = inname[2];
|
*b = ParseHexadecimal(inname[5], inname[6]);
|
||||||
*r = (unsigned char) wxHexToDec(buf);
|
|
||||||
buf[0] = inname[3]; buf[1] = inname[4];
|
|
||||||
*g = (unsigned char) wxHexToDec(buf);
|
|
||||||
buf[0] = inname[5]; buf[1] = inname[6];
|
|
||||||
*b = (unsigned char) wxHexToDec(buf);
|
|
||||||
*isNone = FALSE;
|
*isNone = FALSE;
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -634,6 +647,7 @@ wxImage wxXPMDecoder::ReadData(const char **xpm_data)
|
|||||||
/*
|
/*
|
||||||
* Read hints and initialize structures:
|
* Read hints and initialize structures:
|
||||||
*/
|
*/
|
||||||
|
|
||||||
count = sscanf(xpm_data[0], "%u %u %u %u",
|
count = sscanf(xpm_data[0], "%u %u %u %u",
|
||||||
&width, &height, &colors_cnt, &chars_per_pixel);
|
&width, &height, &colors_cnt, &chars_per_pixel);
|
||||||
if ( count != 4 || width * height * colors_cnt == 0 )
|
if ( count != 4 || width * height * colors_cnt == 0 )
|
||||||
|
Reference in New Issue
Block a user