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 #include "wx/dcmemory.h"
41 // Implementation Notes
42 // --------------------
44 // we are always working with a 32 bit deep pixel buffer
45 // under QuickDraw its alpha parts are going to be ignored in the GWorld,
46 // therefore we have a separate GWorld there for blitting the mask in
48 // under Quartz then content is transformed into a CGImageRef representing the same data
49 // which can be transferred to the GPU by the OS for fast rendering
51 // we don't dare premultiplied alpha yet
52 #define wxMAC_USE_PREMULTIPLIED_ALPHA 0
56 void wxMacCreateBitmapButton( ControlButtonContentInfo
*info
, const wxBitmap
& bitmap
, int forceType
)
58 memset( info
, 0 , sizeof(ControlButtonContentInfo
) ) ;
61 wxBitmapRefData
* bmap
= bitmap
.GetBitmapData() ;
65 if ( ( bmap
->HasNativeSize() && forceType
== 0 ) || forceType
== kControlContentIconRef
)
69 wxBitmapRefData
* bmp
= bmap
;
71 if ( !bmap
->HasNativeSize() )
73 // as PICT conversion will only result in a 16x16 icon, let's attempt
74 // a few scales for better results
76 int w
= bitmap
.GetWidth() ;
77 int h
= bitmap
.GetHeight() ;
78 int sz
= wxMax( w
, h
) ;
79 if ( sz
== 24 || sz
== 64)
81 scaleBmp
= wxBitmap( bitmap
.ConvertToImage().Scale( w
* 2 , h
* 2 ) ) ;
82 bmp
= scaleBmp
.GetBitmapData() ;
86 info
->contentType
= kControlContentIconRef
;
87 info
->u
.iconRef
= bmp
->GetIconRef() ;
88 AcquireIconRef( info
->u
.iconRef
) ;
90 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
91 else if ( forceType
== kControlContentCGImageRef
)
93 info
->contentType
= kControlContentCGImageRef
;
94 info
->u
.imageRef
= (CGImageRef
) bmap
->CGImageCreate() ;
99 info
->contentType
= kControlContentPictHandle
;
100 info
->u
.picture
= bmap
->GetPictHandle() ;
105 void wxMacReleaseBitmapButton( ControlButtonContentInfo
*info
)
107 if ( info
->contentType
== kControlContentIconRef
)
109 ReleaseIconRef( info
->u
.iconRef
) ;
111 else if ( info
->contentType
== kControlNoContent
)
113 // there's no bitmap at all, fall through silently
115 else if ( info
->contentType
== kControlContentPictHandle
)
117 // owned by the bitmap, no release here
119 #if wxMAC_USE_CORE_GRAPHICS && MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_2
120 else if ( info
->contentType
== kControlContentCGImageRef
)
122 CGImageRelease( info
->u
.imageRef
) ;
127 wxFAIL_MSG(wxT("Unexpected bitmap type") ) ;
131 #endif //wxUSE_BMPBUTTON
133 #define M_BITMAPDATA ((wxBitmapRefData *)m_refData)
135 void wxBitmapRefData::Init()
141 m_bitmapMask
= NULL
;
142 #if wxMAC_USE_CORE_GRAPHICS
143 m_cgImageRef
= NULL
;
146 m_pictHandle
= NULL
;
148 m_hMaskBitmap
= NULL
;
149 m_maskBytesPerRow
= NULL
;
151 m_rawAccessCount
= 0 ;
155 wxBitmapRefData::wxBitmapRefData()
160 wxBitmapRefData::wxBitmapRefData( int w
, int h
, int d
)
163 Create( w
, h
, d
) ;
166 bool wxBitmapRefData::Create( int w
, int h
, int d
)
172 m_bytesPerRow
= w
* 4 ;
173 size_t size
= m_bytesPerRow
* h
;
174 void* data
= m_memBuf
.GetWriteBuf(size
) ;
175 memset( data
, 0 , size
) ;
176 m_memBuf
.UngetWriteBuf(size
) ;
179 Rect rect
= { 0 , 0 , m_height
, m_width
} ;
180 verify_noerr( NewGWorldFromPtr( (GWorldPtr
*) &m_hBitmap
, k32ARGBPixelFormat
, &rect
, NULL
, NULL
, 0 ,
181 (char*) data
, m_bytesPerRow
) ) ;
182 wxASSERT_MSG( m_hBitmap
, wxT("Unable to create GWorld context") ) ;
183 m_ok
= ( m_hBitmap
!= NULL
) ;
188 void wxBitmapRefData::UseAlpha( bool use
)
190 if ( m_hasAlpha
== use
)
196 int width
= GetWidth() ;
197 int height
= GetHeight() ;
198 m_maskBytesPerRow
= ( width
* 4 + 3 ) & 0xFFFFFFC ;
199 size_t size
= height
* m_maskBytesPerRow
;
200 unsigned char * data
= (unsigned char * ) m_maskMemBuf
.GetWriteBuf( size
) ;
201 memset( data
, 0 , size
) ;
202 wxASSERT( m_hMaskBitmap
== NULL
) ;
203 Rect rect
= { 0 , 0 , height
, width
} ;
204 verify_noerr( NewGWorldFromPtr( (GWorldPtr
*) &m_hMaskBitmap
, k32ARGBPixelFormat
, &rect
, NULL
, NULL
, 0 ,
205 (char*) data
, m_maskBytesPerRow
) ) ;
206 wxASSERT_MSG( m_hMaskBitmap
, wxT("Unable to create GWorld context for alpha mask") ) ;
207 m_maskMemBuf
.UngetWriteBuf(size
) ;
208 #if !wxMAC_USE_CORE_GRAPHICS
214 DisposeGWorld( m_hMaskBitmap
) ;
215 m_hMaskBitmap
= NULL
;
216 m_maskBytesPerRow
= 0 ;
220 void *wxBitmapRefData::GetRawAccess() const
222 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") ) ;
223 return m_memBuf
.GetData() ;
226 void *wxBitmapRefData::BeginRawAccess()
228 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") ) ;
229 wxASSERT( m_rawAccessCount
== 0 ) ;
231 // we must destroy an existing cached image, as
232 // the bitmap data may change now
233 wxASSERT_MSG( m_pictHandle
== NULL
&& m_iconRef
== NULL
,
234 wxT("Currently, modifing bitmaps that are used in controls already is not supported") ) ;
235 #if wxMAC_USE_CORE_GRAPHICS
238 CGImageRelease( m_cgImageRef
) ;
239 m_cgImageRef
= NULL
;
242 return m_memBuf
.GetData() ;
245 void wxBitmapRefData::EndRawAccess()
247 wxCHECK_RET( Ok() , wxT("invalid bitmap") ) ;
248 wxASSERT( m_rawAccessCount
== 1 ) ;
250 #if !wxMAC_USE_CORE_GRAPHICS
255 bool wxBitmapRefData::HasNativeSize()
258 int h
= GetHeight() ;
259 int sz
= wxMax( w
, h
) ;
261 if ( sz
== 128 || sz
== 48 || sz
== 32 || sz
== 16 )
266 IconRef
wxBitmapRefData::GetIconRef()
268 if ( m_iconRef
== NULL
)
270 // Create Icon Family Handle
272 IconFamilyHandle iconFamily
= NULL
;
274 iconFamily
= (IconFamilyHandle
) NewHandle(8) ;
275 (**iconFamily
).resourceType
= kIconFamilyType
;
276 (**iconFamily
).resourceSize
= sizeof(OSType
) + sizeof(Size
);
279 int h
= GetHeight() ;
280 int sz
= wxMax( w
, h
) ;
282 OSType dataType
= 0 ;
283 OSType maskType
= 0 ;
287 dataType
= kThumbnail32BitData
;
288 maskType
= kThumbnail8BitMask
;
292 dataType
= kHuge32BitData
;
293 maskType
= kHuge8BitMask
;
297 dataType
= kLarge32BitData
;
298 maskType
= kLarge8BitMask
;
302 dataType
= kSmall32BitData
;
303 maskType
= kSmall8BitMask
;
308 // setup the header properly
311 Handle maskdata
= NULL
;
312 unsigned char * maskptr
= NULL
;
313 unsigned char * ptr
= NULL
;
318 data
= NewHandle( size
) ;
320 ptr
= (unsigned char*) *data
;
321 memset( ptr
, 0, size
) ;
324 maskdata
= NewHandle( masksize
) ;
326 maskptr
= (unsigned char*) *maskdata
;
327 memset( maskptr
, 0 , masksize
) ;
329 bool hasAlpha
= HasAlpha() ;
330 wxMask
*mask
= m_bitmapMask
;
331 unsigned char * source
= (unsigned char*) GetRawAccess() ;
332 unsigned char * masksource
= mask
? (unsigned char*) mask
->GetRawAccess() : NULL
;
333 for ( int y
= 0 ; y
< h
; ++y
)
335 unsigned char * dest
= ptr
+ y
* sz
* 4 ;
336 unsigned char * maskdest
= maskptr
+ y
* sz
;
337 for ( int x
= 0 ; x
< w
; ++x
)
339 unsigned char a
= *source
++ ;
340 unsigned char r
= *source
++ ;
341 unsigned char g
= *source
++ ;
342 unsigned char b
= *source
++ ;
350 *maskdest
++ = *masksource
++ ;
358 OSStatus err
= SetIconFamilyData( iconFamily
, dataType
, data
) ;
359 wxASSERT_MSG( err
== noErr
, wxT("Error when adding bitmap") ) ;
361 err
= SetIconFamilyData( iconFamily
, maskType
, maskdata
) ;
362 wxASSERT_MSG( err
== noErr
, wxT("Error when adding mask") ) ;
364 HUnlock( maskdata
) ;
365 DisposeHandle( data
) ;
366 DisposeHandle( maskdata
) ;
370 PicHandle pic
= GetPictHandle() ;
371 SetIconFamilyData( iconFamily
, 'PICT' , (Handle
) pic
) ;
374 // transform into IconRef
376 static int iconCounter
= 2 ;
380 RegisterIconRefFromIconFamily( 'WXNG' , (OSType
) iconCounter
, iconFamily
, &m_iconRef
) ;
381 wxASSERT_MSG( err
== noErr
, wxT("Error when adding bitmap") ) ;
382 // we have to retain a reference, as Unregister will decrement it
383 AcquireIconRef( m_iconRef
) ;
384 UnregisterIconRef( 'WXNG' , (OSType
) iconCounter
) ;
385 DisposeHandle( (Handle
) iconFamily
) ;
391 PicHandle
wxBitmapRefData::GetPictHandle()
393 if ( m_pictHandle
== NULL
)
395 CGrafPtr origPort
= NULL
;
396 GDHandle origDev
= NULL
;
397 GWorldPtr wp
= NULL
;
398 GWorldPtr mask
= NULL
;
399 int height
= GetHeight() ;
400 int width
= GetWidth() ;
402 Rect rect
= { 0 , 0 , height
, width
} ;
404 GetGWorld( &origPort
, &origDev
) ;
406 wp
= GetHBITMAP( &mask
) ;
408 RgnHandle clipRgn
= NULL
;
412 GWorldPtr monoworld
;
414 OSStatus err
= NewGWorld( &monoworld
, 1 , &rect
, NULL
, NULL
, 0 ) ;
416 LockPixels( GetGWorldPixMap( monoworld
) ) ;
417 LockPixels( GetGWorldPixMap( mask
) ) ;
418 SetGWorld( monoworld
, NULL
) ;
419 RGBColor white
= { 0xffff ,0xffff , 0xffff } ;
420 RGBColor black
= { 0x0000 ,0x0000 , 0x0000 } ;
421 RGBForeColor( &black
) ;
422 RGBBackColor( &white
) ;
423 CopyBits(GetPortBitMapForCopyBits(mask
),
424 GetPortBitMapForCopyBits(monoworld
),
428 BitMapToRegion( clipRgn
, (BitMap
*) *GetGWorldPixMap( monoworld
) ) ;
429 UnlockPixels( GetGWorldPixMap( monoworld
) ) ;
430 UnlockPixels( GetGWorldPixMap( mask
) ) ;
431 DisposeGWorld( monoworld
) ;
434 SetGWorld( wp
, NULL
) ;
436 GetPortBounds( wp
, &portRect
) ;
437 m_pictHandle
= OpenPicture(&portRect
);
441 RGBColor white
= { 0xffff ,0xffff , 0xffff } ;
442 RGBColor black
= { 0x0000 ,0x0000 , 0x0000 } ;
443 RGBForeColor( &black
) ;
444 RGBBackColor( &white
) ;
449 LockPixels( GetGWorldPixMap( wp
) ) ;
450 CopyBits(GetPortBitMapForCopyBits(wp
),
451 GetPortBitMapForCopyBits(wp
),
455 UnlockPixels( GetGWorldPixMap( wp
) ) ;
458 SetGWorld( origPort
, origDev
) ;
460 DisposeRgn( clipRgn
) ;
462 return m_pictHandle
;
466 void wxMacMemoryBufferReleaseProc(void *info
, const void *data
, size_t size
)
468 wxMemoryBuffer
* membuf
= (wxMemoryBuffer
*) info
;
469 wxASSERT( data
== membuf
->GetData() ) ;
473 CGImageRef
wxBitmapRefData::CGImageCreate() const
476 wxASSERT( m_rawAccessCount
>= 0 ) ;
478 if ( m_rawAccessCount
> 0 || m_cgImageRef
== NULL
)
480 size_t imageSize
= m_width
* m_height
* 4 ;
481 void * dataBuffer
= m_memBuf
.GetData() ;
484 CGImageAlphaInfo alphaInfo
= kCGImageAlphaNoneSkipFirst
;
485 wxMemoryBuffer
* membuf
= NULL
;
489 membuf
= new wxMemoryBuffer( imageSize
) ;
490 memcpy( membuf
->GetData() , dataBuffer
, imageSize
) ;
491 unsigned char *sourcemaskstart
= (unsigned char *) m_bitmapMask
->GetRawAccess() ;
492 int maskrowbytes
= m_bitmapMask
->GetBytesPerRow() ;
493 unsigned char *destalpha
= (unsigned char *) membuf
->GetData() ;
494 alphaInfo
= kCGImageAlphaFirst
;
495 for ( int y
= 0 ; y
< h
; ++y
, sourcemaskstart
+= maskrowbytes
)
497 unsigned char *sourcemask
= sourcemaskstart
;
498 for( int x
= 0 ; x
< w
; ++x
, sourcemask
++ , destalpha
+= 4 )
500 *destalpha
= *sourcemask
;
504 else if ( m_hasAlpha
)
506 #if wxMAC_USE_PREMULTIPLIED_ALPHA
507 alphaInfo
= kCGImageAlphaPremultipliedFirst
;
509 alphaInfo
= kCGImageAlphaFirst
;
511 membuf
= new wxMemoryBuffer( m_memBuf
) ;
515 membuf
= new wxMemoryBuffer( m_memBuf
) ;
517 CGColorSpaceRef colorSpace
= wxMacGetGenericRGBColorSpace();
518 CGDataProviderRef dataProvider
=
519 CGDataProviderCreateWithData( membuf
, (const void *)membuf
->GetData() , imageSize
,
520 wxMacMemoryBufferReleaseProc
);
522 ::CGImageCreate( w
, h
, 8 , 32 , 4 * m_width
, colorSpace
, alphaInfo
,
523 dataProvider
, NULL
, false , kCGRenderingIntentDefault
);
524 CGDataProviderRelease( dataProvider
);
528 image
= m_cgImageRef
;
529 CGImageRetain( image
) ;
531 if ( m_rawAccessCount
== 0 && m_cgImageRef
== NULL
)
533 // we keep it for later use
534 m_cgImageRef
= image
;
535 CGImageRetain( image
) ;
541 GWorldPtr
wxBitmapRefData::GetHBITMAP(GWorldPtr
* mask
) const
543 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") );
548 *mask
= (GWorldPtr
) m_bitmapMask
->GetHBITMAP() ;
549 else if ( m_hasAlpha
)
551 #if !wxMAC_USE_CORE_GRAPHICS
552 if ( m_rawAccessCount
> 0 )
555 // this structure is not kept in synch when using CG, so if someone
556 // is really accessing the Graphports, we have to sync it
559 *mask
= m_hMaskBitmap
;
565 void wxBitmapRefData::UpdateAlphaMask() const
569 unsigned char *sourcemask
= (unsigned char *) GetRawAccess() ;
570 unsigned char *destalphabase
= (unsigned char *) m_maskMemBuf
.GetData() ;
572 int h
= GetHeight() ;
575 for ( int y
= 0 ; y
< h
; ++y
, destalphabase
+= m_maskBytesPerRow
)
577 unsigned char* destalpha
= destalphabase
;
578 for( int x
= 0 ; x
< w
; ++x
, sourcemask
+= 4 )
580 // we must have 24 bit depth for non quartz smooth alpha
582 *destalpha
++ = 255 - *sourcemask
;
583 *destalpha
++ = 255 - *sourcemask
;
584 *destalpha
++ = 255 - *sourcemask
;
590 void wxBitmapRefData::Free()
592 wxASSERT_MSG( m_rawAccessCount
== 0 , wxT("Bitmap still selected when destroyed") ) ;
594 #if wxMAC_USE_CORE_GRAPHICS
597 CGImageRelease( m_cgImageRef
) ;
598 m_cgImageRef
= NULL
;
603 ReleaseIconRef( m_iconRef
) ;
608 KillPicture( m_pictHandle
) ;
609 m_pictHandle
= NULL
;
613 DisposeGWorld( MAC_WXHBITMAP(m_hBitmap
) ) ;
618 DisposeGWorld( MAC_WXHBITMAP(m_hMaskBitmap
) ) ;
619 m_hMaskBitmap
= NULL
;
629 wxBitmapRefData::~wxBitmapRefData()
634 bool wxBitmap::CopyFromIcon(const wxIcon
& icon
)
636 int w
= icon
.GetWidth() ;
637 int h
= icon
.GetHeight() ;
640 Create( icon
.GetWidth() , icon
.GetHeight() ) ;
642 bool created
= false ;
644 if ( w
== h
&& ( w
== 16 || w
== 32 || w
== 48 || w
== 128 ) )
646 IconFamilyHandle iconFamily
= NULL
;
647 Handle imagehandle
= NewHandle(0) ;
648 Handle maskhandle
= NewHandle(0) ;
652 IconSelectorValue selector
= 0 ;
655 dataType
= kThumbnail32BitData
;
656 maskType
= kThumbnail8BitMask
;
657 selector
= kSelectorAllAvailableData
;
661 dataType
= kHuge32BitData
;
662 maskType
= kHuge8BitMask
;
663 selector
= kSelectorHuge32Bit
| kSelectorHuge8BitMask
;
667 dataType
= kLarge32BitData
;
668 maskType
= kLarge8BitMask
;
669 selector
= kSelectorLarge32Bit
| kSelectorLarge8BitMask
;
673 dataType
= kSmall32BitData
;
674 maskType
= kSmall8BitMask
;
675 selector
= kSelectorSmall32Bit
| kSelectorSmall8BitMask
;
679 OSStatus err
= ( IconRefToIconFamily( MAC_WXHICON(icon
.GetHICON()) , selector
, &iconFamily
) ) ;
681 err
=( GetIconFamilyData( iconFamily
, dataType
, imagehandle
) ) ;
682 err
=( GetIconFamilyData( iconFamily
, maskType
, maskhandle
) ) ;
683 size_t imagehandlesize
= GetHandleSize( imagehandle
) ;
684 size_t maskhandlesize
= GetHandleSize( maskhandle
) ;
686 if ( imagehandlesize
!= 0 && maskhandlesize
!= 0 )
688 wxASSERT( GetHandleSize( imagehandle
) == w
* 4 * h
) ;
689 wxASSERT( GetHandleSize( maskhandle
) == w
* h
) ;
691 unsigned char *source
= (unsigned char *) *imagehandle
;
692 unsigned char *sourcemask
= (unsigned char *) *maskhandle
;
694 unsigned char* destination
= (unsigned char*) BeginRawAccess() ;
695 for ( int y
= 0 ; y
< h
; ++y
)
697 for ( int x
= 0 ; x
< w
; ++x
)
699 *destination
++ = *sourcemask
++ ;
701 *destination
++ = *source
++ ;
702 *destination
++ = *source
++ ;
703 *destination
++ = *source
++ ;
707 DisposeHandle( imagehandle
) ;
708 DisposeHandle( maskhandle
) ;
711 DisposeHandle( (Handle
) iconFamily
) ;
718 dc
.SelectObject( *this ) ;
719 dc
.DrawIcon( icon
, 0 , 0 ) ;
720 dc
.SelectObject( wxNullBitmap
) ;
729 wxBitmap::~wxBitmap()
733 wxBitmap::wxBitmap(const char bits
[], int the_width
, int the_height
, int no_bits
)
735 m_refData
= new wxBitmapRefData( the_width
, the_height
, no_bits
) ;
739 int linesize
= ( the_width
/ (sizeof(unsigned char) * 8)) ;
740 if ( the_width
% (sizeof(unsigned char) * 8) ) {
741 linesize
+= sizeof(unsigned char);
743 unsigned char* linestart
= (unsigned char*) bits
;
744 unsigned char* destination
= (unsigned char*) BeginRawAccess() ;
745 for ( int y
= 0 ; y
< the_height
; ++y
, linestart
+= linesize
)
747 for ( int x
= 0 ; x
< the_width
; ++x
)
751 int mask
= 1 << bit
;
752 if ( linestart
[index
] & mask
)
754 *destination
++ = 0xFF ;
761 *destination
++ = 0xFF ;
762 *destination
++ = 0xFF ;
763 *destination
++ = 0xFF ;
764 *destination
++ = 0xFF ;
772 wxFAIL_MSG(wxT("multicolor BITMAPs not yet implemented"));
776 wxBitmap::wxBitmap(int w
, int h
, int d
)
778 (void)Create(w
, h
, d
);
781 wxBitmap::wxBitmap(void *data
, wxBitmapType type
, int width
, int height
, int depth
)
783 (void) Create(data
, type
, width
, height
, depth
);
786 wxBitmap::wxBitmap(const wxString
& filename
, wxBitmapType type
)
788 LoadFile(filename
, type
);
791 wxBitmap::wxBitmap(const char **bits
)
793 (void) CreateFromXpm(bits
);
796 wxBitmap::wxBitmap(char **bits
)
798 (void) CreateFromXpm((const char **)bits
);
801 void* wxBitmap::GetRawAccess() const
803 wxCHECK_MSG( Ok() , NULL
, wxT("invalid bitmap") ) ;
804 return M_BITMAPDATA
->GetRawAccess() ;
807 void* wxBitmap::BeginRawAccess()
809 wxCHECK_MSG( Ok() , NULL
, wxT("invalid bitmap") ) ;
810 return M_BITMAPDATA
->BeginRawAccess() ;
813 void wxBitmap::EndRawAccess()
815 wxCHECK_RET( Ok() , wxT("invalid bitmap") ) ;
816 M_BITMAPDATA
->EndRawAccess() ;
819 bool wxBitmap::CreateFromXpm(const char **bits
)
822 wxCHECK_MSG( bits
!= NULL
, FALSE
, wxT("invalid bitmap data") )
823 wxXPMDecoder decoder
;
824 wxImage img
= decoder
.ReadData(bits
);
825 wxCHECK_MSG( img
.Ok(), FALSE
, wxT("invalid bitmap data") )
826 *this = wxBitmap(img
);
834 WXCGIMAGEREF
wxBitmap::CGImageCreate() const
836 wxCHECK_MSG( Ok(), NULL
, wxT("invalid bitmap") ) ;
837 return M_BITMAPDATA
->CGImageCreate() ;
841 wxBitmap
wxBitmap::GetSubBitmap(const wxRect
&rect
) const
844 (rect
.x
>= 0) && (rect
.y
>= 0) &&
845 (rect
.x
+rect
.width
<= GetWidth()) &&
846 (rect
.y
+rect
.height
<= GetHeight()),
847 wxNullBitmap
, wxT("invalid bitmap or bitmap region") );
850 wxBitmap
ret( rect
.width
, rect
.height
, GetDepth() );
851 wxASSERT_MSG( ret
.Ok(), wxT("GetSubBitmap error") );
854 int sourcewidth
= GetWidth() ;
855 int destwidth
= rect
.width
;
856 int destheight
= rect
.height
;
858 unsigned char * sourcedata
= (unsigned char*) GetRawAccess() ;
859 unsigned char * destdata
= (unsigned char*) ret
.BeginRawAccess() ;
860 int sourcelinesize
= sourcewidth
* 4 ;
861 int destlinesize
= destwidth
* 4 ;
862 unsigned char *source
= sourcedata
+ rect
.x
* 4 + rect
.y
* sourcelinesize
;
863 unsigned char *dest
= destdata
;
864 for(int yy
= 0; yy
< destheight
; ++yy
, source
+= sourcelinesize
, dest
+= destlinesize
)
866 memcpy( dest
, source
, destlinesize
) ;
871 if ( M_BITMAPDATA
->m_bitmapMask
)
873 wxMemoryBuffer maskbuf
;
874 int rowBytes
= ( destwidth
+ 3 ) & 0xFFFFFFC ;
875 size_t maskbufsize
= rowBytes
* destheight
;
876 unsigned char * destdata
= (unsigned char * ) maskbuf
.GetWriteBuf( maskbufsize
) ;
878 int sourcelinesize
= M_BITMAPDATA
->m_bitmapMask
->GetBytesPerRow() ;
879 int destlinesize
= rowBytes
;
880 unsigned char *source
= (unsigned char *) M_BITMAPDATA
->m_bitmapMask
->GetRawAccess() ;
881 source
+= rect
.x
+ rect
.y
* sourcelinesize
;
882 unsigned char *dest
= destdata
;
884 for(int yy
= 0; yy
< destheight
; ++yy
, source
+= sourcelinesize
, dest
+= destlinesize
)
886 memcpy( dest
, source
, destlinesize
) ;
888 maskbuf
.UngetWriteBuf( maskbufsize
) ;
889 ret
.SetMask( new wxMask( maskbuf
, destwidth
, destheight
, rowBytes
) ) ;
891 else if ( HasAlpha() )
897 bool wxBitmap::Create(int w
, int h
, int d
)
902 d
= wxDisplayDepth() ;
904 m_refData
= new wxBitmapRefData( w
, h
, d
);
906 return M_BITMAPDATA
->Ok() ;
909 bool wxBitmap::LoadFile(const wxString
& filename
, wxBitmapType type
)
913 wxBitmapHandler
*handler
= FindHandler(type
);
917 m_refData
= new wxBitmapRefData
;
919 return handler
->LoadFile(this, filename
, type
, -1, -1);
924 wxImage
loadimage(filename
, type
);
925 if (loadimage
.Ok()) {
931 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
935 bool wxBitmap::Create(void *data
, wxBitmapType type
, int width
, int height
, int depth
)
939 m_refData
= new wxBitmapRefData
;
941 wxBitmapHandler
*handler
= FindHandler(type
);
943 if ( handler
== NULL
) {
944 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
949 return handler
->Create(this, data
, type
, width
, height
, depth
);
954 wxBitmap::wxBitmap(const wxImage
& image
, int depth
)
956 wxCHECK_RET( image
.Ok(), wxT("invalid image") )
958 // width and height of the device-dependent bitmap
959 int width
= image
.GetWidth();
960 int height
= image
.GetHeight();
962 m_refData
= new wxBitmapRefData( width
, height
, depth
) ;;
966 bool hasAlpha
= false ;
968 if ( image
.HasMask() )
970 // takes precedence, don't mix with alpha info
974 hasAlpha
= image
.HasAlpha() ;
980 unsigned char* destination
= (unsigned char*) BeginRawAccess() ;
982 register unsigned char* data
= image
.GetData();
983 const unsigned char *alpha
= hasAlpha
? image
.GetAlpha() : NULL
;
984 for (int y
= 0; y
< height
; y
++)
986 for (int x
= 0; x
< width
; x
++)
990 const unsigned char a
= *alpha
++;
992 #if wxMAC_USE_PREMULTIPLIED_ALPHA
993 *destination
++ = ((*data
++) * a
+ 127 ) / 255 ;
994 *destination
++ = ((*data
++) * a
+ 127 ) / 255 ;
995 *destination
++ = ((*data
++) * a
+ 127 ) / 255 ;
997 *destination
++ = *data
++ ;
998 *destination
++ = *data
++ ;
999 *destination
++ = *data
++ ;
1004 *destination
++ = 0xFF ;
1005 *destination
++ = *data
++ ;
1006 *destination
++ = *data
++ ;
1007 *destination
++ = *data
++ ;
1012 if ( image
.HasMask() )
1014 SetMask( new wxMask( *this , wxColour( image
.GetMaskRed() , image
.GetMaskGreen() , image
.GetMaskBlue() ) ) ) ;
1018 wxImage
wxBitmap::ConvertToImage() const
1022 wxCHECK_MSG( Ok(), wxNullImage
, wxT("invalid bitmap") );
1024 // create an wxImage object
1025 int width
= GetWidth();
1026 int height
= GetHeight();
1027 image
.Create( width
, height
);
1029 unsigned char *data
= image
.GetData();
1030 wxCHECK_MSG( data
, wxNullImage
, wxT("Could not allocate data for image") );
1032 unsigned char* source
= (unsigned char*) GetRawAccess() ;
1034 bool hasAlpha
= false ;
1035 bool hasMask
= false ;
1036 int maskBytesPerRow
= 0 ;
1037 unsigned char *alpha
= NULL
;
1038 unsigned char *mask
= NULL
;
1047 mask
= (unsigned char*) GetMask()->GetRawAccess() ;
1048 maskBytesPerRow
= GetMask()->GetBytesPerRow() ;
1054 alpha
= image
.GetAlpha() ;
1058 // The following masking algorithm is the same as well in msw/gtk:
1059 // the colour used as transparent one in wxImage and the one it is
1060 // replaced with when it really occurs in the bitmap
1061 static const int MASK_RED
= 1;
1062 static const int MASK_GREEN
= 2;
1063 static const int MASK_BLUE
= 3;
1064 static const int MASK_BLUE_REPLACEMENT
= 2;
1066 for (int yy
= 0; yy
< height
; yy
++ , mask
+= maskBytesPerRow
)
1068 unsigned char * maskp
= mask
;
1069 for (int xx
= 0; xx
< width
; xx
++)
1071 long color
= *((long*) source
) ;
1072 unsigned char a
= ((color
&0xFF000000) >> 24) ;
1073 unsigned char r
= ((color
&0x00FF0000) >> 16) ;
1074 unsigned char g
= ((color
&0x0000FF00) >> 8) ;
1075 unsigned char b
= (color
&0x000000FF);
1078 if ( *maskp
++ == 0 )
1080 if ( r
== MASK_RED
&& g
== MASK_GREEN
&& b
== MASK_BLUE
)
1081 b
= MASK_BLUE_REPLACEMENT
;
1090 else if ( hasAlpha
)
1094 data
[index
+ 1] = g
;
1095 data
[index
+ 2] = b
;
1101 image
.SetMaskColour( MASK_RED
, MASK_GREEN
, MASK_BLUE
);
1105 #endif //wxUSE_IMAGE
1107 bool wxBitmap::SaveFile(const wxString
& filename
, wxBitmapType type
,
1108 const wxPalette
*palette
) const
1110 wxBitmapHandler
*handler
= FindHandler(type
);
1114 return handler
->SaveFile(this, filename
, type
, palette
);
1119 wxImage image
= ConvertToImage();
1120 return image
.SaveFile(filename
, type
);
1124 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
1128 bool wxBitmap::Ok() const
1130 return (M_BITMAPDATA
&& M_BITMAPDATA
->Ok());
1133 int wxBitmap::GetHeight() const
1135 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1137 return M_BITMAPDATA
->GetHeight();
1140 int wxBitmap::GetWidth() const
1142 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1144 return M_BITMAPDATA
->GetWidth() ;
1147 int wxBitmap::GetDepth() const
1149 wxCHECK_MSG( Ok(), -1, wxT("invalid bitmap") );
1151 return M_BITMAPDATA
->GetDepth();
1154 #if WXWIN_COMPATIBILITY_2_4
1156 int wxBitmap::GetQuality() const
1163 wxMask
*wxBitmap::GetMask() const
1165 wxCHECK_MSG( Ok(), (wxMask
*) NULL
, wxT("invalid bitmap") );
1167 return M_BITMAPDATA
->m_bitmapMask
;
1170 bool wxBitmap::HasAlpha() const
1172 wxCHECK_MSG( Ok(), false , wxT("invalid bitmap") );
1174 return M_BITMAPDATA
->HasAlpha() ;
1177 void wxBitmap::SetWidth(int w
)
1180 m_refData
= new wxBitmapRefData
;
1182 M_BITMAPDATA
->SetWidth(w
);
1185 void wxBitmap::SetHeight(int h
)
1188 m_refData
= new wxBitmapRefData
;
1190 M_BITMAPDATA
->SetHeight(h
);
1193 void wxBitmap::SetDepth(int d
)
1196 m_refData
= new wxBitmapRefData
;
1198 M_BITMAPDATA
->SetDepth(d
);
1201 #if WXWIN_COMPATIBILITY_2_4
1203 void wxBitmap::SetQuality(int WXUNUSED(quality
))
1209 void wxBitmap::SetOk(bool isOk
)
1212 m_refData
= new wxBitmapRefData
;
1214 M_BITMAPDATA
->SetOk(isOk
);
1218 wxPalette
*wxBitmap::GetPalette() const
1220 wxCHECK_MSG( Ok(), NULL
, wxT("Invalid bitmap GetPalette()") );
1222 return &M_BITMAPDATA
->m_bitmapPalette
;
1225 void wxBitmap::SetPalette(const wxPalette
& palette
)
1228 m_refData
= new wxBitmapRefData
;
1230 M_BITMAPDATA
->m_bitmapPalette
= palette
;
1232 #endif // wxUSE_PALETTE
1234 void wxBitmap::SetMask(wxMask
*mask
)
1237 m_refData
= new wxBitmapRefData
;
1239 // Remove existing mask if there is one.
1240 delete M_BITMAPDATA
->m_bitmapMask
;
1242 M_BITMAPDATA
->m_bitmapMask
= mask
;
1245 WXHBITMAP
wxBitmap::GetHBITMAP(WXHBITMAP
* mask
) const
1247 return WXHBITMAP(M_BITMAPDATA
->GetHBITMAP((GWorldPtr
*)mask
));
1250 // ----------------------------------------------------------------------------
1252 // ----------------------------------------------------------------------------
1259 // Construct a mask from a bitmap and a colour indicating
1260 // the transparent area
1261 wxMask::wxMask(const wxBitmap
& bitmap
, const wxColour
& colour
)
1264 Create(bitmap
, colour
);
1267 // Construct a mask from a mono bitmap (copies the bitmap).
1268 wxMask::wxMask(const wxBitmap
& bitmap
)
1274 // Construct a mask from a mono bitmap (copies the bitmap).
1275 wxMask::wxMask(const wxMemoryBuffer
& data
, int width
, int height
, int bytesPerRow
)
1278 Create(data
, width
, height
, bytesPerRow
);
1285 DisposeGWorld( (GWorldPtr
) m_maskBitmap
) ;
1286 m_maskBitmap
= NULL
;
1292 m_width
= m_height
= m_bytesPerRow
= 0 ;
1293 m_maskBitmap
= NULL
;
1296 void *wxMask::GetRawAccess() const
1298 return m_memBuf
.GetData() ;
1301 // this can be a k8IndexedGrayPixelFormat GWorld, because it never stores other values than black or white
1302 // so no rainbox colors will be created by QD when blitting
1304 void wxMask::RealizeNative()
1308 DisposeGWorld( (GWorldPtr
) m_maskBitmap
) ;
1309 m_maskBitmap
= NULL
;
1311 Rect rect
= { 0 , 0 , m_height
, m_width
} ;
1312 verify_noerr( NewGWorldFromPtr( (GWorldPtr
*) &m_maskBitmap
, k8IndexedGrayPixelFormat
, &rect
, NULL
, NULL
, 0 ,
1313 (char*) m_memBuf
.GetData() , m_bytesPerRow
) ) ;
1316 // Create a mask from a mono bitmap (copies the bitmap).
1317 bool wxMask::Create(const wxMemoryBuffer
& data
,int width
, int height
, int bytesPerRow
)
1322 m_bytesPerRow
= bytesPerRow
;
1323 wxASSERT( data
.GetDataLen() == (size_t)(height
* bytesPerRow
) ) ;
1328 // Create a mask from a mono bitmap (copies the bitmap).
1329 bool wxMask::Create(const wxBitmap
& bitmap
)
1331 m_width
= bitmap
.GetWidth() ;
1332 m_height
= bitmap
.GetHeight() ;
1333 m_bytesPerRow
= ( m_width
+ 3 ) & 0xFFFFFFC ;
1334 size_t size
= m_bytesPerRow
* m_height
;
1335 unsigned char * destdatabase
= (unsigned char*) m_memBuf
.GetWriteBuf( size
) ;
1336 memset( destdatabase
, 0 , size
) ;
1337 unsigned char * srcdata
= (unsigned char*) bitmap
.GetRawAccess() ;
1338 for ( int y
= 0 ; y
< m_height
; ++y
, destdatabase
+= m_bytesPerRow
)
1340 unsigned char *destdata
= destdatabase
;
1341 for( int x
= 0 ; x
< m_width
; ++x
)
1344 unsigned char r
= *srcdata
++ ;
1345 unsigned char g
= *srcdata
++ ;
1346 unsigned char b
= *srcdata
++ ;
1347 if ( ( r
+ g
+ b
) > 0x10 )
1348 *destdata
++ = 0x00 ;
1350 *destdata
++ = 0xFF ;
1353 m_memBuf
.UngetWriteBuf( size
) ;
1358 // Create a mask from a bitmap and a colour indicating
1359 // the transparent area
1360 bool wxMask::Create(const wxBitmap
& bitmap
, const wxColour
& colour
)
1362 m_width
= bitmap
.GetWidth() ;
1363 m_height
= bitmap
.GetHeight() ;
1364 m_bytesPerRow
= ( m_width
+ 3 ) & 0xFFFFFFC ;
1365 size_t size
= m_bytesPerRow
* m_height
;
1367 unsigned char * destdatabase
= (unsigned char*) m_memBuf
.GetWriteBuf( size
) ;
1368 memset( destdatabase
, 0 , size
) ;
1369 unsigned char * srcdata
= (unsigned char*) bitmap
.GetRawAccess() ;
1370 for ( int y
= 0 ; y
< m_height
; ++y
, destdatabase
+= m_bytesPerRow
)
1372 unsigned char *destdata
= destdatabase
;
1373 for( int x
= 0 ; x
< m_width
; ++x
)
1376 unsigned char r
= *srcdata
++ ;
1377 unsigned char g
= *srcdata
++ ;
1378 unsigned char b
= *srcdata
++ ;
1379 if ( colour
== wxColour( r
, g
, b
) )
1380 *destdata
++ = 0x00 ;
1382 *destdata
++ = 0xFF ;
1385 m_memBuf
.UngetWriteBuf( size
) ;
1390 WXHBITMAP
wxMask::GetHBITMAP() const
1392 return m_maskBitmap
;
1395 // ----------------------------------------------------------------------------
1397 // ----------------------------------------------------------------------------
1399 wxBitmapHandler::~wxBitmapHandler()
1403 bool wxBitmapHandler::Create(wxBitmap
*bitmap
, void *data
, long type
, int width
, int height
, int depth
)
1408 bool wxBitmapHandler::LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1409 int desiredWidth
, int desiredHeight
)
1414 bool wxBitmapHandler::SaveFile(const wxBitmap
*bitmap
, const wxString
& name
, int type
, const wxPalette
*palette
)
1419 // ----------------------------------------------------------------------------
1420 // Standard Handlers
1421 // ----------------------------------------------------------------------------
1423 class WXDLLEXPORT wxPICTResourceHandler
: public wxBitmapHandler
1425 DECLARE_DYNAMIC_CLASS(wxPICTResourceHandler
)
1427 inline wxPICTResourceHandler()
1429 SetName(wxT("Macintosh Pict resource"));
1430 SetExtension(wxEmptyString
);
1431 SetType(wxBITMAP_TYPE_PICT_RESOURCE
);
1434 virtual bool LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1435 int desiredWidth
, int desiredHeight
);
1437 IMPLEMENT_DYNAMIC_CLASS(wxPICTResourceHandler
, wxBitmapHandler
)
1440 bool wxPICTResourceHandler::LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
1441 int desiredWidth
, int desiredHeight
)
1445 wxMacStringToPascal( name
, theName
) ;
1447 PicHandle thePict
= (PicHandle
) GetNamedResource( 'PICT' , theName
) ;
1451 mf
.SetHMETAFILE((WXHMETAFILE
) thePict
) ;
1452 bitmap
->Create( mf
.GetWidth() , mf
.GetHeight() ) ;
1454 dc
.SelectObject( *bitmap
) ;
1456 dc
.SelectObject( wxNullBitmap
) ;
1459 #endif //wxUSE_METAFILE
1464 void wxBitmap::InitStandardHandlers()
1466 AddHandler(new wxPICTResourceHandler
) ;
1467 AddHandler(new wxICONResourceHandler
) ;
1470 // ----------------------------------------------------------------------------
1471 // raw bitmap access support
1472 // ----------------------------------------------------------------------------
1474 void *wxBitmap::GetRawData(wxPixelDataBase
& data
, int bpp
)
1478 // no bitmap, no data (raw or otherwise)
1482 data
.m_width
= GetWidth() ;
1483 data
.m_height
= GetHeight() ;
1484 data
.m_stride
= GetWidth() * 4 ;
1485 return GetRawAccess() ;
1488 void wxBitmap::UngetRawData(wxPixelDataBase
& dataBase
)
1493 // TODO : if we have some information about the API we should check
1494 // this code looks strange...
1496 if ( M_BITMAPDATA
->HasAlpha() )
1498 wxAlphaPixelData
& data
= (wxAlphaPixelData
&)dataBase
;
1500 int w
= data
.GetWidth(),
1501 h
= data
.GetHeight();
1503 wxBitmap
bmpMask(GetWidth(), GetHeight(), 32);
1504 wxAlphaPixelData
dataMask(bmpMask
, data
.GetOrigin(), wxSize(w
, h
));
1505 wxAlphaPixelData::Iterator
pMask(dataMask
),
1507 for ( int y
= 0; y
< h
; y
++ )
1509 wxAlphaPixelData::Iterator rowStartMask
= pMask
,
1512 for ( int x
= 0; x
< w
; x
++ )
1514 const wxAlphaPixelData::Iterator::ChannelType
1517 pMask
.Red() = alpha
;
1518 pMask
.Green() = alpha
;
1519 pMask
.Blue() = alpha
;
1528 pMask
= rowStartMask
;
1529 pMask
.OffsetY(dataMask
, 1);
1532 SetMask(new wxMask(bmpMask
));
1536 void wxBitmap::UseAlpha()
1538 // remember that we are using alpha channel, we'll need to create a proper
1539 // mask in UngetRawData()
1540 M_BITMAPDATA
->UseAlpha( true );