unsigned char GetGreen( int x, int y ) const;
unsigned char GetBlue( int x, int y ) const;
- // used to manipulate the icons while extracting from .ico files
- bool GetUnusedColour( unsigned char *r, unsigned char *g, unsigned char *b );
- bool ApplyMask( const wxImage & mask );
+ // find first colour that is not used in the image and has higher
+ // RGB values than <startR,startG,startB>
+ bool FindFirstUnusedColour( unsigned char *r, unsigned char *g, unsigned char *b,
+ unsigned char startR = 1, unsigned char startG = 0,
+ unsigned char startB = 0 );
+ // Set image's mask to the area of 'mask' that has <r,g,b> colour
+ bool SetMaskFromImage(const wxImage & mask,
+ unsigned char mr, unsigned char mg, unsigned char mb);
static bool CanRead( const wxString& name );
virtual bool LoadFile( const wxString& name, long type = wxBITMAP_TYPE_ANY );
bool wxBMPHandler::LoadDib( wxImage *image, wxInputStream& stream, bool verbose, bool IsBmp )
{
-
- wxUint8 aByte;
wxUint16 aWord;
wxInt32 dbuf[4];
wxInt8 bbuf[4];
{
//read Icon mask which is monochrome
//there is no palette, so we will create one
- wxImage mask ;
+ wxImage mask;
if (!DoLoadDib (&mask, width, height, 1, 2, BI_RGB, offset, stream,
verbose, IsBmp, FALSE ) )
{
wxLogError( _("ICO: Error in reading mask DIB.") );
return FALSE;
}
- image -> ApplyMask ( &mask );
+ image->SetMaskFromImage(mask, 255, 255, 255);
}
return TRUE;
}
-bool wxImage::GetUnusedColour ( unsigned char * r, unsigned char * g, unsigned char * b )
+bool wxImage::FindFirstUnusedColour(
+ unsigned char *r, unsigned char *g, unsigned char *b,
+ unsigned char startR, unsigned char startG, unsigned char startB)
{
wxHashTable hTable;
unsigned long key;
ComputeHistogram( hTable );
- // start with blackest color and work to lightest
- // 0,0,0 is quite likely to be a used color
- unsigned char r2 = 1;
- unsigned char g2 = 0;
- unsigned char b2 = 0;
+ unsigned char r2 = startR;
+ unsigned char g2 = startG;
+ unsigned char b2 = startB;
key = (r2 << 16) | (g2 << 8) | b2;
while ( (wxHNode *) hTable.Get(key) )
{
// color already used
- r2 ++ ;
+ r2++;
if ( r2 >= 255 )
{
r2 = 0;
- g2 ++ ;
+ g2++;
if ( g2 >= 255 )
{
- g2 = 0 ;
- b2 ++ ;
+ g2 = 0;
+ b2++;
if ( b2 >= 255 )
{
wxLogError( _("GetUnusedColour:: No Unused Color in image ") );
key = (r2 << 16) | (g2 << 8) | b2;
}
+ if (r) *r = r2;
+ if (g) *g = g2;
+ if (b) *b = b2;
+
return TRUE;
}
-bool wxImage::ApplyMask ( const wxImage & mask )
+bool wxImage::SetMaskFromImage(const wxImage& mask,
+ unsigned char mr, unsigned char mg, unsigned char mb)
{
- // what to do if we already have a mask ??
- if (M_IMGDATA->m_hasMask || mask.HasMask() )
- {
- wxLogError( _("Image already masked") );
- return FALSE;
- }
-
// check that the images are the same size
if ( (M_IMGDATA->m_height != mask.GetHeight() ) || (M_IMGDATA->m_width != mask.GetWidth () ) )
{
// find unused colour
unsigned char r,g,b ;
- if (!GetUnusedColour (&r, &g, &b))
+ if (!FindFirstUnusedColour(&r, &g, &b))
{
wxLogError( _("No Unused Color in image being masked") );
return FALSE ;
const int h = GetHeight();
for (int j = 0; j < h; j++)
+ {
for (int i = 0; i < w; i++)
{
- if ((maskdata[0] > 128) && (maskdata[1] > 128) && (maskdata[2] > 128 ))
+ if ((maskdata[0] == mr) && (maskdata[1] == mg) && (maskdata[2] == mb))
{
imgdata[0] = r;
imgdata[1] = g;
imgdata += 3;
maskdata += 3;
}
+ }
- M_IMGDATA->m_maskRed = r;
- M_IMGDATA->m_maskGreen = g;
- M_IMGDATA->m_maskBlue = b;
- M_IMGDATA->m_hasMask = TRUE;
+ SetMaskColour(r, g, b);
+ SetMask(TRUE);
return TRUE;
}