1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "bitmap.h"
16 #include "wx/wxprec.h"
18 #include "wx/bitmap.h"
22 #include "wx/metafile.h"
23 #include "wx/xpmdecod.h"
25 #include "wx/rawbmp.h"
27 IMPLEMENT_DYNAMIC_CLASS(wxBitmap
, wxGDIObject
)
28 IMPLEMENT_DYNAMIC_CLASS(wxMask
, wxObject
)
29 IMPLEMENT_DYNAMIC_CLASS(wxBitmapHandler
, wxObject
)
32 #include <ApplicationServices/ApplicationServices.h>
34 #include <PictUtils.h>
37 #include "wx/mac/uma.h"
39 // Implementation Notes
40 // --------------------
42 // we are always working with a 32 bit deep pixel buffer
43 // under QuickDraw its alpha parts are going to be ignored in the GWorld,
44 // therefore we have a separate GWorld there for blitting the mask in
46 // under Quartz then content is transformed into a CGImageRef representing the same data
47 // which can be transferred to the GPU by the OS for fast rendering
49 // we don't dare premultiplied alpha yet
50 #define wxMAC_USE_PREMULTIPLIED_ALPHA 0
52 IconFamilyHandle
wxMacCreateIconFamily(const wxBitmap
& bmp
)
54 // setup the header properly
56 IconFamilyHandle iconFamily
= (IconFamilyHandle
) NewHandle(8) ;
57 (**iconFamily
).resourceType
= kIconFamilyType
;
58 (**iconFamily
).resourceSize
= sizeof(OSType
) + sizeof(Size
);
60 int w
= bmp
.GetWidth() ;
61 int h
= bmp
.GetHeight() ;
62 int sz
= wxMax( w
, h
) ;
65 wxFAIL_MSG( wxT("Currently only 128 pixels wide images are supported") ) ;
69 Handle maskdata
= NULL
;
70 unsigned char * maskptr
= NULL
;
71 unsigned char * ptr
= NULL
;
77 bool hasAlpha
= bmp
.HasAlpha() ;
78 wxMask
*mask
= bmp
.GetMask() ;
79 // thumbnail is 128 x 128 with 32 bits per pixel
84 dataType
= kThumbnail32BitData
;
85 maskType
= kThumbnail8BitMask
;
90 dataType
= kHuge32BitData
;
91 maskType
= kHuge8BitMask
;
96 dataType
= kLarge32BitData
;
97 maskType
= kLarge8BitMask
;
102 dataType
= kSmall32BitData
;
103 maskType
= kSmall8BitMask
;
107 data
= NewHandle( size
) ;
109 ptr
= (unsigned char*) *data
;
110 memset( ptr
, 0, size
) ;
113 maskdata
= NewHandle( masksize
) ;
115 maskptr
= (unsigned char*) *maskdata
;
116 memset( maskptr
, 0 , masksize
) ;
118 unsigned char * source
= (unsigned char*) bmp
.GetRawAccess() ;
119 unsigned char * masksource
= mask
? (unsigned char*) mask
->GetRawAccess() : NULL
;
120 for ( int y
= 0 ; y
< h
; ++y
)
122 unsigned char * dest
= ptr
+ y
* sz
* 4 ;
123 unsigned char * maskdest
= maskptr
+ y
* sz
;
124 for ( int x
= 0 ; x
< w
; ++x
)
126 unsigned char a
= *source
++ ;
127 unsigned char r
= *source
++ ;
128 unsigned char g
= *source
++ ;
129 unsigned char b
= *source
++ ;
137 *maskdest
++ = *masksource
++ ;
145 OSStatus err
= SetIconFamilyData( iconFamily
, dataType
, data
) ;
146 wxASSERT_MSG( err
== noErr
, wxT("Error when adding bitmap") ) ;
148 err
= SetIconFamilyData( iconFamily
, maskType
, maskdata
) ;
149 wxASSERT_MSG( err
== noErr
, wxT("Error when adding mask") ) ;
151 HUnlock( maskdata
) ;
152 DisposeHandle( data
) ;
153 DisposeHandle( maskdata
) ;
157 IconRef
wxMacCreateIconRef(const wxBitmap
& bmp
)
159 IconFamilyHandle iconFamily
= wxMacCreateIconFamily( bmp
) ;
161 static int iconCounter
= 2 ;
163 OSStatus err
= RegisterIconRefFromIconFamily( 'WXNG' , (OSType
) iconCounter
, iconFamily
, &iconRef
) ;
165 err
= GetIconRefOwners(iconRef
, &owners
) ;
167 wxASSERT_MSG( err
== noErr
, wxT("Error when adding bitmap") ) ;
168 // we have to retain a reference, as Unregister will decrement it
169 AcquireIconRef( iconRef
) ;
170 UnregisterIconRef( 'WXNG' , (OSType
) iconCounter
) ;
171 DisposeHandle( (Handle
) iconFamily
) ;
177 PicHandle
wxMacCreatePicHandle( const wxBitmap
&bmp
)
179 CGrafPtr origPort
= NULL
;
180 GDHandle origDev
= NULL
;
181 PicHandle pict
= NULL
;
182 GWorldPtr wp
= NULL
;
183 GWorldPtr mask
= NULL
;
185 GetGWorld( &origPort
, &origDev
) ;
187 wp
= (GWorldPtr
) bmp
.GetHBITMAP( (WXHBITMAP
*) &mask
) ;
189 SetGWorld( wp
, NULL
) ;
191 GetPortBounds( wp
, &portRect
) ;
192 pict
= OpenPicture(&portRect
);
196 RGBColor white
= { 0xffff ,0xffff , 0xffff } ;
197 RGBColor black
= { 0x0000 ,0x0000 , 0x0000 } ;
198 RGBForeColor( &black
) ;
199 RGBBackColor( &white
) ;
201 LockPixels( GetGWorldPixMap( wp
) ) ;
202 CopyBits(GetPortBitMapForCopyBits(wp
),
203 GetPortBitMapForCopyBits(wp
),
207 UnlockPixels( GetGWorldPixMap( wp
) ) ;
210 SetGWorld( origPort
, origDev
) ;
215 void wxMacCreateBitmapButton( ControlButtonContentInfo
*info
, const wxBitmap
& bitmap
, int forceType
)
217 memset( info
, 0 , sizeof(ControlButtonContentInfo
) ) ;
220 wxBitmapRefData
* bmap
= (wxBitmapRefData
*) ( bitmap
.GetRefData()) ;
223 info
->contentType
= kControlContentIconRef
;
224 info
->u
.iconRef
= wxMacCreateIconRef( bitmap
) ;
226 #if wxMAC_USE_CORE_GRAPHICS
228 // only on 10.4 more controls will accept a CGImage
230 info->contentType = kControlContentCGImageRef ;
231 info->u.imageRef = (CGImageRef) bmap->CGImageCreate() ;
237 void wxMacReleaseBitmapButton( ControlButtonContentInfo
*info
)
239 if ( info
->contentType
== kControlContentIconRef
)
241 ReleaseIconRef(info
->u
.iconRef
) ;
243 #if wxMAC_USE_CORE_GRAPHICS
244 else if ( info
->contentType
== kControlContentCGImageRef
)
246 CGImageRelease( info
->u
.imageRef
) ;
251 wxFAIL_MSG(wxT("Unexpected bitmap type") ) ;
256 void wxBitmapRefData::Init()
262 m_bitmapMask
= NULL
;
263 #if wxMAC_USE_CORE_GRAPHICS
264 m_cgImageRef
= NULL
;
267 m_hMaskBitmap
= NULL
;
268 m_maskBytesPerRow
= NULL
;
270 m_rawAccessCount
= 0 ;
274 wxBitmapRefData::wxBitmapRefData()
279 wxBitmapRefData::wxBitmapRefData( int w
, int h
, int d
)
282 Create( w
, h
, d
) ;
285 bool wxBitmapRefData::Create( int w
, int h
, int d
)
291 m_bytesPerRow
= w
* 4 ;
292 size_t size
= m_bytesPerRow
* h
;
293 void* data
= m_memBuf
.GetWriteBuf(size
) ;
294 memset( data
, 0 , size
) ;
295 m_memBuf
.UngetWriteBuf(size
) ;
298 Rect rect
= { 0 , 0 , m_height
, m_width
} ;
299 verify_noerr( NewGWorldFromPtr( (GWorldPtr
*) &m_hBitmap
, k32ARGBPixelFormat
, &rect
, NULL
, NULL
, 0 ,
300 (char*) data
, m_bytesPerRow
) ) ;
301 wxASSERT_MSG( m_hBitmap
, wxT("Unable to create GWorld context") ) ;
302 m_ok
= ( m_hBitmap
!= NULL
) ;
307 void wxBitmapRefData::UseAlpha( bool use
)
309 if ( m_hasAlpha
== use
)
315 int width
= GetWidth() ;
316 int height
= GetHeight() ;
317 m_maskBytesPerRow
= ( width
+ 3 ) & 0xFFFFFFC ;
318 size_t size
= height
* m_maskBytesPerRow
;
319 unsigned char * data
= (unsigned char * ) m_maskMemBuf
.GetWriteBuf( size
) ;
320 memset( data
, 0 , size
) ;
321 wxASSERT( m_hMaskBitmap
== NULL
) ;
322 Rect rect
= { 0 , 0 , height
, width
} ;
323 verify_noerr( NewGWorldFromPtr( (GWorldPtr
*) &m_hMaskBitmap
, k8IndexedGrayPixelFormat
, &rect
, NULL
, NULL
, 0 ,
324 (char*) data
, m_maskBytesPerRow
) ) ;
325 wxASSERT_MSG( m_hMaskBitmap
, wxT("Unable to create GWorld context for alpha mask") ) ;
326 m_maskMemBuf
.UngetWriteBuf(size
) ;
327 #if !wxMAC_USE_CORE_GRAPHICS
333 DisposeGWorld( m_hMaskBitmap
) ;
334 m_hMaskBitmap
= NULL
;
335 m_maskBytesPerRow
= 0 ;
339 void *wxBitmapRefData::GetRawAccess() const
341 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") ) ;
342 return m_memBuf
.GetData() ;
345 void *wxBitmapRefData::BeginRawAccess()
347 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") ) ;
348 wxASSERT( m_rawAccessCount
== 0 ) ;
350 #if wxMAC_USE_CORE_GRAPHICS
351 // we must destroy an existing cached image, as
352 // the bitmap data may change now
355 CGImageRelease( m_cgImageRef
) ;
356 m_cgImageRef
= NULL
;
359 return m_memBuf
.GetData() ;
362 void wxBitmapRefData::EndRawAccess()
364 wxCHECK_RET( Ok() , wxT("invalid bitmap") ) ;
365 wxASSERT( m_rawAccessCount
== 1 ) ;
367 #if !wxMAC_USE_CORE_GRAPHICS
373 #if wxMAC_USE_CORE_GRAPHICS
374 void wxMacMemoryBufferReleaseProc(void *info
, const void *data
, size_t size
)
376 wxMemoryBuffer
* membuf
= (wxMemoryBuffer
*) info
;
377 wxASSERT( data
== membuf
->GetData() ) ;
381 CGImageRef
wxBitmapRefData::CGImageCreate() const
384 wxASSERT( m_rawAccessCount
>= 0 ) ;
386 if ( m_rawAccessCount
> 0 || m_cgImageRef
== NULL
)
388 size_t imageSize
= m_width
* m_height
* 4 ;
389 void * dataBuffer
= m_memBuf
.GetData() ;
392 CGImageAlphaInfo alphaInfo
= kCGImageAlphaNoneSkipFirst
;
393 wxMemoryBuffer
* membuf
= NULL
;
397 membuf
= new wxMemoryBuffer( imageSize
) ;
398 memcpy( membuf
->GetData() , dataBuffer
, imageSize
) ;
399 unsigned char *sourcemaskstart
= (unsigned char *) m_bitmapMask
->GetRawAccess() ;
400 int maskrowbytes
= m_bitmapMask
->GetBytesPerRow() ;
401 unsigned char *destalpha
= (unsigned char *) membuf
->GetData() ;
402 alphaInfo
= kCGImageAlphaFirst
;
403 for ( int y
= 0 ; y
< h
; ++y
, sourcemaskstart
+= maskrowbytes
)
405 unsigned char *sourcemask
= sourcemaskstart
;
406 for( int x
= 0 ; x
< w
; ++x
, sourcemask
++ , destalpha
+= 4 )
408 *destalpha
= *sourcemask
;
412 else if ( m_hasAlpha
)
414 #if wxMAC_USE_PREMULTIPLIED_ALPHA
415 alphaInfo
= kCGImageAlphaPremultipliedFirst
;
417 alphaInfo
= kCGImageAlphaFirst
;
419 membuf
= new wxMemoryBuffer( m_memBuf
) ;
423 membuf
= new wxMemoryBuffer( m_memBuf
) ;
425 CGColorSpaceRef colorSpace
= wxMacGetGenericRGBColorSpace();
426 CGDataProviderRef dataProvider
=
427 CGDataProviderCreateWithData( membuf
, (const void *)membuf
->GetData() , imageSize
,
428 wxMacMemoryBufferReleaseProc
);
430 ::CGImageCreate( w
, h
, 8 , 32 , 4 * m_width
, colorSpace
, alphaInfo
,
431 dataProvider
, NULL
, false , kCGRenderingIntentDefault
);
432 CGDataProviderRelease( dataProvider
);
436 image
= m_cgImageRef
;
437 CGImageRetain( image
) ;
439 if ( m_rawAccessCount
== 0 && m_cgImageRef
== NULL
)
441 // we keep it for later use
442 m_cgImageRef
= image
;
443 CGImageRetain( image
) ;
449 GWorldPtr
wxBitmapRefData::GetHBITMAP(GWorldPtr
* mask
) const
451 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") );
456 *mask
= (GWorldPtr
) m_bitmapMask
->GetHBITMAP() ;
457 else if ( m_hasAlpha
)
459 #if !wxMAC_USE_CORE_GRAPHICS
460 if ( m_rawAccessCount
> 0 )
463 // this structure is not kept in synch when using CG, so if someone
464 // is really accessing the Graphports, we have to sync it
467 *mask
= m_hMaskBitmap
;
473 void wxBitmapRefData::UpdateAlphaMask() const
477 unsigned char *sourcemask
= (unsigned char *) GetRawAccess() ;
478 unsigned char *destalphabase
= (unsigned char *) m_maskMemBuf
.GetData() ;
480 int h
= GetHeight() ;
483 for ( int y
= 0 ; y
< h
; ++y
, destalphabase
+= m_maskBytesPerRow
)
485 unsigned char* destalpha
= destalphabase
;
486 for( int x
= 0 ; x
< w
; ++x
, sourcemask
+= 4, ++destalpha
)
488 *destalpha
= *sourcemask
;
494 void wxBitmapRefData::Free()
496 wxASSERT_MSG( m_rawAccessCount
== 0 , wxT("Bitmap still selected when destroyed") ) ;
498 #if wxMAC_USE_CORE_GRAPHICS
501 CGImageRelease( m_cgImageRef
) ;
502 m_cgImageRef
= NULL
;
507 DisposeGWorld( MAC_WXHBITMAP(m_hBitmap
) ) ;
512 DisposeGWorld( MAC_WXHBITMAP(m_hMaskBitmap
) ) ;
513 m_hMaskBitmap
= NULL
;
523 wxBitmapRefData::~wxBitmapRefData()
528 bool wxBitmap::CopyFromIcon(const wxIcon
& icon
)
530 int w
= icon
.GetWidth() ;
531 int h
= icon
.GetHeight() ;
532 Create( icon
.GetWidth() , icon
.GetHeight() ) ;
534 if ( w
== h
&& ( w
== 16 || w
== 32 || w
== 48 || w
== 128 ) )
536 IconFamilyHandle iconFamily
= NULL
;
537 Handle imagehandle
= NewHandle(0) ;
538 Handle maskhandle
= NewHandle(0) ;
542 IconSelectorValue selector
;
545 dataType
= kThumbnail32BitData
;
546 maskType
= kThumbnail8BitMask
;
547 selector
= kSelectorAllAvailableData
;
551 dataType
= kHuge32BitData
;
552 maskType
= kHuge8BitMask
;
553 selector
= kSelectorHuge32Bit
| kSelectorHuge8BitMask
;
557 dataType
= kLarge32BitData
;
558 maskType
= kLarge8BitMask
;
559 selector
= kSelectorLarge32Bit
| kSelectorLarge8BitMask
;
563 dataType
= kSmall32BitData
;
564 maskType
= kSmall8BitMask
;
565 selector
= kSelectorSmall32Bit
| kSelectorSmall8BitMask
;
569 wxFAIL_MSG(wxT("Illegal icon size for conversion") ) ;
573 OSStatus err
= ( IconRefToIconFamily( MAC_WXHICON(icon
.GetHICON()) , selector
, &iconFamily
) ) ;
575 err
=( GetIconFamilyData( iconFamily
, dataType
, imagehandle
) ) ;
576 err
=( GetIconFamilyData( iconFamily
, maskType
, maskhandle
) ) ;
577 wxASSERT( GetHandleSize( imagehandle
) == w
* 4 * h
) ;
578 wxASSERT( GetHandleSize( maskhandle
) == w
* h
) ;
580 unsigned char *source
= (unsigned char *) *imagehandle
;
581 unsigned char *sourcemask
= (unsigned char *) *maskhandle
;
583 unsigned char* destination
= (unsigned char*) BeginRawAccess() ;
584 for ( int y
= 0 ; y
< h
; ++y
)
586 for ( int x
= 0 ; x
< w
; ++x
)
588 *destination
++ = *sourcemask
++ ;
590 *destination
++ = *source
++ ;
591 *destination
++ = *source
++ ;
592 *destination
++ = *source
++ ;
596 DisposeHandle( imagehandle
) ;
597 DisposeHandle( maskhandle
) ;
602 dc
.SelectObject( *this ) ;
603 dc
.DrawIcon( icon
, 0 , 0 ) ;
604 dc
.SelectObject( wxNullBitmap
) ;
613 wxBitmap::~wxBitmap()
617 wxBitmap::wxBitmap(const char bits
[], int the_width
, int the_height
, int no_bits
)
619 m_refData
= new wxBitmapRefData( the_width
, the_height
, no_bits
) ;
623 int linesize
= ( the_width
/ (sizeof(unsigned char) * 8)) ;
624 if ( the_width
% (sizeof(unsigned char) * 8) ) {
625 linesize
+= sizeof(unsigned char);
627 unsigned char* linestart
= (unsigned char*) bits
;
628 unsigned char* destination
= (unsigned char*) BeginRawAccess() ;
629 for ( int y
= 0 ; y
< the_height
; ++y
, linestart
+= linesize
)
631 for ( int x
= 0 ; x
< the_width
; ++x
)
635 int mask
= 1 << bit
;
636 if ( linestart
[index
] & mask
)
638 *destination
++ = 0xFF ;
645 *destination
++ = 0xFF ;
646 *destination
++ = 0xFF ;
647 *destination
++ = 0xFF ;
648 *destination
++ = 0xFF ;
656 wxFAIL_MSG(wxT("multicolor BITMAPs not yet implemented"));
660 wxBitmap::wxBitmap(int w
, int h
, int d
)
662 (void)Create(w
, h
, d
);
665 wxBitmap::wxBitmap(void *data
, wxBitmapType type
, int width
, int height
, int depth
)
667 (void) Create(data
, type
, width
, height
, depth
);
670 wxBitmap::wxBitmap(const wxString
& filename
, wxBitmapType type
)
672 LoadFile(filename
, type
);
675 wxBitmap::wxBitmap(const char **bits
)
677 (void) CreateFromXpm(bits
);
680 wxBitmap::wxBitmap(char **bits
)
682 (void) CreateFromXpm((const char **)bits
);
685 void* wxBitmap::GetRawAccess() const
687 wxCHECK_MSG( Ok() , NULL
, wxT("invalid bitmap") ) ;
688 return M_BITMAPDATA
->GetRawAccess() ;
691 void* wxBitmap::BeginRawAccess()
693 wxCHECK_MSG( Ok() , NULL
, wxT("invalid bitmap") ) ;
694 return M_BITMAPDATA
->BeginRawAccess() ;
697 void wxBitmap::EndRawAccess()
699 wxCHECK_RET( Ok() , wxT("invalid bitmap") ) ;
700 M_BITMAPDATA
->EndRawAccess() ;
703 bool wxBitmap::CreateFromXpm(const char **bits
)
705 wxCHECK_MSG( bits
!= NULL
, FALSE
, wxT("invalid bitmap data") )
706 wxXPMDecoder decoder
;
707 wxImage img
= decoder
.ReadData(bits
);
708 wxCHECK_MSG( img
.Ok(), FALSE
, wxT("invalid bitmap data") )
709 *this = wxBitmap(img
);
713 #if wxMAC_USE_CORE_GRAPHICS
714 WXCGIMAGEREF
wxBitmap::CGImageCreate() const
716 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") ) ;
717 return M_BITMAPDATA
->CGImageCreate() ;
721 wxBitmap
wxBitmap::GetSubBitmap(const wxRect
&rect
) const
724 (rect
.x
>= 0) && (rect
.y
>= 0) &&
725 (rect
.x
+rect
.width
<= GetWidth()) &&
726 (rect
.y
+rect
.height
<= GetHeight()),
727 wxNullBitmap
, wxT("invalid bitmap or bitmap region") );
730 wxBitmap
ret( rect
.width
, rect
.height
, GetDepth() );
731 wxASSERT_MSG( ret
.Ok(), wxT("GetSubBitmap error") );
734 int sourcewidth
= GetWidth() ;
735 int destwidth
= rect
.width
;
736 int destheight
= rect
.height
;
738 unsigned char * sourcedata
= (unsigned char*) GetRawAccess() ;
739 unsigned char * destdata
= (unsigned char*) ret
.BeginRawAccess() ;
740 int sourcelinesize
= sourcewidth
* 4 ;
741 int destlinesize
= destwidth
* 4 ;
742 unsigned char *source
= sourcedata
+ rect
.x
* 4 + rect
.y
* sourcelinesize
;
743 unsigned char *dest
= destdata
;
744 for(int yy
= 0; yy
< destheight
; ++yy
, source
+= sourcelinesize
, dest
+= destlinesize
)
746 memcpy( dest
, source
, destlinesize
) ;
751 if ( M_BITMAPDATA
->m_bitmapMask
)
753 wxMemoryBuffer maskbuf
;
754 int rowBytes
= ( destwidth
+ 3 ) & 0xFFFFFFC ;
755 size_t maskbufsize
= rowBytes
* destheight
;
756 unsigned char * destdata
= (unsigned char * ) maskbuf
.GetWriteBuf( maskbufsize
) ;
758 int sourcelinesize
= M_BITMAPDATA
->m_bitmapMask
->GetBytesPerRow() ;
759 int destlinesize
= rowBytes
;
760 unsigned char *source
= (unsigned char *) M_BITMAPDATA
->m_bitmapMask
->GetRawAccess() ;
761 source
+= rect
.x
+ rect
.y
* sourcelinesize
;
762 unsigned char *dest
= destdata
;
764 for(int yy
= 0; yy
< destheight
; ++yy
, source
+= sourcelinesize
, dest
+= destlinesize
)
766 memcpy( dest
, source
, destlinesize
) ;
768 maskbuf
.UngetWriteBuf( maskbufsize
) ;
769 ret
.SetMask( new wxMask( maskbuf
, destwidth
, destheight
, rowBytes
) ) ;
771 else if ( HasAlpha() )
777 bool wxBitmap::Create(int w
, int h
, int d
)
782 d
= wxDisplayDepth() ;
784 m_refData
= new wxBitmapRefData( w
, h
, d
);
786 return M_BITMAPDATA
->Ok() ;
789 bool wxBitmap::LoadFile(const wxString
& filename
, wxBitmapType type
)
793 wxBitmapHandler
*handler
= FindHandler(type
);
797 m_refData
= new wxBitmapRefData
;
799 return handler
->LoadFile(this, filename
, type
, -1, -1);
803 wxImage
loadimage(filename
, type
);
804 if (loadimage
.Ok()) {
809 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
813 bool wxBitmap::Create(void *data
, wxBitmapType type
, int width
, int height
, int depth
)
817 m_refData
= new wxBitmapRefData
;
819 wxBitmapHandler
*handler
= FindHandler(type
);
821 if ( handler
== NULL
) {
822 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
827 return handler
->Create(this, data
, type
, width
, height
, depth
);
830 wxBitmap::wxBitmap(const wxImage
& image
, int depth
)
832 wxCHECK_RET( image
.Ok(), wxT("invalid image") )
834 // width and height of the device-dependent bitmap
835 int width
= image
.GetWidth();
836 int height
= image
.GetHeight();
838 m_refData
= new wxBitmapRefData( width
, height
, depth
) ;;
842 bool hasAlpha
= false ;
844 if ( image
.HasMask() )
846 // takes precedence, don't mix with alpha info
850 hasAlpha
= image
.HasAlpha() ;
856 unsigned char* destination
= (unsigned char*) BeginRawAccess() ;
858 register unsigned char* data
= image
.GetData();
859 const unsigned char *alpha
= hasAlpha
? image
.GetAlpha() : NULL
;
860 for (int y
= 0; y
< height
; y
++)
862 for (int x
= 0; x
< width
; x
++)
866 const unsigned char a
= *alpha
++;
868 #if wxMAC_USE_PREMULTIPLIED_ALPHA
869 *destination
++ = ((*data
++) * a
+ 127 ) / 255 ;
870 *destination
++ = ((*data
++) * a
+ 127 ) / 255 ;
871 *destination
++ = ((*data
++) * a
+ 127 ) / 255 ;
873 *destination
++ = *data
++ ;
874 *destination
++ = *data
++ ;
875 *destination
++ = *data
++ ;
880 *destination
++ = 0xFF ;
881 *destination
++ = *data
++ ;
882 *destination
++ = *data
++ ;
883 *destination
++ = *data
++ ;
888 if ( image
.HasMask() )
890 SetMask( new wxMask( *this , wxColour( image
.GetMaskRed() , image
.GetMaskGreen() , image
.GetMaskBlue() ) ) ) ;
894 wxImage
wxBitmap::ConvertToImage() const
898 wxCHECK_MSG( Ok(), wxNullImage
, wxT("invalid bitmap") );
900 // create an wxImage object
901 int width
= GetWidth();
902 int height
= GetHeight();
903 image
.Create( width
, height
);
905 unsigned char *data
= image
.GetData();
906 wxCHECK_MSG( data
, wxNullImage
, wxT("Could not allocate data for image") );
908 unsigned char* source
= (unsigned char*) GetRawAccess() ;
910 bool hasAlpha
= false ;
911 bool hasMask
= false ;
912 unsigned char *alpha
= NULL
;
913 unsigned char *mask
= NULL
;
922 mask
= (unsigned char*) GetMask()->GetRawAccess() ;
928 alpha
= image
.GetAlpha() ;
932 // The following masking algorithm is the same as well in msw/gtk:
933 // the colour used as transparent one in wxImage and the one it is
934 // replaced with when it really occurs in the bitmap
935 static const int MASK_RED
= 1;
936 static const int MASK_GREEN
= 2;
937 static const int MASK_BLUE
= 3;
938 static const int MASK_BLUE_REPLACEMENT
= 2;
940 for (int yy
= 0; yy
< height
; yy
++)
942 for (int xx
= 0; xx
< width
; xx
++)
944 long color
= *((long*) source
) ;
945 unsigned char a
= ((color
&0xFF000000) >> 24) ;
946 unsigned char r
= ((color
&0x00FF0000) >> 16) ;
947 unsigned char g
= ((color
&0x0000FF00) >> 8) ;
948 unsigned char b
= (color
&0x000000FF);
953 if ( r
== MASK_RED
&& g
== MASK_GREEN
&& b
== MASK_BLUE
)
954 b
= MASK_BLUE_REPLACEMENT
;
967 data
[index
+ 1] = g
;
968 data
[index
+ 2] = b
;
974 image
.SetMaskColour( MASK_RED
, MASK_GREEN
, MASK_BLUE
);
979 bool wxBitmap::SaveFile(const wxString
& filename
, wxBitmapType type
,
980 const wxPalette
*palette
) const
982 wxBitmapHandler
*handler
= FindHandler(type
);
986 return handler
->SaveFile(this, filename
, type
, palette
);
990 wxImage image
= ConvertToImage();
992 return image
.SaveFile(filename
, type
);
995 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
999 bool wxBitmap::Ok() const
1001 return (M_BITMAPDATA
&& M_BITMAPDATA
->Ok());
1004 int wxBitmap::GetHeight() const
1006 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1008 return M_BITMAPDATA
->GetHeight();
1011 int wxBitmap::GetWidth() const
1013 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1015 return M_BITMAPDATA
->GetWidth() ;
1018 int wxBitmap::GetDepth() const
1020 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1022 return M_BITMAPDATA
->GetDepth();
1025 int wxBitmap::GetQuality() const
1030 wxMask
*wxBitmap::GetMask() const
1032 wxCHECK_MSG( Ok(), (wxMask
*) NULL
, wxT("invalid bitmap") );
1034 return M_BITMAPDATA
->m_bitmapMask
;
1037 bool wxBitmap::HasAlpha() const
1039 wxCHECK_MSG( Ok(), false , wxT("invalid bitmap") );
1041 return M_BITMAPDATA
->HasAlpha() ;
1044 void wxBitmap::SetWidth(int w
)
1047 m_refData
= new wxBitmapRefData
;
1049 M_BITMAPDATA
->SetWidth(w
);
1052 void wxBitmap::SetHeight(int h
)
1055 m_refData
= new wxBitmapRefData
;
1057 M_BITMAPDATA
->SetHeight(h
);
1060 void wxBitmap::SetDepth(int d
)
1063 m_refData
= new wxBitmapRefData
;
1065 M_BITMAPDATA
->SetDepth(d
);
1068 void wxBitmap::SetQuality(int WXUNUSED(quality
))
1072 void wxBitmap::SetOk(bool isOk
)
1075 m_refData
= new wxBitmapRefData
;
1077 M_BITMAPDATA
->SetOk(isOk
);
1081 wxPalette
*wxBitmap::GetPalette() const
1083 wxCHECK_MSG( Ok(), NULL
, wxT("Invalid bitmap GetPalette()") );
1085 return &M_BITMAPDATA
->m_bitmapPalette
;
1088 void wxBitmap::SetPalette(const wxPalette
& palette
)
1091 m_refData
= new wxBitmapRefData
;
1093 M_BITMAPDATA
->m_bitmapPalette
= palette
;
1095 #endif // wxUSE_PALETTE
1097 void wxBitmap::SetMask(wxMask
*mask
)
1100 m_refData
= new wxBitmapRefData
;
1102 // Remove existing mask if there is one.
1103 delete M_BITMAPDATA
->m_bitmapMask
;
1105 M_BITMAPDATA
->m_bitmapMask
= mask
;
1108 WXHBITMAP
wxBitmap::GetHBITMAP(WXHBITMAP
* mask
) const
1110 return WXHBITMAP(M_BITMAPDATA
->GetHBITMAP((GWorldPtr
*)mask
));
1113 // ----------------------------------------------------------------------------
1115 // ----------------------------------------------------------------------------
1122 // Construct a mask from a bitmap and a colour indicating
1123 // the transparent area
1124 wxMask::wxMask(const wxBitmap
& bitmap
, const wxColour
& colour
)
1127 Create(bitmap
, colour
);
1130 // Construct a mask from a mono bitmap (copies the bitmap).
1131 wxMask::wxMask(const wxBitmap
& bitmap
)
1137 // Construct a mask from a mono bitmap (copies the bitmap).
1138 wxMask::wxMask(const wxMemoryBuffer
& data
, int width
, int height
, int bytesPerRow
)
1141 Create(data
, width
, height
, bytesPerRow
);
1148 DisposeGWorld( (GWorldPtr
) m_maskBitmap
) ;
1149 m_maskBitmap
= NULL
;
1155 m_width
= m_height
= m_bytesPerRow
= 0 ;
1156 m_maskBitmap
= NULL
;
1159 void *wxMask::GetRawAccess() const
1161 return m_memBuf
.GetData() ;
1164 void wxMask::RealizeNative()
1168 DisposeGWorld( (GWorldPtr
) m_maskBitmap
) ;
1169 m_maskBitmap
= NULL
;
1171 Rect rect
= { 0 , 0 , m_height
, m_width
} ;
1172 verify_noerr( NewGWorldFromPtr( (GWorldPtr
*) &m_maskBitmap
, k8IndexedGrayPixelFormat
, &rect
, NULL
, NULL
, 0 ,
1173 (char*) m_memBuf
.GetData() , m_bytesPerRow
) ) ;
1176 // Create a mask from a mono bitmap (copies the bitmap).
1177 bool wxMask::Create(const wxMemoryBuffer
& data
,int width
, int height
, int bytesPerRow
)
1182 m_bytesPerRow
= bytesPerRow
;
1183 wxASSERT( data
.GetDataLen() == (size_t)(height
* bytesPerRow
) ) ;
1188 // Create a mask from a mono bitmap (copies the bitmap).
1189 bool wxMask::Create(const wxBitmap
& bitmap
)
1191 m_width
= bitmap
.GetWidth() ;
1192 m_height
= bitmap
.GetHeight() ;
1193 m_bytesPerRow
= ( m_width
+ 3 ) & 0xFFFFFFC ;
1194 size_t size
= m_bytesPerRow
* m_height
;
1195 unsigned char * destdatabase
= (unsigned char*) m_memBuf
.GetWriteBuf( size
) ;
1196 memset( destdatabase
, 0 , size
) ;
1197 unsigned char * srcdata
= (unsigned char*) bitmap
.GetRawAccess() ;
1198 for ( int y
= 0 ; y
< m_height
; ++y
, destdatabase
+= m_bytesPerRow
)
1200 unsigned char *destdata
= destdatabase
;
1201 for( int x
= 0 ; x
< m_width
; ++x
)
1204 unsigned char r
= *srcdata
++ ;
1205 unsigned char g
= *srcdata
++ ;
1206 unsigned char b
= *srcdata
++ ;
1207 if ( ( r
+ g
+ b
) > 0x10 )
1208 *destdata
++ = 0x00 ;
1210 *destdata
++ = 0xFF ;
1213 m_memBuf
.UngetWriteBuf( size
) ;
1218 // Create a mask from a bitmap and a colour indicating
1219 // the transparent area
1220 bool wxMask::Create(const wxBitmap
& bitmap
, const wxColour
& colour
)
1222 m_width
= bitmap
.GetWidth() ;
1223 m_height
= bitmap
.GetHeight() ;
1224 m_bytesPerRow
= ( m_width
+ 3 ) & 0xFFFFFFC ;
1225 size_t size
= m_bytesPerRow
* m_height
;
1227 unsigned char * destdatabase
= (unsigned char*) m_memBuf
.GetWriteBuf( size
) ;
1228 memset( destdatabase
, 0 , size
) ;
1229 unsigned char * srcdata
= (unsigned char*) bitmap
.GetRawAccess() ;
1230 for ( int y
= 0 ; y
< m_height
; ++y
, destdatabase
+= m_bytesPerRow
)
1232 unsigned char *destdata
= destdatabase
;
1233 for( int x
= 0 ; x
< m_width
; ++x
)
1236 unsigned char r
= *srcdata
++ ;
1237 unsigned char g
= *srcdata
++ ;
1238 unsigned char b
= *srcdata
++ ;
1239 if ( colour
== wxColour( r
, g
, b
) )
1240 *destdata
++ = 0x00 ;
1242 *destdata
++ = 0xFF ;
1245 m_memBuf
.UngetWriteBuf( size
) ;
1250 WXHBITMAP
wxMask::GetHBITMAP() const
1252 return m_maskBitmap
;
1255 // ----------------------------------------------------------------------------
1257 // ----------------------------------------------------------------------------
1259 wxBitmapHandler::~wxBitmapHandler()
1263 bool wxBitmapHandler::Create(wxBitmap
*bitmap
, void *data
, long type
, int width
, int height
, int depth
)
1268 bool wxBitmapHandler::LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1269 int desiredWidth
, int desiredHeight
)
1274 bool wxBitmapHandler::SaveFile(const wxBitmap
*bitmap
, const wxString
& name
, int type
, const wxPalette
*palette
)
1279 // ----------------------------------------------------------------------------
1280 // Standard Handlers
1281 // ----------------------------------------------------------------------------
1283 class WXDLLEXPORT wxPICTResourceHandler
: public wxBitmapHandler
1285 DECLARE_DYNAMIC_CLASS(wxPICTResourceHandler
)
1287 inline wxPICTResourceHandler()
1289 SetName(wxT("Macintosh Pict resource"));
1290 SetExtension(wxEmptyString
);
1291 SetType(wxBITMAP_TYPE_PICT_RESOURCE
);
1294 virtual bool LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1295 int desiredWidth
, int desiredHeight
);
1297 IMPLEMENT_DYNAMIC_CLASS(wxPICTResourceHandler
, wxBitmapHandler
)
1299 bool wxPICTResourceHandler::LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1300 int desiredWidth
, int desiredHeight
)
1303 wxMacStringToPascal( name
, theName
) ;
1305 PicHandle thePict
= (PicHandle
) GetNamedResource( 'PICT' , theName
) ;
1309 mf
.SetHMETAFILE((WXHMETAFILE
) thePict
) ;
1310 bitmap
->Create( mf
.GetWidth() , mf
.GetHeight() ) ;
1312 dc
.SelectObject( *bitmap
) ;
1314 dc
.SelectObject( wxNullBitmap
) ;
1320 void wxBitmap::InitStandardHandlers()
1322 AddHandler(new wxPICTResourceHandler
) ;
1323 AddHandler(new wxICONResourceHandler
) ;
1326 // ----------------------------------------------------------------------------
1327 // raw bitmap access support
1328 // ----------------------------------------------------------------------------
1330 void *wxBitmap::GetRawData(wxPixelDataBase
& data
, int bpp
)
1334 // no bitmap, no data (raw or otherwise)
1338 data
.m_width
= GetWidth() ;
1339 data
.m_height
= GetHeight() ;
1340 data
.m_stride
= GetWidth() * 4 ;
1341 return GetRawAccess() ;
1344 void wxBitmap::UngetRawData(wxPixelDataBase
& dataBase
)
1349 // TODO : if we have some information about the API we should check
1350 // this code looks strange...
1352 if ( M_BITMAPDATA
->HasAlpha() )
1354 wxAlphaPixelData
& data
= (wxAlphaPixelData
&)dataBase
;
1356 int w
= data
.GetWidth(),
1357 h
= data
.GetHeight();
1359 wxBitmap
bmpMask(GetWidth(), GetHeight(), 32);
1360 wxAlphaPixelData
dataMask(bmpMask
, data
.GetOrigin(), wxSize(w
, h
));
1361 wxAlphaPixelData::Iterator
pMask(dataMask
),
1363 for ( int y
= 0; y
< h
; y
++ )
1365 wxAlphaPixelData::Iterator rowStartMask
= pMask
,
1368 for ( int x
= 0; x
< w
; x
++ )
1370 const wxAlphaPixelData::Iterator::ChannelType
1373 pMask
.Red() = alpha
;
1374 pMask
.Green() = alpha
;
1375 pMask
.Blue() = alpha
;
1384 pMask
= rowStartMask
;
1385 pMask
.OffsetY(dataMask
, 1);
1388 SetMask(new wxMask(bmpMask
));
1392 void wxBitmap::UseAlpha()
1394 // remember that we are using alpha channel, we'll need to create a proper
1395 // mask in UngetRawData()
1396 M_BITMAPDATA
->UseAlpha( true );