1 ////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "bitmap.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
37 #include "wx/palette.h"
38 #include "wx/dcmemory.h"
39 #include "wx/bitmap.h"
43 #include "wx/msw/private.h"
47 #include "wx/msw/dib.h"
51 #include "wx/xpmdecod.h"
53 #ifdef wxHAVE_RAW_BITMAP
54 #include "wx/rawbmp.h"
57 // missing from mingw32 header
59 #define CLR_INVALID ((COLORREF)-1)
60 #endif // no CLR_INVALID
62 // ----------------------------------------------------------------------------
64 // ----------------------------------------------------------------------------
66 class WXDLLEXPORT wxBitmapRefData
: public wxGDIImageRefData
70 virtual ~wxBitmapRefData() { Free(); }
74 // set the mask object to use as the mask, we take ownership of it
75 void SetMask(wxMask
*mask
)
81 // set the HBITMAP to use as the mask
82 void SetMask(HBITMAP hbmpMask
)
84 SetMask(new wxMask((WXHBITMAP
)hbmpMask
));
88 wxMask
*GetMask() const { return m_bitmapMask
; }
92 wxPalette m_bitmapPalette
;
93 #endif // wxUSE_PALETTE
99 // this field is solely for error checking: we detect selecting a bitmap
100 // into more than one DC at once or deleting a bitmap still selected into a
101 // DC (both are serious programming errors under Windows)
102 wxDC
*m_selectedInto
;
103 #endif // __WXDEBUG__
106 // when GetRawData() is called for a DDB we need to convert it to a DIB
107 // first to be able to provide direct access to it and we cache that DIB
108 // here and convert it back to DDB when UngetRawData() is called
112 // true if we have alpha transparency info and can be drawn using
116 // true if our HBITMAP is a DIB section, false if it is a DDB
120 // optional mask for transparent drawing
121 wxMask
*m_bitmapMask
;
123 DECLARE_NO_COPY_CLASS(wxBitmapRefData
)
126 // ----------------------------------------------------------------------------
128 // ----------------------------------------------------------------------------
130 IMPLEMENT_DYNAMIC_CLASS(wxBitmap
, wxGDIObject
)
131 IMPLEMENT_DYNAMIC_CLASS(wxMask
, wxObject
)
133 IMPLEMENT_DYNAMIC_CLASS(wxBitmapHandler
, wxObject
)
135 // ============================================================================
137 // ============================================================================
139 // ----------------------------------------------------------------------------
141 // ----------------------------------------------------------------------------
143 // decide whether we should create a DIB or a DDB for the given parameters
145 // NB: we always use DIBs under Windows CE as this is much simpler (even if
146 // also less efficient...) and we obviously can't use them if there is no
147 // DIB support compiled in at all
149 static inline bool wxShouldCreateDIB(int, int, int, WXHDC
) { return true; }
151 #define ALWAYS_USE_DIB
153 // no sense in defining wxShouldCreateDIB() as we can't compile code
154 // executed if it is true, so we have to use #if's anyhow
155 #define NEVER_USE_DIB
156 #else // wxUSE_WXDIB && !__WXWINCE__
157 static inline bool wxShouldCreateDIB(int w
, int h
, int d
, WXHDC hdc
)
159 // here is the logic:
161 // (a) if hdc is specified, the caller explicitly wants DDB
162 // (b) otherwise, create a DIB if depth >= 24 (we don't support 16bpp
163 // or less DIBs anyhow)
164 // (c) finally, create DIBs under Win9x even if the depth hasn't been
165 // explicitly specified but the current display depth is 24 or
166 // more and the image is "big", i.e. > 16Mb which is the
167 // theoretical limit for DDBs under Win9x
169 // consequences (all of which seem to make sense):
171 // (i) by default, DDBs are created (depth == -1 usually)
172 // (ii) DIBs can be created by explicitly specifying the depth
173 // (iii) using a DC always forces creating a DDB
177 wxDIB::GetLineSize(w
, wxDisplayDepth())*h
> 16*1024*1024));
180 #define SOMETIMES_USE_DIB
181 #endif // different DIB usage scenarious
183 // ----------------------------------------------------------------------------
185 // ----------------------------------------------------------------------------
187 wxBitmapRefData::wxBitmapRefData()
190 m_selectedInto
= NULL
;
194 m_hBitmap
= (WXHBITMAP
) NULL
;
203 void wxBitmapRefData::Free()
205 wxASSERT_MSG( !m_selectedInto
,
206 wxT("deleting bitmap still selected into wxMemoryDC") );
209 wxASSERT_MSG( !m_dib
, _T("forgot to call wxBitmap::UngetRawData()!") );
214 if ( !::DeleteObject((HBITMAP
)m_hBitmap
) )
216 wxLogLastError(wxT("DeleteObject(hbitmap)"));
224 // ----------------------------------------------------------------------------
226 // ----------------------------------------------------------------------------
228 // this function should be called from all wxBitmap ctors
229 void wxBitmap::Init()
231 // m_refData = NULL; done in the base class ctor
234 wxGDIImageRefData
*wxBitmap::CreateData() const
236 return new wxBitmapRefData
;
241 bool wxBitmap::CopyFromIconOrCursor(const wxGDIImage
& icon
)
243 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
244 // it may be either HICON or HCURSOR
245 HICON hicon
= (HICON
)icon
.GetHandle();
248 if ( !::GetIconInfo(hicon
, &iconInfo
) )
250 wxLogLastError(wxT("GetIconInfo"));
255 wxBitmapRefData
*refData
= new wxBitmapRefData
;
258 int w
= icon
.GetWidth(),
259 h
= icon
.GetHeight();
261 refData
->m_width
= w
;
262 refData
->m_height
= h
;
263 refData
->m_depth
= wxDisplayDepth();
265 refData
->m_hBitmap
= (WXHBITMAP
)iconInfo
.hbmColor
;
267 // the mask returned by GetIconInfo() is inversed compared to the usual
269 refData
->SetMask(wxInvertMask(iconInfo
.hbmMask
, w
, h
));
272 // delete the old one now as we don't need it any more
273 ::DeleteObject(iconInfo
.hbmMask
);
284 bool wxBitmap::CopyFromCursor(const wxCursor
& cursor
)
291 return CopyFromIconOrCursor(cursor
);
294 bool wxBitmap::CopyFromIcon(const wxIcon
& icon
)
301 return CopyFromIconOrCursor(icon
);
304 #ifndef NEVER_USE_DIB
306 bool wxBitmap::CopyFromDIB(const wxDIB
& dib
)
308 wxCHECK_MSG( dib
.IsOk(), FALSE
, _T("invalid DIB in CopyFromDIB") );
310 #ifdef SOMETIMES_USE_DIB
311 HBITMAP hbitmap
= dib
.CreateDDB();
314 #else // ALWAYS_USE_DIB
315 HBITMAP hbitmap
= ((wxDIB
&)dib
).Detach(); // const_cast
316 #endif // SOMETIMES_USE_DIB/ALWAYS_USE_DIB
320 wxBitmapRefData
*refData
= new wxBitmapRefData
;
323 refData
->m_width
= dib
.GetWidth();
324 refData
->m_height
= dib
.GetHeight();
325 refData
->m_depth
= dib
.GetDepth();
327 refData
->m_hBitmap
= (WXHBITMAP
)hbitmap
;
330 wxPalette
*palette
= dib
.CreatePalette();
333 refData
->m_bitmapPalette
= *palette
;
337 #endif // wxUSE_PALETTE
342 #endif // NEVER_USE_DIB
344 wxBitmap::~wxBitmap()
348 wxBitmap::wxBitmap(const char bits
[], int width
, int height
, int depth
)
352 #ifndef __WXMICROWIN__
353 wxBitmapRefData
*refData
= new wxBitmapRefData
;
356 refData
->m_width
= width
;
357 refData
->m_height
= height
;
358 refData
->m_depth
= depth
;
363 // we assume that it is in XBM format which is not quite the same as
364 // the format CreateBitmap() wants because the order of bytes in the
366 const size_t bytesPerLine
= (width
+ 7) / 8;
367 const size_t padding
= bytesPerLine
% 2;
368 const size_t len
= height
* ( padding
+ bytesPerLine
);
369 data
= (char *)malloc(len
);
370 const char *src
= bits
;
373 for ( int rows
= 0; rows
< height
; rows
++ )
375 for ( size_t cols
= 0; cols
< bytesPerLine
; cols
++ )
377 unsigned char val
= *src
++;
378 unsigned char reversed
= 0;
380 for ( int bits
= 0; bits
< 8; bits
++)
383 reversed
|= (val
& 0x01);
395 // bits should already be in Windows standard format
396 data
= (char *)bits
; // const_cast is harmless
399 HBITMAP hbmp
= ::CreateBitmap(width
, height
, 1, depth
, data
);
402 wxLogLastError(wxT("CreateBitmap"));
410 SetHBITMAP((WXHBITMAP
)hbmp
);
414 // Create from XPM data
415 #if wxUSE_IMAGE && wxUSE_XPM
416 bool wxBitmap::CreateFromXpm(const char **data
)
418 bool wxBitmap::CreateFromXpm(const char **WXUNUSED(data
))
421 #if wxUSE_IMAGE && wxUSE_XPM
424 wxCHECK_MSG( data
!= NULL
, FALSE
, wxT("invalid bitmap data") )
426 wxXPMDecoder decoder
;
427 wxImage img
= decoder
.ReadData(data
);
428 wxCHECK_MSG( img
.Ok(), FALSE
, wxT("invalid bitmap data") )
430 *this = wxBitmap(img
);
437 wxBitmap::wxBitmap(int w
, int h
, int d
)
441 (void)Create(w
, h
, d
);
444 wxBitmap::wxBitmap(int w
, int h
, const wxDC
& dc
)
448 (void)Create(w
, h
, dc
);
451 wxBitmap::wxBitmap(void *data
, long type
, int width
, int height
, int depth
)
455 (void)Create(data
, type
, width
, height
, depth
);
458 wxBitmap::wxBitmap(const wxString
& filename
, wxBitmapType type
)
462 LoadFile(filename
, (int)type
);
465 bool wxBitmap::Create(int width
, int height
, int depth
)
467 return DoCreate(width
, height
, depth
, 0);
470 bool wxBitmap::Create(int width
, int height
, const wxDC
& dc
)
472 wxCHECK_MSG( dc
.Ok(), FALSE
, _T("invalid HDC in wxBitmap::Create()") );
474 return DoCreate(width
, height
, -1, dc
.GetHDC());
477 bool wxBitmap::DoCreate(int w
, int h
, int d
, WXHDC hdc
)
481 m_refData
= new wxBitmapRefData
;
483 GetBitmapData()->m_width
= w
;
484 GetBitmapData()->m_height
= h
;
486 HBITMAP hbmp
wxDUMMY_INITIALIZE(0);
488 #ifndef NEVER_USE_DIB
489 if ( wxShouldCreateDIB(w
, h
, d
, hdc
) )
493 // create DIBs without alpha channel by default
501 // don't delete the DIB section in dib object dtor
504 GetBitmapData()->m_isDIB
= TRUE
;
505 GetBitmapData()->m_depth
= d
;
508 #endif // NEVER_USE_DIB
510 #ifndef ALWAYS_USE_DIB
511 #ifndef __WXMICROWIN__
514 hbmp
= ::CreateBitmap(w
, h
, 1, d
, NULL
);
517 wxLogLastError(wxT("CreateBitmap"));
520 GetBitmapData()->m_depth
= d
;
522 else // d == 0, create bitmap compatible with the screen
523 #endif // !__WXMICROWIN__
526 hbmp
= ::CreateCompatibleBitmap(dc
, w
, h
);
529 wxLogLastError(wxT("CreateCompatibleBitmap"));
532 GetBitmapData()->m_depth
= wxDisplayDepth();
534 #endif // !ALWAYS_USE_DIB
537 SetHBITMAP((WXHBITMAP
)hbmp
);
544 // ----------------------------------------------------------------------------
545 // wxImage to/from conversions for Microwin
546 // ----------------------------------------------------------------------------
548 // Microwin versions are so different from normal ones that it really doesn't
549 // make sense to use #ifdefs inside the function bodies
550 #ifdef __WXMICROWIN__
552 bool wxBitmap::CreateFromImage(const wxImage
& image
, int depth
, const wxDC
& dc
)
554 // Set this to 1 to experiment with mask code,
555 // which currently doesn't work
558 m_refData
= new wxBitmapRefData();
560 // Initial attempt at a simple-minded implementation.
561 // The bitmap will always be created at the screen depth,
562 // so the 'depth' argument is ignored.
564 HDC hScreenDC
= ::GetDC(NULL
);
565 int screenDepth
= ::GetDeviceCaps(hScreenDC
, BITSPIXEL
);
567 HBITMAP hBitmap
= ::CreateCompatibleBitmap(hScreenDC
, image
.GetWidth(), image
.GetHeight());
568 HBITMAP hMaskBitmap
= NULL
;
569 HBITMAP hOldMaskBitmap
= NULL
;
571 unsigned char maskR
= 0;
572 unsigned char maskG
= 0;
573 unsigned char maskB
= 0;
575 // printf("Created bitmap %d\n", (int) hBitmap);
578 ::ReleaseDC(NULL
, hScreenDC
);
581 HDC hMemDC
= ::CreateCompatibleDC(hScreenDC
);
583 HBITMAP hOldBitmap
= ::SelectObject(hMemDC
, hBitmap
);
584 ::ReleaseDC(NULL
, hScreenDC
);
586 // created an mono-bitmap for the possible mask
587 bool hasMask
= image
.HasMask();
592 // FIXME: we should be able to pass bpp = 1, but
593 // GdBlit can't handle a different depth
595 hMaskBitmap
= ::CreateBitmap( (WORD
)image
.GetWidth(), (WORD
)image
.GetHeight(), 1, 1, NULL
);
597 hMaskBitmap
= ::CreateCompatibleBitmap( hMemDC
, (WORD
)image
.GetWidth(), (WORD
)image
.GetHeight());
599 maskR
= image
.GetMaskRed();
600 maskG
= image
.GetMaskGreen();
601 maskB
= image
.GetMaskBlue();
609 hScreenDC
= ::GetDC(NULL
);
610 hMaskDC
= ::CreateCompatibleDC(hScreenDC
);
611 ::ReleaseDC(NULL
, hScreenDC
);
613 hOldMaskBitmap
= ::SelectObject( hMaskDC
, hMaskBitmap
);
621 for (i
= 0; i
< image
.GetWidth(); i
++)
623 for (j
= 0; j
< image
.GetHeight(); j
++)
625 unsigned char red
= image
.GetRed(i
, j
);
626 unsigned char green
= image
.GetGreen(i
, j
);
627 unsigned char blue
= image
.GetBlue(i
, j
);
629 ::SetPixel(hMemDC
, i
, j
, PALETTERGB(red
, green
, blue
));
633 // scan the bitmap for the transparent colour and set the corresponding
634 // pixels in the mask to BLACK and the rest to WHITE
635 if (maskR
== red
&& maskG
== green
&& maskB
== blue
)
636 ::SetPixel(hMaskDC
, i
, j
, PALETTERGB(0, 0, 0));
638 ::SetPixel(hMaskDC
, i
, j
, PALETTERGB(255, 255, 255));
643 ::SelectObject(hMemDC
, hOldBitmap
);
647 ::SelectObject(hMaskDC
, hOldMaskBitmap
);
650 ((wxBitmapRefData
*)m_refData
)->SetMask(hMaskBitmap
);
653 SetWidth(image
.GetWidth());
654 SetHeight(image
.GetHeight());
655 SetDepth(screenDepth
);
656 SetHBITMAP( (WXHBITMAP
) hBitmap
);
659 // Copy the palette from the source image
660 SetPalette(image
.GetPalette());
661 #endif // wxUSE_PALETTE
666 wxImage
wxBitmap::ConvertToImage() const
668 // Initial attempt at a simple-minded implementation.
669 // The bitmap will always be created at the screen depth,
670 // so the 'depth' argument is ignored.
671 // TODO: transparency (create a mask image)
675 wxFAIL_MSG( wxT("bitmap is invalid") );
681 wxCHECK_MSG( Ok(), wxNullImage
, wxT("invalid bitmap") );
683 // create an wxImage object
684 int width
= GetWidth();
685 int height
= GetHeight();
686 image
.Create( width
, height
);
687 unsigned char *data
= image
.GetData();
690 wxFAIL_MSG( wxT("could not allocate data for image") );
694 HDC hScreenDC
= ::GetDC(NULL
);
696 HDC hMemDC
= ::CreateCompatibleDC(hScreenDC
);
697 ::ReleaseDC(NULL
, hScreenDC
);
699 HBITMAP hBitmap
= (HBITMAP
) GetHBITMAP();
701 HBITMAP hOldBitmap
= ::SelectObject(hMemDC
, hBitmap
);
704 for (i
= 0; i
< GetWidth(); i
++)
706 for (j
= 0; j
< GetHeight(); j
++)
708 COLORREF color
= ::GetPixel(hMemDC
, i
, j
);
709 unsigned char red
= GetRValue(color
);
710 unsigned char green
= GetGValue(color
);
711 unsigned char blue
= GetBValue(color
);
713 image
.SetRGB(i
, j
, red
, green
, blue
);
717 ::SelectObject(hMemDC
, hOldBitmap
);
721 // Copy the palette from the source image
723 image
.SetPalette(* GetPalette());
724 #endif // wxUSE_PALETTE
729 #endif // __WXMICROWIN__
731 // ----------------------------------------------------------------------------
732 // wxImage to/from conversions
733 // ----------------------------------------------------------------------------
737 bool wxBitmap::CreateFromImage(const wxImage
& image
, int depth
)
739 return CreateFromImage(image
, depth
, 0);
742 bool wxBitmap::CreateFromImage(const wxImage
& image
, const wxDC
& dc
)
744 wxCHECK_MSG( dc
.Ok(), FALSE
,
745 _T("invalid HDC in wxBitmap::CreateFromImage()") );
747 return CreateFromImage(image
, -1, dc
.GetHDC());
750 bool wxBitmap::CreateFromImage(const wxImage
& image
, int depth
, WXHDC hdc
)
752 wxCHECK_MSG( image
.Ok(), FALSE
, wxT("invalid image") );
756 // first convert the image to DIB
757 const int h
= image
.GetHeight();
758 const int w
= image
.GetWidth();
765 // store the bitmap parameters
766 wxBitmapRefData
*refData
= new wxBitmapRefData
;
767 refData
->m_width
= w
;
768 refData
->m_height
= h
;
769 refData
->m_hasAlpha
= image
.HasAlpha();
774 // next either store DIB as is or create a DDB from it
775 HBITMAP hbitmap
wxDUMMY_INITIALIZE(0);
777 // are we going to use DIB?
779 // NB: DDBs don't support alpha so if we have alpha channel we must use DIB
780 if ( image
.HasAlpha() || wxShouldCreateDIB(w
, h
, depth
, hdc
) )
782 // don't delete the DIB section in dib object dtor
783 hbitmap
= dib
.Detach();
785 refData
->m_isDIB
= TRUE
;
786 refData
->m_depth
= dib
.GetDepth();
788 #ifndef ALWAYS_USE_DIB
789 else // we need to convert DIB to DDB
791 hbitmap
= dib
.CreateDDB((HDC
)hdc
);
793 refData
->m_depth
= depth
== -1 ? dib
.GetDepth() : depth
;
795 #endif // !ALWAYS_USE_DIB
797 // validate this object
798 SetHBITMAP((WXHBITMAP
)hbitmap
);
800 // finally also set the mask if we have one
801 if ( image
.HasMask() )
803 SetMask(new wxMask(*this, wxColour(image
.GetMaskRed(),
804 image
.GetMaskGreen(),
805 image
.GetMaskBlue())));
811 wxImage
wxBitmap::ConvertToImage() const
820 wxImage image
= dib
.ConvertToImage();
828 // TODO: WinCE mask-copying support and use wxDIB
831 if( GetMask() && GetMask()->GetMaskBitmap() )
833 static const int MASK_RED
= 1;
834 static const int MASK_GREEN
= 2;
835 static const int MASK_BLUE
= 3;
836 static const int MASK_BLUE_REPLACEMENT
= 2;
838 HBITMAP hbitmap
= (HBITMAP
) GetMask()->GetMaskBitmap();
839 int width
= GetWidth();
840 int height
= GetHeight();
842 int bytesPerLine
= width
*3;
843 int sizeDWORD
= sizeof( DWORD
);
844 int lineBoundary
= bytesPerLine
% sizeDWORD
;
846 if( lineBoundary
> 0 )
848 padding
= sizeDWORD
- lineBoundary
;
849 bytesPerLine
+= padding
;
852 // create a DIB header
853 int headersize
= sizeof(BITMAPINFOHEADER
);
854 BITMAPINFO
*lpDIBh
= (BITMAPINFO
*) malloc( headersize
);
857 wxFAIL_MSG( wxT("could not allocate data for DIB header") );
862 // Fill in the DIB header
863 lpDIBh
->bmiHeader
.biSize
= headersize
;
864 lpDIBh
->bmiHeader
.biWidth
= width
;
865 lpDIBh
->bmiHeader
.biHeight
= -height
;
866 lpDIBh
->bmiHeader
.biSizeImage
= bytesPerLine
* height
;
867 lpDIBh
->bmiHeader
.biPlanes
= 1;
868 lpDIBh
->bmiHeader
.biBitCount
= 24;
869 lpDIBh
->bmiHeader
.biCompression
= BI_RGB
;
870 lpDIBh
->bmiHeader
.biClrUsed
= 0;
871 // These seem not really needed for our purpose here.
872 lpDIBh
->bmiHeader
.biClrImportant
= 0;
873 lpDIBh
->bmiHeader
.biXPelsPerMeter
= 0;
874 lpDIBh
->bmiHeader
.biYPelsPerMeter
= 0;
876 // memory DC created, color set, data copied, and memory DC deleted
878 // memory for DIB data
879 unsigned char *lpBits
880 = (unsigned char *) malloc( lpDIBh
->bmiHeader
.biSizeImage
);
883 wxFAIL_MSG( wxT("could not allocate data for DIB") );
889 HDC hdc
= ::GetDC(NULL
);
891 HDC memdc
= ::CreateCompatibleDC( hdc
);
892 ::SetTextColor( memdc
, RGB( 0, 0, 0 ) );
893 ::SetBkColor( memdc
, RGB( 255, 255, 255 ) );
894 ::GetDIBits( memdc
, hbitmap
, 0, height
, lpBits
, lpDIBh
, DIB_RGB_COLORS
);
896 unsigned char *ptdata
= image
.GetData();//data;
897 unsigned char *ptbits
= lpBits
;
899 for( i
=0; i
<height
; i
++ )
901 for( j
=0; j
<width
; j
++ )
903 // is this pixel transparent?
906 if ( (ptdata
[0] == MASK_RED
) &&
907 (ptdata
[1] == MASK_GREEN
) &&
908 (ptdata
[2] == MASK_BLUE
) )
910 // we have to fudge the colour a bit to prevent this
911 // pixel from appearing transparent
912 ptdata
[2] = MASK_BLUE_REPLACEMENT
;
918 *(ptdata
++) = MASK_RED
;
919 *(ptdata
++) = MASK_GREEN
;
920 *(ptdata
++) = MASK_BLUE
;
927 image
.SetMaskColour( MASK_RED
, MASK_GREEN
, MASK_BLUE
);
928 image
.SetMask( true );
930 // free allocated resources
931 ::ReleaseDC(NULL
, hdc
);
935 #endif // __WXWINCE__
940 #endif // wxUSE_WXDIB
942 #endif // wxUSE_IMAGE
944 // ----------------------------------------------------------------------------
945 // loading and saving bitmaps
946 // ----------------------------------------------------------------------------
948 bool wxBitmap::LoadFile(const wxString
& filename
, long type
)
952 wxBitmapHandler
*handler
= wxDynamicCast(FindHandler(type
), wxBitmapHandler
);
956 m_refData
= new wxBitmapRefData
;
958 return handler
->LoadFile(this, filename
, type
, -1, -1);
961 else // no bitmap handler found
964 if ( image
.LoadFile( filename
, type
) && image
.Ok() )
966 *this = wxBitmap(image
);
971 #endif // wxUSE_IMAGE
976 bool wxBitmap::Create(void *data
, long type
, int width
, int height
, int depth
)
980 wxBitmapHandler
*handler
= wxDynamicCast(FindHandler(type
), wxBitmapHandler
);
984 wxLogDebug(wxT("Failed to create bitmap: no bitmap handler for type %ld defined."), type
);
989 m_refData
= new wxBitmapRefData
;
991 return handler
->Create(this, data
, type
, width
, height
, depth
);
994 bool wxBitmap::SaveFile(const wxString
& filename
,
996 const wxPalette
*palette
)
998 wxBitmapHandler
*handler
= wxDynamicCast(FindHandler(type
), wxBitmapHandler
);
1002 return handler
->SaveFile(this, filename
, type
, palette
);
1005 else // no bitmap handler found
1007 // FIXME what about palette? shouldn't we use it?
1008 wxImage image
= ConvertToImage();
1011 return image
.SaveFile(filename
, type
);
1014 #endif // wxUSE_IMAGE
1019 // ----------------------------------------------------------------------------
1020 // sub bitmap extraction
1021 // ----------------------------------------------------------------------------
1023 wxBitmap
wxBitmap::GetSubBitmap( const wxRect
& rect
) const
1025 wxCHECK_MSG( Ok() &&
1026 (rect
.x
>= 0) && (rect
.y
>= 0) &&
1027 (rect
.x
+rect
.width
<= GetWidth()) &&
1028 (rect
.y
+rect
.height
<= GetHeight()),
1029 wxNullBitmap
, wxT("Invalid bitmap or bitmap region") );
1031 wxBitmap
ret( rect
.width
, rect
.height
);
1032 wxASSERT_MSG( ret
.Ok(), wxT("GetSubBitmap error") );
1034 #ifndef __WXMICROWIN__
1035 // TODO: copy alpha channel data if any
1042 SelectInHDC
selectSrc(dcSrc
, GetHbitmap()),
1043 selectDst(dcDst
, GetHbitmapOf(ret
));
1045 if ( !selectSrc
|| !selectDst
)
1047 wxLogLastError(_T("SelectObjct(hBitmap)"));
1050 if ( !::BitBlt(dcDst
, 0, 0, rect
.width
, rect
.height
,
1051 dcSrc
, rect
.x
, rect
.y
, SRCCOPY
) )
1053 wxLogLastError(_T("BitBlt"));
1057 // copy mask if there is one
1060 HBITMAP hbmpMask
= ::CreateBitmap(rect
.width
, rect
.height
, 1, 1, 0);
1062 SelectInHDC
selectSrc(dcSrc
, (HBITMAP
) GetMask()->GetMaskBitmap()),
1063 selectDst(dcDst
, hbmpMask
);
1065 if ( !::BitBlt(dcDst
, 0, 0, rect
.width
, rect
.height
,
1066 dcSrc
, rect
.x
, rect
.y
, SRCCOPY
) )
1068 wxLogLastError(_T("BitBlt"));
1071 wxMask
*mask
= new wxMask((WXHBITMAP
) hbmpMask
);
1074 #endif // !__WXMICROWIN__
1079 // ----------------------------------------------------------------------------
1080 // wxBitmap accessors
1081 // ----------------------------------------------------------------------------
1084 wxPalette
* wxBitmap::GetPalette() const
1086 return GetBitmapData() ? &GetBitmapData()->m_bitmapPalette
1087 : (wxPalette
*) NULL
;
1091 wxMask
*wxBitmap::GetMask() const
1093 return GetBitmapData() ? GetBitmapData()->GetMask() : (wxMask
*) NULL
;
1098 wxDC
*wxBitmap::GetSelectedInto() const
1100 return GetBitmapData() ? GetBitmapData()->m_selectedInto
: (wxDC
*) NULL
;
1105 #if WXWIN_COMPATIBILITY_2_4
1107 int wxBitmap::GetQuality() const
1112 #endif // WXWIN_COMPATIBILITY_2_4
1114 void wxBitmap::UseAlpha()
1116 if ( GetBitmapData() )
1117 GetBitmapData()->m_hasAlpha
= true;
1120 bool wxBitmap::HasAlpha() const
1122 return GetBitmapData() && GetBitmapData()->m_hasAlpha
;
1125 // ----------------------------------------------------------------------------
1127 // ----------------------------------------------------------------------------
1131 void wxBitmap::SetSelectedInto(wxDC
*dc
)
1133 if ( GetBitmapData() )
1134 GetBitmapData()->m_selectedInto
= dc
;
1141 void wxBitmap::SetPalette(const wxPalette
& palette
)
1145 GetBitmapData()->m_bitmapPalette
= palette
;
1148 #endif // wxUSE_PALETTE
1150 void wxBitmap::SetMask(wxMask
*mask
)
1154 GetBitmapData()->SetMask(mask
);
1157 #if WXWIN_COMPATIBILITY_2_4
1159 void wxBitmap::SetQuality(int WXUNUSED(quality
))
1163 #endif // WXWIN_COMPATIBILITY_2_4
1165 // ----------------------------------------------------------------------------
1166 // raw bitmap access support
1167 // ----------------------------------------------------------------------------
1169 #ifdef wxHAVE_RAW_BITMAP
1170 void *wxBitmap::GetRawData(wxPixelDataBase
& data
, int bpp
)
1175 // no bitmap, no data (raw or otherwise)
1179 // if we're already a DIB we can access our data directly, but if not we
1180 // need to convert this DDB to a DIB section and use it for raw access and
1181 // then convert it back
1183 if ( !GetBitmapData()->m_isDIB
)
1185 wxCHECK_MSG( !GetBitmapData()->m_dib
, FALSE
,
1186 _T("GetRawData() may be called only once") );
1188 wxDIB
*dib
= new wxDIB(*this);
1196 // we'll free it in UngetRawData()
1197 GetBitmapData()->m_dib
= dib
;
1199 hDIB
= dib
->GetHandle();
1203 hDIB
= GetHbitmap();
1207 if ( ::GetObject(hDIB
, sizeof(ds
), &ds
) != sizeof(DIBSECTION
) )
1209 wxFAIL_MSG( _T("failed to get DIBSECTION from a DIB?") );
1214 // check that the bitmap is in correct format
1215 if ( ds
.dsBm
.bmBitsPixel
!= bpp
)
1217 wxFAIL_MSG( _T("incorrect bitmap type in wxBitmap::GetRawData()") );
1222 // ok, store the relevant info in wxPixelDataBase
1223 const LONG h
= ds
.dsBm
.bmHeight
;
1225 data
.m_width
= ds
.dsBm
.bmWidth
;
1228 // remember that DIBs are stored in top to bottom order!
1229 const LONG bytesPerRow
= ds
.dsBm
.bmWidthBytes
;
1230 data
.m_stride
= -bytesPerRow
;
1232 char *bits
= (char *)ds
.dsBm
.bmBits
;
1235 bits
+= (h
- 1)*bytesPerRow
;
1244 void wxBitmap::UngetRawData(wxPixelDataBase
& dataBase
)
1250 // the cast is ugly but we can't do without it and without making this
1251 // function template (and hence inline) unfortunately
1252 typedef wxPixelData
<wxBitmap
, wxAlphaPixelFormat
> PixelData
;
1253 PixelData
& data
= (PixelData
&)dataBase
;
1257 // invalid data, don't crash -- but don't assert neither as we're
1258 // called automatically from wxPixelDataBase dtor and so there is no
1259 // way to prevent this from happening
1263 if ( GetBitmapData()->m_hasAlpha
)
1265 // AlphaBlend() wants to have premultiplied source alpha but
1266 // wxRawBitmap API uses normal, not premultiplied, colours, so adjust
1268 PixelData::Iterator
p(data
);
1270 const int w
= data
.GetWidth();
1271 const int h
= data
.GetHeight();
1273 for ( int y
= 0; y
< h
; y
++ )
1275 PixelData::Iterator rowStart
= p
;
1277 for ( int x
= 0; x
< w
; x
++ )
1279 const unsigned alpha
= p
.Alpha();
1281 p
.Red() = (p
.Red() * alpha
+ 127) / 255;
1282 p
.Blue() = (p
.Blue() * alpha
+ 127) / 255;
1283 p
.Green() = (p
.Green() * alpha
+ 127) / 255;
1293 // if we're a DDB we need to convert DIB back to DDB now to make the
1294 // changes made via raw bitmap access effective
1295 if ( !GetBitmapData()->m_isDIB
)
1297 wxDIB
*dib
= GetBitmapData()->m_dib
;
1298 GetBitmapData()->m_dib
= NULL
;
1304 #endif // wxUSE_WXDIB
1306 #endif // #ifdef wxHAVE_RAW_BITMAP
1308 // ----------------------------------------------------------------------------
1310 // ----------------------------------------------------------------------------
1317 // Construct a mask from a bitmap and a colour indicating
1318 // the transparent area
1319 wxMask::wxMask(const wxBitmap
& bitmap
, const wxColour
& colour
)
1322 Create(bitmap
, colour
);
1325 // Construct a mask from a bitmap and a palette index indicating
1326 // the transparent area
1327 wxMask::wxMask(const wxBitmap
& bitmap
, int paletteIndex
)
1330 Create(bitmap
, paletteIndex
);
1333 // Construct a mask from a mono bitmap (copies the bitmap).
1334 wxMask::wxMask(const wxBitmap
& bitmap
)
1343 ::DeleteObject((HBITMAP
) m_maskBitmap
);
1346 // Create a mask from a mono bitmap (copies the bitmap).
1347 bool wxMask::Create(const wxBitmap
& bitmap
)
1349 #ifndef __WXMICROWIN__
1350 wxCHECK_MSG( bitmap
.Ok() && bitmap
.GetDepth() == 1, FALSE
,
1351 _T("can't create mask from invalid or not monochrome bitmap") );
1355 ::DeleteObject((HBITMAP
) m_maskBitmap
);
1359 m_maskBitmap
= (WXHBITMAP
) CreateBitmap(
1364 HDC srcDC
= CreateCompatibleDC(0);
1365 SelectObject(srcDC
, (HBITMAP
) bitmap
.GetHBITMAP());
1366 HDC destDC
= CreateCompatibleDC(0);
1367 SelectObject(destDC
, (HBITMAP
) m_maskBitmap
);
1368 BitBlt(destDC
, 0, 0, bitmap
.GetWidth(), bitmap
.GetHeight(), srcDC
, 0, 0, SRCCOPY
);
1369 SelectObject(srcDC
, 0);
1371 SelectObject(destDC
, 0);
1379 // Create a mask from a bitmap and a palette index indicating
1380 // the transparent area
1381 bool wxMask::Create(const wxBitmap
& bitmap
, int paletteIndex
)
1385 ::DeleteObject((HBITMAP
) m_maskBitmap
);
1390 if (bitmap
.Ok() && bitmap
.GetPalette()->Ok())
1392 unsigned char red
, green
, blue
;
1393 if (bitmap
.GetPalette()->GetRGB(paletteIndex
, &red
, &green
, &blue
))
1395 wxColour
transparentColour(red
, green
, blue
);
1396 return Create(bitmap
, transparentColour
);
1399 #endif // wxUSE_PALETTE
1404 // Create a mask from a bitmap and a colour indicating
1405 // the transparent area
1406 bool wxMask::Create(const wxBitmap
& bitmap
, const wxColour
& colour
)
1408 #ifndef __WXMICROWIN__
1409 wxCHECK_MSG( bitmap
.Ok(), FALSE
, _T("invalid bitmap in wxMask::Create") );
1413 ::DeleteObject((HBITMAP
) m_maskBitmap
);
1417 int width
= bitmap
.GetWidth(),
1418 height
= bitmap
.GetHeight();
1420 // scan the bitmap for the transparent colour and set the corresponding
1421 // pixels in the mask to BLACK and the rest to WHITE
1422 COLORREF maskColour
= wxColourToPalRGB(colour
);
1423 m_maskBitmap
= (WXHBITMAP
)::CreateBitmap(width
, height
, 1, 1, 0);
1425 HDC srcDC
= ::CreateCompatibleDC(NULL
);
1426 HDC destDC
= ::CreateCompatibleDC(NULL
);
1427 if ( !srcDC
|| !destDC
)
1429 wxLogLastError(wxT("CreateCompatibleDC"));
1434 // SelectObject() will fail
1435 wxASSERT_MSG( !bitmap
.GetSelectedInto(),
1436 _T("bitmap can't be selected in another DC") );
1438 HGDIOBJ hbmpSrcOld
= ::SelectObject(srcDC
, GetHbitmapOf(bitmap
));
1441 wxLogLastError(wxT("SelectObject"));
1446 HGDIOBJ hbmpDstOld
= ::SelectObject(destDC
, (HBITMAP
)m_maskBitmap
);
1449 wxLogLastError(wxT("SelectObject"));
1456 // this will create a monochrome bitmap with 0 points for the pixels
1457 // which have the same value as the background colour and 1 for the
1459 ::SetBkColor(srcDC
, maskColour
);
1460 ::BitBlt(destDC
, 0, 0, width
, height
, srcDC
, 0, 0, NOTSRCCOPY
);
1463 ::SelectObject(srcDC
, hbmpSrcOld
);
1465 ::SelectObject(destDC
, hbmpDstOld
);
1469 #else // __WXMICROWIN__
1471 #endif // __WXMICROWIN__/!__WXMICROWIN__
1474 // ----------------------------------------------------------------------------
1476 // ----------------------------------------------------------------------------
1478 bool wxBitmapHandler::Create(wxGDIImage
*image
,
1481 int width
, int height
, int depth
)
1483 wxBitmap
*bitmap
= wxDynamicCast(image
, wxBitmap
);
1485 return bitmap
? Create(bitmap
, data
, flags
, width
, height
, depth
) : FALSE
;
1488 bool wxBitmapHandler::Load(wxGDIImage
*image
,
1489 const wxString
& name
,
1491 int width
, int height
)
1493 wxBitmap
*bitmap
= wxDynamicCast(image
, wxBitmap
);
1495 return bitmap
? LoadFile(bitmap
, name
, flags
, width
, height
) : FALSE
;
1498 bool wxBitmapHandler::Save(wxGDIImage
*image
,
1499 const wxString
& name
,
1502 wxBitmap
*bitmap
= wxDynamicCast(image
, wxBitmap
);
1504 return bitmap
? SaveFile(bitmap
, name
, type
) : FALSE
;
1507 bool wxBitmapHandler::Create(wxBitmap
*WXUNUSED(bitmap
),
1508 void *WXUNUSED(data
),
1509 long WXUNUSED(type
),
1510 int WXUNUSED(width
),
1511 int WXUNUSED(height
),
1512 int WXUNUSED(depth
))
1517 bool wxBitmapHandler::LoadFile(wxBitmap
*WXUNUSED(bitmap
),
1518 const wxString
& WXUNUSED(name
),
1519 long WXUNUSED(type
),
1520 int WXUNUSED(desiredWidth
),
1521 int WXUNUSED(desiredHeight
))
1526 bool wxBitmapHandler::SaveFile(wxBitmap
*WXUNUSED(bitmap
),
1527 const wxString
& WXUNUSED(name
),
1529 const wxPalette
*WXUNUSED(palette
))
1534 // ----------------------------------------------------------------------------
1536 // ----------------------------------------------------------------------------
1538 #ifndef __WXMICROWIN__
1539 bool wxCreateDIB(long xSize
, long ySize
, long bitsPerPixel
,
1540 HPALETTE hPal
, LPBITMAPINFO
* lpDIBHeader
)
1542 unsigned long i
, headerSize
;
1544 // Allocate space for a DIB header
1545 headerSize
= (sizeof(BITMAPINFOHEADER
) + (256 * sizeof(PALETTEENTRY
)));
1546 LPBITMAPINFO lpDIBheader
= (BITMAPINFO
*) malloc(headerSize
);
1547 LPPALETTEENTRY lpPe
= (PALETTEENTRY
*)((BYTE
*)lpDIBheader
+ sizeof(BITMAPINFOHEADER
));
1549 GetPaletteEntries(hPal
, 0, 256, lpPe
);
1551 memset(lpDIBheader
, 0x00, sizeof(BITMAPINFOHEADER
));
1553 // Fill in the static parts of the DIB header
1554 lpDIBheader
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
1555 lpDIBheader
->bmiHeader
.biWidth
= xSize
;
1556 lpDIBheader
->bmiHeader
.biHeight
= ySize
;
1557 lpDIBheader
->bmiHeader
.biPlanes
= 1;
1559 // this value must be 1, 4, 8 or 24 so PixelDepth can only be
1560 lpDIBheader
->bmiHeader
.biBitCount
= (WORD
)(bitsPerPixel
);
1561 lpDIBheader
->bmiHeader
.biCompression
= BI_RGB
;
1562 lpDIBheader
->bmiHeader
.biSizeImage
= xSize
* abs(ySize
) * bitsPerPixel
>> 3;
1563 lpDIBheader
->bmiHeader
.biClrUsed
= 256;
1566 // Initialize the DIB palette
1567 for (i
= 0; i
< 256; i
++) {
1568 lpDIBheader
->bmiColors
[i
].rgbReserved
= lpPe
[i
].peFlags
;
1569 lpDIBheader
->bmiColors
[i
].rgbRed
= lpPe
[i
].peRed
;
1570 lpDIBheader
->bmiColors
[i
].rgbGreen
= lpPe
[i
].peGreen
;
1571 lpDIBheader
->bmiColors
[i
].rgbBlue
= lpPe
[i
].peBlue
;
1574 *lpDIBHeader
= lpDIBheader
;
1579 void wxFreeDIB(LPBITMAPINFO lpDIBHeader
)
1585 // ----------------------------------------------------------------------------
1586 // global helper functions implemented here
1587 // ----------------------------------------------------------------------------
1589 // helper of wxBitmapToHICON/HCURSOR
1591 HICON
wxBitmapToIconOrCursor(const wxBitmap
& bmp
,
1598 // we can't create an icon/cursor form nothing
1602 wxMask
*mask
= bmp
.GetMask();
1605 // we must have a mask for an icon, so even if it's probably incorrect,
1606 // do create it (grey is the "standard" transparent colour)
1607 mask
= new wxMask(bmp
, *wxLIGHT_GREY
);
1611 wxZeroMemory(iconInfo
);
1612 iconInfo
.fIcon
= iconWanted
; // do we want an icon or a cursor?
1615 iconInfo
.xHotspot
= hotSpotX
;
1616 iconInfo
.yHotspot
= hotSpotY
;
1619 iconInfo
.hbmMask
= wxInvertMask((HBITMAP
)mask
->GetMaskBitmap());
1620 iconInfo
.hbmColor
= GetHbitmapOf(bmp
);
1622 // black out the transparent area to preserve background colour, because
1623 // Windows blits the original bitmap using SRCINVERT (XOR) after applying
1624 // the mask to the dest rect.
1626 MemoryHDC dcSrc
, dcDst
;
1627 SelectInHDC
selectMask(dcSrc
, (HBITMAP
)mask
->GetMaskBitmap()),
1628 selectBitmap(dcDst
, iconInfo
.hbmColor
);
1630 if ( !::BitBlt(dcDst
, 0, 0, bmp
.GetWidth(), bmp
.GetHeight(),
1631 dcSrc
, 0, 0, SRCAND
) )
1633 wxLogLastError(_T("BitBlt"));
1637 HICON hicon
= ::CreateIconIndirect(&iconInfo
);
1639 if ( !bmp
.GetMask() )
1641 // we created the mask, now delete it
1645 // delete the inverted mask bitmap we created as well
1646 ::DeleteObject(iconInfo
.hbmMask
);
1651 HICON
wxBitmapToHICON(const wxBitmap
& bmp
)
1653 return wxBitmapToIconOrCursor(bmp
, TRUE
, 0, 0);
1656 HCURSOR
wxBitmapToHCURSOR(const wxBitmap
& bmp
, int hotSpotX
, int hotSpotY
)
1658 return (HCURSOR
)wxBitmapToIconOrCursor(bmp
, FALSE
, hotSpotX
, hotSpotY
);
1661 HBITMAP
wxInvertMask(HBITMAP hbmpMask
, int w
, int h
)
1663 #ifndef __WXMICROWIN__
1664 wxCHECK_MSG( hbmpMask
, 0, _T("invalid bitmap in wxInvertMask") );
1666 // get width/height from the bitmap if not given
1670 ::GetObject(hbmpMask
, sizeof(BITMAP
), (LPVOID
)&bm
);
1675 HDC hdcSrc
= ::CreateCompatibleDC(NULL
);
1676 HDC hdcDst
= ::CreateCompatibleDC(NULL
);
1677 if ( !hdcSrc
|| !hdcDst
)
1679 wxLogLastError(wxT("CreateCompatibleDC"));
1682 HBITMAP hbmpInvMask
= ::CreateBitmap(w
, h
, 1, 1, 0);
1685 wxLogLastError(wxT("CreateBitmap"));
1688 HGDIOBJ srcTmp
= ::SelectObject(hdcSrc
, hbmpMask
);
1689 HGDIOBJ dstTmp
= ::SelectObject(hdcDst
, hbmpInvMask
);
1690 if ( !::BitBlt(hdcDst
, 0, 0, w
, h
,
1694 wxLogLastError(wxT("BitBlt"));
1698 SelectObject(hdcSrc
,srcTmp
);
1699 SelectObject(hdcDst
,dstTmp
);