X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/33ac7e6f01acbac1cff0ad400d8ea7f0bfd0a62f..1b0b798d77b7b93b81d62162b290441bc9175e3e:/src/common/imagxpm.cpp?ds=sidebyside diff --git a/src/common/imagxpm.cpp b/src/common/imagxpm.cpp index 39689e1f5f..7ebe0c9edf 100644 --- a/src/common/imagxpm.cpp +++ b/src/common/imagxpm.cpp @@ -77,7 +77,7 @@ license is as follows: # include "wx/defs.h" #endif -#if wxUSE_IMAGE && wxUSE_XPM +#if wxUSE_XPM #include "wx/imagxpm.h" #include "wx/wfstream.h" @@ -96,7 +96,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxXPMHandler,wxImageHandler) bool wxXPMHandler::LoadFile(wxImage *image, wxInputStream& stream, - bool verbose, int WXUNUSED(index)) + bool WXUNUSED(verbose), int WXUNUSED(index)) { wxXPMDecoder decoder; @@ -128,33 +128,35 @@ bool wxXPMHandler::SaveFile(wxImage * image, chars_per_pixel++; // 2. write the header: - tmp.Printf("/* XPM */\n" + char tmpbuf[200]; + // VS: 200b is safe upper bound for anything produced by sprintf below + // (101 bytes the string, neither %i can expand into more than 10 chars) + sprintf(tmpbuf, + "/* XPM */\n" "static char *xpm_data[] = {\n" "/* columns rows colors chars-per-pixel */\n" "\"%i %i %i %i\",\n", image->GetWidth(), image->GetHeight(), cols, chars_per_pixel); - stream.Write(tmp.mb_str(), tmp.Length()); + stream.Write(tmpbuf, strlen(tmpbuf)); // 3. create color symbols table: - wxHashTable table(wxKEY_INTEGER); - image->ComputeHistogram(table); + wxImageHistogram histogram; + image->ComputeHistogram(histogram); char *symbols_data = new char[cols * (chars_per_pixel+1)]; char **symbols = new char*[cols]; // 2a. find mask colour: - long mask_key = -1; + unsigned long mask_key = 0x1000000 /*invalid RGB value*/; if (image->HasMask()) mask_key = (image->GetMaskRed() << 16) | (image->GetMaskGreen() << 8) | image->GetMaskBlue(); // 2b. generate colour table: - table.BeginFind(); - wxNode *node = NULL; - while ((node = table.Next()) != NULL) + for (wxImageHistogram::iterator entry = histogram.begin(); + entry != histogram.end(); entry++ ) { - wxHNode *hnode = (wxHNode*) node->GetData(); - long index = hnode->index; + unsigned long index = entry->second.index; symbols[index] = symbols_data + index * (chars_per_pixel+1); char *sym = symbols[index]; @@ -167,7 +169,7 @@ bool wxXPMHandler::SaveFile(wxImage * image, } sym[j] = '\0'; - long key = node->GetKeyInteger(); + unsigned long key = entry->first; if (key == 0) tmp.Printf(wxT("\"%s c Black\",\n"), sym); @@ -191,8 +193,7 @@ bool wxXPMHandler::SaveFile(wxImage * image, for (i = 0; i < image->GetWidth(); i++, data += 3) { unsigned long key = (data[0] << 16) | (data[1] << 8) | (data[2]); - wxHNode *hnode = (wxHNode*) table.Get(key); - stream.Write(symbols[hnode->index], chars_per_pixel); + stream.Write(symbols[histogram[key].index], chars_per_pixel); } tmp_c = '\"'; stream.Write(&tmp_c, 1); if ( j + 1 < image->GetHeight() ) @@ -204,6 +205,7 @@ bool wxXPMHandler::SaveFile(wxImage * image, tmp = wxT("};\n"); stream.Write(tmp.mb_str(), 3); + // Clean up: delete[] symbols; delete[] symbols_data; @@ -218,4 +220,4 @@ bool wxXPMHandler::DoCanRead(wxInputStream& stream) #endif // wxUSE_STREAMS -#endif // wxUSE_XPM && wxUSE_IMAGE +#endif // wxUSE_XPM