1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/core/bitmap.cpp
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/bitmap.h"
18 #include "wx/dcmemory.h"
23 #include "wx/metafile.h"
24 #include "wx/xpmdecod.h"
26 #include "wx/rawbmp.h"
28 IMPLEMENT_DYNAMIC_CLASS(wxBitmap
, wxGDIObject
)
29 IMPLEMENT_DYNAMIC_CLASS(wxMask
, wxObject
)
32 #include "wx/osx/uma.h"
34 #include "wx/osx/private.h"
37 #ifndef __WXOSX_IPHONE__
38 #include <QuickTime/QuickTime.h>
41 CGColorSpaceRef
wxMacGetGenericRGBColorSpace();
42 CGDataProviderRef
wxMacCGDataProviderCreateWithMemoryBuffer( const wxMemoryBuffer
& buf
);
44 // Implementation Notes
45 // --------------------
47 // we are always working with a 32 bit deep pixel buffer
48 // under QuickDraw its alpha parts are going to be ignored in the GWorld,
49 // therefore we have a separate GWorld there for blitting the mask in
51 // under Quartz then content is transformed into a CGImageRef representing the same data
52 // which can be transferred to the GPU by the OS for fast rendering
54 class WXDLLEXPORT wxBitmapRefData
: public wxGDIRefData
56 friend class WXDLLIMPEXP_FWD_CORE wxIcon
;
57 friend class WXDLLIMPEXP_FWD_CORE wxCursor
;
59 wxBitmapRefData(int width
, int height
, int depth
);
60 wxBitmapRefData(CGImageRef image
);
62 wxBitmapRefData(const wxBitmapRefData
&tocopy
);
64 virtual ~wxBitmapRefData();
66 virtual bool IsOk() const { return m_ok
; }
69 void SetOk( bool isOk
) { m_ok
= isOk
; }
71 void SetWidth( int width
) { m_width
= width
; }
72 void SetHeight( int height
) { m_height
= height
; }
73 void SetDepth( int depth
) { m_depth
= depth
; }
75 int GetWidth() const { return m_width
; }
76 int GetHeight() const { return m_height
; }
77 int GetDepth() const { return m_depth
; }
79 void *GetRawAccess() const;
80 void *BeginRawAccess();
83 bool HasAlpha() const { return m_hasAlpha
; }
84 void UseAlpha( bool useAlpha
);
88 wxPalette m_bitmapPalette
;
89 #endif // wxUSE_PALETTE
91 wxMask
* m_bitmapMask
; // Optional mask
92 CGImageRef
CreateCGImage() const;
94 // returns true if the bitmap has a size that
95 // can be natively transferred into a true icon
96 // if no is returned GetIconRef will still produce
97 // an icon but it will be generated via a PICT and
98 // rescaled to 16 x 16
101 // caller should increase ref count if needed longer
102 // than the bitmap exists
103 IconRef
GetIconRef();
105 #ifndef __WXOSX_IPHONE__
106 // returns a Pict from the bitmap content
107 PicHandle
GetPictHandle();
110 CGContextRef
GetBitmapContext() const;
112 int GetBytesPerRow() const { return m_bytesPerRow
; }
114 bool Create(int width
, int height
, int depth
);
115 bool Create( CGImageRef image
);
123 wxMemoryBuffer m_memBuf
;
124 int m_rawAccessCount
;
126 mutable CGImageRef m_cgImageRef
;
129 #ifndef __WXOSX_IPHONE__
130 PicHandle m_pictHandle
;
132 CGContextRef m_hBitmap
;
136 #define wxOSX_USE_PREMULTIPLIED_ALPHA 1
137 static const int kBestByteAlignement
= 16;
138 static const int kMaskBytesPerPixel
= 1;
140 static int GetBestBytesPerRow( int rawBytes
)
142 return (((rawBytes
)+kBestByteAlignement
-1) & ~(kBestByteAlignement
-1) );
145 #if wxUSE_GUI && !defined(__WXOSX_IPHONE__)
147 // this is used for more controls than just the wxBitmap button, also for notebooks etc
149 void wxMacCreateBitmapButton( ControlButtonContentInfo
*info
, const wxBitmap
& bitmap
, int forceType
)
151 memset( info
, 0 , sizeof(ControlButtonContentInfo
) ) ;
154 wxBitmapRefData
* bmap
= bitmap
.GetBitmapData() ;
158 if ( forceType
== 0 )
160 forceType
= kControlContentCGImageRef
;
163 if ( forceType
== kControlContentIconRef
)
166 wxBitmapRefData
* bmp
= bmap
;
168 if ( !bmap
->HasNativeSize() )
170 // as PICT conversion will only result in a 16x16 icon, let's attempt
171 // a few scales for better results
173 int w
= bitmap
.GetWidth() ;
174 int h
= bitmap
.GetHeight() ;
175 int sz
= wxMax( w
, h
) ;
176 if ( sz
== 24 || sz
== 64 )
178 scaleBmp
= wxBitmap( bitmap
.ConvertToImage().Scale( w
* 2 , h
* 2 ) ) ;
179 bmp
= scaleBmp
.GetBitmapData() ;
183 info
->contentType
= kControlContentIconRef
;
184 info
->u
.iconRef
= bmp
->GetIconRef() ;
185 AcquireIconRef( info
->u
.iconRef
) ;
187 else if ( forceType
== kControlContentCGImageRef
)
189 info
->contentType
= kControlContentCGImageRef
;
190 info
->u
.imageRef
= (CGImageRef
) bmap
->CreateCGImage() ;
195 info
->contentType
= kControlContentPictHandle
;
196 info
->u
.picture
= bmap
->GetPictHandle() ;
202 CGImageRef
wxMacCreateCGImageFromBitmap( const wxBitmap
& bitmap
)
204 wxBitmapRefData
* bmap
= bitmap
.GetBitmapData() ;
207 return (CGImageRef
) bmap
->CreateCGImage();
210 void wxMacReleaseBitmapButton( ControlButtonContentInfo
*info
)
212 if ( info
->contentType
== kControlContentIconRef
)
214 ReleaseIconRef( info
->u
.iconRef
) ;
216 else if ( info
->contentType
== kControlNoContent
)
218 // there's no bitmap at all, fall through silently
220 else if ( info
->contentType
== kControlContentPictHandle
)
222 // owned by the bitmap, no release here
224 else if ( info
->contentType
== kControlContentCGImageRef
)
226 CGImageRelease( info
->u
.imageRef
) ;
230 wxFAIL_MSG(wxT("Unexpected bitmap type") ) ;
234 #endif //wxUSE_BMPBUTTON
236 #define M_BITMAPDATA ((wxBitmapRefData *)m_refData)
238 void wxBitmapRefData::Init()
245 m_bitmapMask
= NULL
;
246 m_cgImageRef
= NULL
;
248 #ifndef __WXOSX_IPHONE__
250 m_pictHandle
= NULL
;
254 m_rawAccessCount
= 0 ;
258 wxBitmapRefData::wxBitmapRefData(const wxBitmapRefData
&tocopy
) : wxGDIRefData()
261 Create(tocopy
.m_width
, tocopy
.m_height
, tocopy
.m_depth
);
263 if (tocopy
.m_bitmapMask
)
264 m_bitmapMask
= new wxMask(*tocopy
.m_bitmapMask
);
265 else if (tocopy
.m_hasAlpha
)
268 unsigned char* dest
= (unsigned char*)GetRawAccess();
269 unsigned char* source
= (unsigned char*)tocopy
.GetRawAccess();
270 size_t numbytes
= m_bytesPerRow
* m_height
;
271 memcpy( dest
, source
, numbytes
);
274 wxBitmapRefData::wxBitmapRefData()
279 wxBitmapRefData::wxBitmapRefData( int w
, int h
, int d
)
282 Create( w
, h
, d
) ;
285 wxBitmapRefData::wxBitmapRefData(CGImageRef image
)
290 // code from Technical Q&A QA1509
292 bool wxBitmapRefData::Create(CGImageRef image
)
296 m_width
= CGImageGetWidth(image
);
297 m_height
= CGImageGetHeight(image
);
301 m_bytesPerRow
= GetBestBytesPerRow( m_width
* 4 ) ;
302 size_t size
= m_bytesPerRow
* m_height
;
303 void* data
= m_memBuf
.GetWriteBuf( size
) ;
306 memset( data
, 0 , size
) ;
307 m_memBuf
.UngetWriteBuf( size
) ;
308 CGImageAlphaInfo alpha
= CGImageGetAlphaInfo(image
);
309 if ( alpha
== kCGImageAlphaNone
|| alpha
== kCGImageAlphaNoneSkipLast
|| alpha
== kCGImageAlphaNoneSkipLast
)
311 m_hBitmap
= CGBitmapContextCreate((char*) data
, m_width
, m_height
, 8, m_bytesPerRow
, wxMacGetGenericRGBColorSpace(), kCGImageAlphaNoneSkipFirst
);
316 m_hBitmap
= CGBitmapContextCreate((char*) data
, m_width
, m_height
, 8, m_bytesPerRow
, wxMacGetGenericRGBColorSpace(), kCGImageAlphaPremultipliedFirst
);
318 CGRect rect
= {{0,0},{m_width
,m_height
}};
319 CGContextDrawImage(m_hBitmap
, rect
, image
);
321 wxASSERT_MSG( m_hBitmap
, wxT("Unable to create CGBitmapContext context") ) ;
322 CGContextTranslateCTM( m_hBitmap
, 0, m_height
);
323 CGContextScaleCTM( m_hBitmap
, 1, -1 );
326 m_ok
= ( m_hBitmap
!= NULL
) ;
332 bool wxBitmapRefData::Create( int w
, int h
, int d
)
334 m_width
= wxMax(1, w
);
335 m_height
= wxMax(1, h
);
339 m_bytesPerRow
= GetBestBytesPerRow( m_width
* 4 ) ;
340 size_t size
= m_bytesPerRow
* m_height
;
341 void* data
= m_memBuf
.GetWriteBuf( size
) ;
344 memset( data
, 0 , size
) ;
345 m_memBuf
.UngetWriteBuf( size
) ;
347 m_hBitmap
= CGBitmapContextCreate((char*) data
, m_width
, m_height
, 8, m_bytesPerRow
, wxMacGetGenericRGBColorSpace(), kCGImageAlphaNoneSkipFirst
);
348 wxASSERT_MSG( m_hBitmap
, wxT("Unable to create CGBitmapContext context") ) ;
349 CGContextTranslateCTM( m_hBitmap
, 0, m_height
);
350 CGContextScaleCTM( m_hBitmap
, 1, -1 );
352 m_ok
= ( m_hBitmap
!= NULL
) ;
357 void wxBitmapRefData::UseAlpha( bool use
)
359 if ( m_hasAlpha
== use
)
364 CGContextRelease( m_hBitmap
);
365 m_hBitmap
= CGBitmapContextCreate((char*) m_memBuf
.GetData(), m_width
, m_height
, 8, m_bytesPerRow
, wxMacGetGenericRGBColorSpace(), m_hasAlpha
? kCGImageAlphaPremultipliedFirst
: kCGImageAlphaNoneSkipFirst
);
366 wxASSERT_MSG( m_hBitmap
, wxT("Unable to create CGBitmapContext context") ) ;
367 CGContextTranslateCTM( m_hBitmap
, 0, m_height
);
368 CGContextScaleCTM( m_hBitmap
, 1, -1 );
371 void *wxBitmapRefData::GetRawAccess() const
373 wxCHECK_MSG( IsOk(), NULL
, wxT("invalid bitmap") ) ;
374 return m_memBuf
.GetData() ;
377 void *wxBitmapRefData::BeginRawAccess()
379 wxCHECK_MSG( IsOk(), NULL
, wxT("invalid bitmap") ) ;
380 wxASSERT( m_rawAccessCount
== 0 ) ;
381 #ifndef __WXOSX_IPHONE__
382 wxASSERT_MSG( m_pictHandle
== NULL
&& m_iconRef
== NULL
,
383 wxT("Currently, modifing bitmaps that are used in controls already is not supported") ) ;
387 // we must destroy an existing cached image, as
388 // the bitmap data may change now
391 CGImageRelease( m_cgImageRef
) ;
392 m_cgImageRef
= NULL
;
395 return m_memBuf
.GetData() ;
398 void wxBitmapRefData::EndRawAccess()
400 wxCHECK_RET( IsOk() , wxT("invalid bitmap") ) ;
401 wxASSERT( m_rawAccessCount
== 1 ) ;
406 bool wxBitmapRefData::HasNativeSize()
409 int h
= GetHeight() ;
410 int sz
= wxMax( w
, h
) ;
412 return ( sz
== 128 || sz
== 48 || sz
== 32 || sz
== 16 );
415 #ifndef __WXOSX_IPHONE__
416 IconRef
wxBitmapRefData::GetIconRef()
418 if ( m_iconRef
== NULL
)
420 // Create Icon Family Handle
422 IconFamilyHandle iconFamily
= (IconFamilyHandle
) NewHandle( 0 );
425 int h
= GetHeight() ;
426 int sz
= wxMax( w
, h
) ;
428 OSType dataType
= 0 ;
429 OSType maskType
= 0 ;
434 dataType
= kIconServices128PixelDataARGB
;
438 dataType
= kIconServices48PixelDataARGB
;
442 dataType
= kIconServices32PixelDataARGB
;
446 dataType
= kIconServices16PixelDataARGB
;
457 size_t datasize
= sz
* sz
* 4 ;
458 Handle data
= NewHandle( datasize
) ;
460 unsigned char* ptr
= (unsigned char*) *data
;
461 memset( ptr
, 0, datasize
);
462 bool hasAlpha
= HasAlpha() ;
463 wxMask
*mask
= m_bitmapMask
;
464 unsigned char * sourcePtr
= (unsigned char*) GetRawAccess() ;
465 unsigned char * masksourcePtr
= mask
? (unsigned char*) mask
->GetRawAccess() : NULL
;
467 for ( int y
= 0 ; y
< h
; ++y
, sourcePtr
+= m_bytesPerRow
, masksourcePtr
+= mask
? mask
->GetBytesPerRow() : 0 )
469 unsigned char * source
= sourcePtr
;
470 unsigned char * masksource
= masksourcePtr
;
471 unsigned char * dest
= ptr
+ y
* sz
* 4 ;
472 unsigned char a
, r
, g
, b
;
474 for ( int x
= 0 ; x
< w
; ++x
)
483 a
= 0xFF - *masksource
++ ;
485 else if ( !hasAlpha
)
489 #if wxOSX_USE_PREMULTIPLIED_ALPHA
490 // this must be non-premultiplied data
491 if ( a
!= 0xFF && a
!= 0 )
508 OSStatus err
= SetIconFamilyData( iconFamily
, dataType
, data
);
511 wxFAIL_MSG("Error when adding bitmap");
514 DisposeHandle( data
);
518 // setup the header properly
521 Handle maskdata
= NULL
;
522 unsigned char * maskptr
= NULL
;
523 unsigned char * ptr
= NULL
;
524 size_t datasize
, masksize
;
526 datasize
= sz
* sz
* 4 ;
527 data
= NewHandle( datasize
) ;
529 ptr
= (unsigned char*) *data
;
530 memset( ptr
, 0, datasize
) ;
533 maskdata
= NewHandle( masksize
) ;
535 maskptr
= (unsigned char*) *maskdata
;
536 memset( maskptr
, 0 , masksize
) ;
538 bool hasAlpha
= HasAlpha() ;
539 wxMask
*mask
= m_bitmapMask
;
540 unsigned char * sourcePtr
= (unsigned char*) GetRawAccess() ;
541 unsigned char * masksourcePtr
= mask
? (unsigned char*) mask
->GetRawAccess() : NULL
;
543 for ( int y
= 0 ; y
< h
; ++y
, sourcePtr
+= m_bytesPerRow
, masksourcePtr
+= mask
? mask
->GetBytesPerRow() : 0 )
545 unsigned char * source
= sourcePtr
;
546 unsigned char * masksource
= masksourcePtr
;
547 unsigned char * dest
= ptr
+ y
* sz
* 4 ;
548 unsigned char * maskdest
= maskptr
+ y
* sz
;
549 unsigned char a
, r
, g
, b
;
551 for ( int x
= 0 ; x
< w
; ++x
)
564 *maskdest
++ = 0xFF - *masksource
++ ;
572 OSStatus err
= SetIconFamilyData( iconFamily
, dataType
, data
) ;
573 wxASSERT_MSG( err
== noErr
, wxT("Error when adding bitmap") ) ;
575 err
= SetIconFamilyData( iconFamily
, maskType
, maskdata
) ;
576 wxASSERT_MSG( err
== noErr
, wxT("Error when adding mask") ) ;
579 HUnlock( maskdata
) ;
580 DisposeHandle( data
) ;
581 DisposeHandle( maskdata
) ;
586 PicHandle pic
= GetPictHandle() ;
587 SetIconFamilyData( iconFamily
, 'PICT' , (Handle
) pic
) ;
589 // transform into IconRef
591 // cleaner version existing from 10.3 upwards
592 HLock((Handle
) iconFamily
);
593 OSStatus err
= GetIconRefFromIconFamilyPtr( *iconFamily
, GetHandleSize((Handle
) iconFamily
), &m_iconRef
);
594 HUnlock((Handle
) iconFamily
);
595 DisposeHandle( (Handle
) iconFamily
) ;
597 wxCHECK_MSG( err
== noErr
, NULL
, wxT("Error when constructing icon ref") );
603 PicHandle
wxBitmapRefData::GetPictHandle()
605 return m_pictHandle
;
609 CGImageRef
wxBitmapRefData::CreateCGImage() const
612 wxASSERT( m_rawAccessCount
>= 0 ) ;
614 if ( m_rawAccessCount
> 0 || m_cgImageRef
== NULL
)
616 if ( m_depth
!= 1 && m_bitmapMask
== NULL
)
619 // in order for this code to work properly, wxMask would have to invert black and white
620 // in the native bitmap
623 CGImageRef tempImage
= CGBitmapContextCreateImage( m_hBitmap
);
624 CGImageRef tempMask
= CGBitmapContextCreateImage((CGContextRef
) m_bitmapMask
->GetHBITMAP() );
625 image
= CGImageCreateWithMask( tempImage
, tempMask
);
626 CGImageRelease(tempMask
);
627 CGImageRelease(tempImage
);
631 image
= CGBitmapContextCreateImage( m_hBitmap
);
635 size_t imageSize
= m_height
* m_bytesPerRow
;
636 void * dataBuffer
= m_memBuf
.GetData() ;
639 CGImageAlphaInfo alphaInfo
= kCGImageAlphaNoneSkipFirst
;
640 wxMemoryBuffer membuf
;
644 alphaInfo
= kCGImageAlphaFirst
;
645 unsigned char *destalphastart
= (unsigned char*) membuf
.GetWriteBuf( imageSize
) ;
646 memcpy( destalphastart
, dataBuffer
, imageSize
) ;
647 unsigned char *sourcemaskstart
= (unsigned char *) m_bitmapMask
->GetRawAccess() ;
648 int maskrowbytes
= m_bitmapMask
->GetBytesPerRow() ;
649 for ( int y
= 0 ; y
< h
; ++y
, destalphastart
+= m_bytesPerRow
, sourcemaskstart
+= maskrowbytes
)
651 unsigned char *sourcemask
= sourcemaskstart
;
652 unsigned char *destalpha
= destalphastart
;
653 for ( int x
= 0 ; x
< w
; ++x
, sourcemask
+= kMaskBytesPerPixel
, destalpha
+= 4 )
655 *destalpha
= 0xFF - *sourcemask
;
658 membuf
.UngetWriteBuf( imageSize
);
664 #if wxOSX_USE_PREMULTIPLIED_ALPHA
665 alphaInfo
= kCGImageAlphaPremultipliedFirst
;
667 alphaInfo
= kCGImageAlphaFirst
;
674 CGDataProviderRef dataProvider
= NULL
;
677 // TODO CHECK ALIGNMENT
678 wxMemoryBuffer maskBuf
;
679 unsigned char * maskBufData
= (unsigned char*) maskBuf
.GetWriteBuf( m_width
* m_height
);
680 unsigned char * bufData
= (unsigned char *) membuf
.GetData() ;
681 // copy one color component
683 for( int y
= 0 ; y
< m_height
; bufData
+= m_bytesPerRow
, ++y
)
685 unsigned char *bufDataIter
= bufData
+3;
686 for ( int x
= 0 ; x
< m_width
; bufDataIter
+= 4, ++x
, ++i
)
688 maskBufData
[i
] = *bufDataIter
;
691 maskBuf
.UngetWriteBuf( m_width
* m_height
);
694 wxMacCGDataProviderCreateWithMemoryBuffer( maskBuf
);
696 image
= ::CGImageMaskCreate( w
, h
, 8, 8, m_width
, dataProvider
, NULL
, false );
700 CGColorSpaceRef colorSpace
= wxMacGetGenericRGBColorSpace();
701 dataProvider
= wxMacCGDataProviderCreateWithMemoryBuffer( membuf
);
704 w
, h
, 8 , 32 , m_bytesPerRow
, colorSpace
, alphaInfo
,
705 dataProvider
, NULL
, false , kCGRenderingIntentDefault
);
707 CGDataProviderRelease( dataProvider
);
712 image
= m_cgImageRef
;
713 CGImageRetain( image
) ;
716 if ( m_rawAccessCount
== 0 && m_cgImageRef
== NULL
)
718 // we keep it for later use
719 m_cgImageRef
= image
;
720 CGImageRetain( image
) ;
726 CGContextRef
wxBitmapRefData::GetBitmapContext() const
731 void wxBitmapRefData::Free()
733 wxASSERT_MSG( m_rawAccessCount
== 0 , wxT("Bitmap still selected when destroyed") ) ;
737 CGImageRelease( m_cgImageRef
) ;
738 m_cgImageRef
= NULL
;
740 #ifndef __WXOSX_IPHONE__
743 ReleaseIconRef( m_iconRef
) ;
750 KillPicture( m_pictHandle
) ;
751 m_pictHandle
= NULL
;
757 CGContextRelease(m_hBitmap
);
761 wxDELETE(m_bitmapMask
);
764 wxBitmapRefData::~wxBitmapRefData()
771 // ----------------------------------------------------------------------------
773 // ----------------------------------------------------------------------------
775 bool wxBitmap::CopyFromIcon(const wxIcon
& icon
)
777 bool created
= false ;
778 int w
= icon
.GetWidth() ;
779 int h
= icon
.GetHeight() ;
782 #ifdef __WXOSX_CARBON__
783 if ( w
== h
&& ( w
== 16 || w
== 32 || w
== 48 || w
== 128 ) )
785 IconFamilyHandle iconFamily
= NULL
;
786 Handle imagehandle
= NewHandle( 0 ) ;
787 Handle maskhandle
= NewHandle( 0 ) ;
791 IconSelectorValue selector
= 0 ;
796 dataType
= kThumbnail32BitData
;
797 maskType
= kThumbnail8BitMask
;
798 selector
= kSelectorAllAvailableData
;
802 dataType
= kHuge32BitData
;
803 maskType
= kHuge8BitMask
;
804 selector
= kSelectorHuge32Bit
| kSelectorHuge8BitMask
;
808 dataType
= kLarge32BitData
;
809 maskType
= kLarge8BitMask
;
810 selector
= kSelectorLarge32Bit
| kSelectorLarge8BitMask
;
814 dataType
= kSmall32BitData
;
815 maskType
= kSmall8BitMask
;
816 selector
= kSelectorSmall32Bit
| kSelectorSmall8BitMask
;
823 OSStatus err
= IconRefToIconFamily( MAC_WXHICON(icon
.GetHICON()) , selector
, &iconFamily
) ;
825 err
= GetIconFamilyData( iconFamily
, dataType
, imagehandle
) ;
826 err
= GetIconFamilyData( iconFamily
, maskType
, maskhandle
) ;
827 size_t imagehandlesize
= GetHandleSize( imagehandle
) ;
828 size_t maskhandlesize
= GetHandleSize( maskhandle
) ;
830 if ( imagehandlesize
!= 0 && maskhandlesize
!= 0 )
832 wxASSERT( GetHandleSize( imagehandle
) == w
* 4 * h
) ;
833 wxASSERT( GetHandleSize( maskhandle
) == w
* h
) ;
837 unsigned char *source
= (unsigned char *) *imagehandle
;
838 unsigned char *sourcemask
= (unsigned char *) *maskhandle
;
839 unsigned char* destination
= (unsigned char*) BeginRawAccess() ;
841 for ( int y
= 0 ; y
< h
; ++y
)
843 for ( int x
= 0 ; x
< w
; ++x
)
845 unsigned char a
= *sourcemask
++;
848 #if wxOSX_USE_PREMULTIPLIED_ALPHA
849 *destination
++ = ( (*source
++) * a
+ 127 ) / 255;
850 *destination
++ = ( (*source
++) * a
+ 127 ) / 255;
851 *destination
++ = ( (*source
++) * a
+ 127 ) / 255;
853 *destination
++ = *source
++ ;
854 *destination
++ = *source
++ ;
855 *destination
++ = *source
++ ;
861 DisposeHandle( imagehandle
) ;
862 DisposeHandle( maskhandle
) ;
866 DisposeHandle( (Handle
) iconFamily
) ;
872 dc
.SelectObject( *this ) ;
873 dc
.DrawIcon( icon
, 0 , 0 ) ;
874 dc
.SelectObject( wxNullBitmap
) ;
880 wxBitmap::wxBitmap(const char bits
[], int the_width
, int the_height
, int no_bits
)
882 wxBitmapRefData
* bitmapRefData
;
884 m_refData
= bitmapRefData
= new wxBitmapRefData( the_width
, the_height
, no_bits
) ;
886 if (bitmapRefData
->IsOk())
890 int linesize
= ( the_width
/ (sizeof(unsigned char) * 8)) ;
891 if ( the_width
% (sizeof(unsigned char) * 8) )
892 linesize
+= sizeof(unsigned char);
894 unsigned char* linestart
= (unsigned char*) bits
;
895 unsigned char* destptr
= (unsigned char*) BeginRawAccess() ;
897 for ( int y
= 0 ; y
< the_height
; ++y
, linestart
+= linesize
, destptr
+= M_BITMAPDATA
->GetBytesPerRow() )
899 unsigned char* destination
= destptr
;
900 int index
, bit
, mask
;
902 for ( int x
= 0 ; x
< the_width
; ++x
)
908 if ( linestart
[index
] & mask
)
910 *destination
++ = 0xFF ;
917 *destination
++ = 0xFF ;
918 *destination
++ = 0xFF ;
919 *destination
++ = 0xFF ;
920 *destination
++ = 0xFF ;
929 wxFAIL_MSG(wxT("multicolor BITMAPs not yet implemented"));
931 } /* bitmapRefData->IsOk() */
934 wxBitmap::wxBitmap(const void* data
, wxBitmapType type
, int width
, int height
, int depth
)
936 (void) Create(data
, type
, width
, height
, depth
);
939 wxBitmap::wxBitmap(const wxString
& filename
, wxBitmapType type
)
941 LoadFile(filename
, type
);
944 wxBitmap::wxBitmap(CGImageRef image
)
946 (void) Create(image
);
949 wxGDIRefData
* wxBitmap::CreateGDIRefData() const
951 return new wxBitmapRefData
;
954 wxGDIRefData
* wxBitmap::CloneGDIRefData(const wxGDIRefData
* data
) const
956 return new wxBitmapRefData(*static_cast<const wxBitmapRefData
*>(data
));
959 void * wxBitmap::GetRawAccess() const
961 wxCHECK_MSG( IsOk() , NULL
, wxT("invalid bitmap") ) ;
963 return M_BITMAPDATA
->GetRawAccess() ;
966 void * wxBitmap::BeginRawAccess()
968 wxCHECK_MSG( IsOk() , NULL
, wxT("invalid bitmap") ) ;
970 return M_BITMAPDATA
->BeginRawAccess() ;
973 void wxBitmap::EndRawAccess()
975 wxCHECK_RET( IsOk() , wxT("invalid bitmap") ) ;
977 M_BITMAPDATA
->EndRawAccess() ;
980 CGImageRef
wxBitmap::CreateCGImage() const
982 wxCHECK_MSG( IsOk(), NULL
, wxT("invalid bitmap") ) ;
984 return M_BITMAPDATA
->CreateCGImage() ;
987 #ifndef __WXOSX_IPHONE__
988 IconRef
wxBitmap::GetIconRef() const
990 wxCHECK_MSG( IsOk(), NULL
, wxT("invalid bitmap") ) ;
992 return M_BITMAPDATA
->GetIconRef() ;
995 IconRef
wxBitmap::CreateIconRef() const
997 IconRef icon
= GetIconRef();
998 verify_noerr( AcquireIconRef(icon
) );
1005 WX_NSImage
wxBitmap::GetNSImage() const
1007 wxCFRef
< CGImageRef
> cgimage(CreateCGImage());
1008 return wxOSXGetNSImageFromCGImage( cgimage
);
1013 #if wxOSX_USE_IPHONE
1015 WX_UIImage
wxBitmap::GetUIImage() const
1017 wxCFRef
< CGImageRef
> cgimage(CreateCGImage());
1018 return wxOSXGetUIImageFromCGImage( cgimage
);
1022 wxBitmap
wxBitmap::GetSubBitmap(const wxRect
&rect
) const
1024 wxCHECK_MSG( IsOk() &&
1025 (rect
.x
>= 0) && (rect
.y
>= 0) &&
1026 (rect
.x
+rect
.width
<= GetWidth()) &&
1027 (rect
.y
+rect
.height
<= GetHeight()),
1028 wxNullBitmap
, wxT("invalid bitmap or bitmap region") );
1030 wxBitmap
ret( rect
.width
, rect
.height
, GetDepth() );
1031 wxASSERT_MSG( ret
.IsOk(), wxT("GetSubBitmap error") );
1033 int destwidth
= rect
.width
;
1034 int destheight
= rect
.height
;
1037 unsigned char *sourcedata
= (unsigned char*) GetRawAccess() ;
1038 unsigned char *destdata
= (unsigned char*) ret
.BeginRawAccess() ;
1039 wxASSERT( (sourcedata
!= NULL
) && (destdata
!= NULL
) ) ;
1041 int sourcelinesize
= GetBitmapData()->GetBytesPerRow() ;
1042 int destlinesize
= ret
.GetBitmapData()->GetBytesPerRow() ;
1043 unsigned char *source
= sourcedata
+ rect
.x
* 4 + rect
.y
* sourcelinesize
;
1044 unsigned char *dest
= destdata
;
1046 for (int yy
= 0; yy
< destheight
; ++yy
, source
+= sourcelinesize
, dest
+= destlinesize
)
1048 memcpy( dest
, source
, destlinesize
) ;
1052 ret
.EndRawAccess() ;
1054 if ( M_BITMAPDATA
->m_bitmapMask
)
1056 wxMemoryBuffer maskbuf
;
1057 int rowBytes
= GetBestBytesPerRow( destwidth
* kMaskBytesPerPixel
);
1058 size_t maskbufsize
= rowBytes
* destheight
;
1060 int sourcelinesize
= M_BITMAPDATA
->m_bitmapMask
->GetBytesPerRow() ;
1061 int destlinesize
= rowBytes
;
1063 unsigned char *source
= (unsigned char *) M_BITMAPDATA
->m_bitmapMask
->GetRawAccess() ;
1064 unsigned char *destdata
= (unsigned char * ) maskbuf
.GetWriteBuf( maskbufsize
) ;
1065 wxASSERT( (source
!= NULL
) && (destdata
!= NULL
) ) ;
1067 source
+= rect
.x
* kMaskBytesPerPixel
+ rect
.y
* sourcelinesize
;
1068 unsigned char *dest
= destdata
;
1070 for (int yy
= 0; yy
< destheight
; ++yy
, source
+= sourcelinesize
, dest
+= destlinesize
)
1072 memcpy( dest
, source
, destlinesize
) ;
1075 maskbuf
.UngetWriteBuf( maskbufsize
) ;
1076 ret
.SetMask( new wxMask( maskbuf
, destwidth
, destheight
, rowBytes
) ) ;
1078 else if ( HasAlpha() )
1084 bool wxBitmap::Create(int w
, int h
, int d
)
1089 d
= wxDisplayDepth() ;
1091 m_refData
= new wxBitmapRefData( w
, h
, d
);
1093 return M_BITMAPDATA
->IsOk() ;
1097 bool wxBitmap::Create(CGImageRef image
)
1101 m_refData
= new wxBitmapRefData( image
);
1103 return M_BITMAPDATA
->IsOk() ;
1106 bool wxBitmap::LoadFile(const wxString
& filename
, wxBitmapType type
)
1110 wxBitmapHandler
*handler
= FindHandler(type
);
1114 m_refData
= new wxBitmapRefData
;
1116 return handler
->LoadFile(this, filename
, type
, -1, -1);
1121 wxImage
loadimage(filename
, type
);
1122 if (loadimage
.IsOk())
1131 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
1136 bool wxBitmap::Create(const void* data
, wxBitmapType type
, int width
, int height
, int depth
)
1140 m_refData
= new wxBitmapRefData
;
1142 wxBitmapHandler
*handler
= FindHandler(type
);
1144 if ( handler
== NULL
)
1146 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
1151 return handler
->Create(this, data
, type
, width
, height
, depth
);
1156 wxBitmap::wxBitmap(const wxImage
& image
, int depth
)
1158 wxCHECK_RET( image
.IsOk(), wxT("invalid image") );
1160 // width and height of the device-dependent bitmap
1161 int width
= image
.GetWidth();
1162 int height
= image
.GetHeight();
1164 wxBitmapRefData
* bitmapRefData
;
1166 m_refData
= bitmapRefData
= new wxBitmapRefData( width
, height
, depth
) ;
1168 if ( bitmapRefData
->IsOk())
1172 bool hasAlpha
= false ;
1174 if ( image
.HasMask() )
1176 // takes precedence, don't mix with alpha info
1180 hasAlpha
= image
.HasAlpha() ;
1186 unsigned char* destinationstart
= (unsigned char*) BeginRawAccess() ;
1187 register unsigned char* data
= image
.GetData();
1188 if ( destinationstart
!= NULL
&& data
!= NULL
)
1190 const unsigned char *alpha
= hasAlpha
? image
.GetAlpha() : NULL
;
1191 for (int y
= 0; y
< height
; destinationstart
+= M_BITMAPDATA
->GetBytesPerRow(), y
++)
1193 unsigned char * destination
= destinationstart
;
1194 for (int x
= 0; x
< width
; x
++)
1198 const unsigned char a
= *alpha
++;
1199 *destination
++ = a
;
1201 #if wxOSX_USE_PREMULTIPLIED_ALPHA
1202 *destination
++ = ((*data
++) * a
+ 127) / 255 ;
1203 *destination
++ = ((*data
++) * a
+ 127) / 255 ;
1204 *destination
++ = ((*data
++) * a
+ 127) / 255 ;
1206 *destination
++ = *data
++ ;
1207 *destination
++ = *data
++ ;
1208 *destination
++ = *data
++ ;
1213 *destination
++ = 0xFF ;
1214 *destination
++ = *data
++ ;
1215 *destination
++ = *data
++ ;
1216 *destination
++ = *data
++ ;
1223 if ( image
.HasMask() )
1224 SetMask( new wxMask( *this , wxColour( image
.GetMaskRed() , image
.GetMaskGreen() , image
.GetMaskBlue() ) ) ) ;
1225 } /* bitmapRefData->IsOk() */
1228 wxImage
wxBitmap::ConvertToImage() const
1232 wxCHECK_MSG( IsOk(), wxNullImage
, wxT("invalid bitmap") );
1234 // create an wxImage object
1235 int width
= GetWidth();
1236 int height
= GetHeight();
1237 image
.Create( width
, height
);
1239 unsigned char *data
= image
.GetData();
1240 wxCHECK_MSG( data
, wxNullImage
, wxT("Could not allocate data for image") );
1242 unsigned char* sourcestart
= (unsigned char*) GetRawAccess() ;
1244 bool hasAlpha
= false ;
1245 bool hasMask
= false ;
1246 int maskBytesPerRow
= 0 ;
1247 unsigned char *alpha
= NULL
;
1248 unsigned char *mask
= NULL
;
1256 mask
= (unsigned char*) GetMask()->GetRawAccess() ;
1257 maskBytesPerRow
= GetMask()->GetBytesPerRow() ;
1263 alpha
= image
.GetAlpha() ;
1268 // The following masking algorithm is the same as well in msw/gtk:
1269 // the colour used as transparent one in wxImage and the one it is
1270 // replaced with when it actually occurs in the bitmap
1271 static const int MASK_RED
= 1;
1272 static const int MASK_GREEN
= 2;
1273 static const int MASK_BLUE
= 3;
1274 static const int MASK_BLUE_REPLACEMENT
= 2;
1276 for (int yy
= 0; yy
< height
; yy
++ , sourcestart
+= M_BITMAPDATA
->GetBytesPerRow() , mask
+= maskBytesPerRow
)
1278 unsigned char * maskp
= mask
;
1279 unsigned char * source
= sourcestart
;
1280 unsigned char a
, r
, g
, b
;
1283 for (int xx
= 0; xx
< width
; xx
++)
1285 color
= *((long*) source
) ;
1286 #ifdef WORDS_BIGENDIAN
1287 a
= ((color
&0xFF000000) >> 24) ;
1288 r
= ((color
&0x00FF0000) >> 16) ;
1289 g
= ((color
&0x0000FF00) >> 8) ;
1290 b
= (color
&0x000000FF);
1292 b
= ((color
&0xFF000000) >> 24) ;
1293 g
= ((color
&0x00FF0000) >> 16) ;
1294 r
= ((color
&0x0000FF00) >> 8) ;
1295 a
= (color
&0x000000FF);
1299 if ( *maskp
++ == 0xFF )
1305 else if ( r
== MASK_RED
&& g
== MASK_GREEN
&& b
== MASK_BLUE
)
1306 b
= MASK_BLUE_REPLACEMENT
;
1308 else if ( hasAlpha
)
1311 #if wxOSX_USE_PREMULTIPLIED_ALPHA
1312 // this must be non-premultiplied data
1313 if ( a
!= 0xFF && a
!= 0 )
1323 data
[index
+ 1] = g
;
1324 data
[index
+ 2] = b
;
1332 image
.SetMaskColour( MASK_RED
, MASK_GREEN
, MASK_BLUE
);
1337 #endif //wxUSE_IMAGE
1339 bool wxBitmap::SaveFile( const wxString
& filename
,
1340 wxBitmapType type
, const wxPalette
*palette
) const
1342 bool success
= false;
1343 wxBitmapHandler
*handler
= FindHandler(type
);
1347 success
= handler
->SaveFile(this, filename
, type
, palette
);
1352 wxImage image
= ConvertToImage();
1353 success
= image
.SaveFile(filename
, type
);
1355 wxLogWarning(wxT("no bitmap handler for type %d defined."), type
);
1362 int wxBitmap::GetHeight() const
1364 wxCHECK_MSG( IsOk(), -1, wxT("invalid bitmap") );
1366 return M_BITMAPDATA
->GetHeight();
1369 int wxBitmap::GetWidth() const
1371 wxCHECK_MSG( IsOk(), -1, wxT("invalid bitmap") );
1373 return M_BITMAPDATA
->GetWidth() ;
1376 int wxBitmap::GetDepth() const
1378 wxCHECK_MSG( IsOk(), -1, wxT("invalid bitmap") );
1380 return M_BITMAPDATA
->GetDepth();
1383 wxMask
*wxBitmap::GetMask() const
1385 wxCHECK_MSG( IsOk(), NULL
, wxT("invalid bitmap") );
1387 return M_BITMAPDATA
->m_bitmapMask
;
1390 bool wxBitmap::HasAlpha() const
1392 wxCHECK_MSG( IsOk(), false , wxT("invalid bitmap") );
1394 return M_BITMAPDATA
->HasAlpha() ;
1397 void wxBitmap::SetWidth(int w
)
1400 M_BITMAPDATA
->SetWidth(w
);
1403 void wxBitmap::SetHeight(int h
)
1406 M_BITMAPDATA
->SetHeight(h
);
1409 void wxBitmap::SetDepth(int d
)
1412 M_BITMAPDATA
->SetDepth(d
);
1415 void wxBitmap::SetOk(bool isOk
)
1418 M_BITMAPDATA
->SetOk(isOk
);
1422 wxPalette
*wxBitmap::GetPalette() const
1424 wxCHECK_MSG( IsOk(), NULL
, wxT("Invalid bitmap GetPalette()") );
1426 return &M_BITMAPDATA
->m_bitmapPalette
;
1429 void wxBitmap::SetPalette(const wxPalette
& palette
)
1432 M_BITMAPDATA
->m_bitmapPalette
= palette
;
1434 #endif // wxUSE_PALETTE
1436 void wxBitmap::SetMask(wxMask
*mask
)
1439 // Remove existing mask if there is one.
1440 delete M_BITMAPDATA
->m_bitmapMask
;
1442 M_BITMAPDATA
->m_bitmapMask
= mask
;
1445 WXHBITMAP
wxBitmap::GetHBITMAP(WXHBITMAP
* mask
) const
1449 return WXHBITMAP(M_BITMAPDATA
->GetBitmapContext());
1452 // ----------------------------------------------------------------------------
1454 // ----------------------------------------------------------------------------
1461 wxMask::wxMask(const wxMask
&tocopy
) : wxObject()
1465 m_bytesPerRow
= tocopy
.m_bytesPerRow
;
1466 m_width
= tocopy
.m_width
;
1467 m_height
= tocopy
.m_height
;
1469 size_t size
= m_bytesPerRow
* m_height
;
1470 unsigned char* dest
= (unsigned char*)m_memBuf
.GetWriteBuf( size
);
1471 unsigned char* source
= (unsigned char*)tocopy
.m_memBuf
.GetData();
1472 memcpy( dest
, source
, size
);
1473 m_memBuf
.UngetWriteBuf( size
) ;
1477 // Construct a mask from a bitmap and a colour indicating
1478 // the transparent area
1479 wxMask::wxMask( const wxBitmap
& bitmap
, const wxColour
& colour
)
1482 Create( bitmap
, colour
);
1485 // Construct a mask from a mono bitmap (copies the bitmap).
1486 wxMask::wxMask( const wxBitmap
& bitmap
)
1492 // Construct a mask from a mono bitmap (copies the bitmap).
1494 wxMask::wxMask( const wxMemoryBuffer
& data
, int width
, int height
, int bytesPerRow
)
1497 Create( data
, width
, height
, bytesPerRow
);
1504 CGContextRelease( (CGContextRef
) m_maskBitmap
);
1505 m_maskBitmap
= NULL
;
1511 m_width
= m_height
= m_bytesPerRow
= 0 ;
1512 m_maskBitmap
= NULL
;
1515 void *wxMask::GetRawAccess() const
1517 return m_memBuf
.GetData() ;
1520 // The default ColorTable for k8IndexedGrayPixelFormat in Intel appears to be broken, so we'll use an non-indexed
1521 // bitmap mask instead; in order to keep the code simple, the change applies to PowerPC implementations as well
1523 void wxMask::RealizeNative()
1527 CGContextRelease( (CGContextRef
) m_maskBitmap
);
1528 m_maskBitmap
= NULL
;
1531 CGColorSpaceRef colorspace
= CGColorSpaceCreateDeviceGray();
1532 // from MouseTracking sample :
1533 // Ironically, due to a bug in CGImageCreateWithMask, you cannot use
1534 // CGColorSpaceCreateWithName(kCGColorSpaceGenericGray) at this point!
1536 m_maskBitmap
= CGBitmapContextCreate((char*) m_memBuf
.GetData(), m_width
, m_height
, 8, m_bytesPerRow
, colorspace
,
1537 kCGImageAlphaNone
);
1538 CGColorSpaceRelease( colorspace
);
1539 wxASSERT_MSG( m_maskBitmap
, wxT("Unable to create CGBitmapContext context") ) ;
1542 // Create a mask from a mono bitmap (copies the bitmap).
1544 bool wxMask::Create(const wxMemoryBuffer
& data
,int width
, int height
, int bytesPerRow
)
1549 m_bytesPerRow
= bytesPerRow
;
1551 wxASSERT( data
.GetDataLen() == (size_t)(height
* bytesPerRow
) ) ;
1558 // Create a mask from a mono bitmap (copies the bitmap).
1559 bool wxMask::Create(const wxBitmap
& bitmap
)
1561 m_width
= bitmap
.GetWidth() ;
1562 m_height
= bitmap
.GetHeight() ;
1563 m_bytesPerRow
= GetBestBytesPerRow( m_width
* kMaskBytesPerPixel
) ;
1565 size_t size
= m_bytesPerRow
* m_height
;
1566 unsigned char * destdatabase
= (unsigned char*) m_memBuf
.GetWriteBuf( size
) ;
1567 wxASSERT( destdatabase
!= NULL
) ;
1571 memset( destdatabase
, 0 , size
) ;
1572 unsigned char * srcdata
= (unsigned char*) bitmap
.GetRawAccess() ;
1574 for ( int y
= 0 ; y
< m_height
; ++y
, destdatabase
+= m_bytesPerRow
)
1576 unsigned char *destdata
= destdatabase
;
1577 unsigned char r
, g
, b
;
1579 for ( int x
= 0 ; x
< m_width
; ++x
)
1586 if ( ( r
+ g
+ b
) > 0x10 )
1587 *destdata
++ = 0xFF ;
1589 *destdata
++ = 0x00 ;
1594 m_memBuf
.UngetWriteBuf( size
) ;
1600 // Create a mask from a bitmap and a colour indicating
1601 // the transparent area
1602 bool wxMask::Create(const wxBitmap
& bitmap
, const wxColour
& colour
)
1604 m_width
= bitmap
.GetWidth() ;
1605 m_height
= bitmap
.GetHeight() ;
1606 m_bytesPerRow
= GetBestBytesPerRow( m_width
* kMaskBytesPerPixel
) ;
1608 size_t size
= m_bytesPerRow
* m_height
;
1609 unsigned char * destdatabase
= (unsigned char*) m_memBuf
.GetWriteBuf( size
) ;
1610 wxASSERT( destdatabase
!= NULL
) ;
1612 memset( destdatabase
, 0 , size
) ;
1613 unsigned char * srcdatabase
= (unsigned char*) bitmap
.GetRawAccess() ;
1614 size_t sourceBytesRow
= bitmap
.GetBitmapData()->GetBytesPerRow();
1616 for ( int y
= 0 ; y
< m_height
; ++y
, srcdatabase
+= sourceBytesRow
, destdatabase
+= m_bytesPerRow
)
1618 unsigned char *srcdata
= srcdatabase
;
1619 unsigned char *destdata
= destdatabase
;
1620 unsigned char r
, g
, b
;
1622 for ( int x
= 0 ; x
< m_width
; ++x
)
1629 if ( colour
== wxColour( r
, g
, b
) )
1630 *destdata
++ = 0xFF ;
1632 *destdata
++ = 0x00 ;
1636 m_memBuf
.UngetWriteBuf( size
) ;
1642 WXHBITMAP
wxMask::GetHBITMAP() const
1644 return m_maskBitmap
;
1647 // ----------------------------------------------------------------------------
1648 // Standard Handlers
1649 // ----------------------------------------------------------------------------
1651 class WXDLLEXPORT wxBundleResourceHandler
: public wxBitmapHandler
1653 DECLARE_ABSTRACT_CLASS(wxBundleResourceHandler
)
1656 inline wxBundleResourceHandler()
1660 virtual bool LoadFile(wxBitmap
*bitmap
,
1661 const wxString
& name
,
1667 IMPLEMENT_ABSTRACT_CLASS(wxBundleResourceHandler
, wxBitmapHandler
);
1669 class WXDLLEXPORT wxPNGResourceHandler
: public wxBundleResourceHandler
1671 DECLARE_DYNAMIC_CLASS(wxPNGResourceHandler
)
1674 inline wxPNGResourceHandler()
1676 SetName(wxT("PNG resource"));
1677 SetExtension("PNG");
1678 SetType(wxBITMAP_TYPE_PNG_RESOURCE
);
1682 IMPLEMENT_DYNAMIC_CLASS(wxPNGResourceHandler
, wxBundleResourceHandler
)
1684 class WXDLLEXPORT wxJPEGResourceHandler
: public wxBundleResourceHandler
1686 DECLARE_DYNAMIC_CLASS(wxPNGResourceHandler
)
1689 inline wxJPEGResourceHandler()
1691 SetName(wxT("JPEG resource"));
1692 SetExtension("JPEG");
1693 SetType(wxBITMAP_TYPE_JPEG_RESOURCE
);
1697 IMPLEMENT_DYNAMIC_CLASS(wxJPEGResourceHandler
, wxBundleResourceHandler
)
1699 bool wxBundleResourceHandler::LoadFile(wxBitmap
*bitmap
,
1700 const wxString
& name
,
1701 wxBitmapType
WXUNUSED(type
),
1702 int WXUNUSED(desiredWidth
),
1703 int WXUNUSED(desiredHeight
))
1705 wxString ext
= GetExtension().Lower();
1706 wxCFStringRef
resname(name
);
1707 wxCFStringRef
restype(ext
);
1709 wxCFRef
<CFURLRef
> imageURL(CFBundleCopyResourceURL(CFBundleGetMainBundle(), resname
, restype
, NULL
));
1711 if ( imageURL
.get() != NULL
)
1713 // Create the data provider object
1714 wxCFRef
<CGDataProviderRef
> provider(CGDataProviderCreateWithURL (imageURL
) );
1715 CGImageRef image
= NULL
;
1717 if ( ext
== "jpeg" )
1718 image
= CGImageCreateWithJPEGDataProvider (provider
, NULL
, true,
1719 kCGRenderingIntentDefault
);
1720 else if ( ext
== "png" )
1721 image
= CGImageCreateWithPNGDataProvider (provider
, NULL
, true,
1722 kCGRenderingIntentDefault
);
1723 if ( image
!= NULL
)
1725 bitmap
->Create(image
);
1726 CGImageRelease(image
);
1733 #if !defined( __LP64__ ) && !defined(__WXOSX_IPHONE__)
1735 class WXDLLEXPORT wxPICTResourceHandler
: public wxBitmapHandler
1737 DECLARE_DYNAMIC_CLASS(wxPICTResourceHandler
)
1740 inline wxPICTResourceHandler()
1742 SetName(wxT("Macintosh Pict resource"));
1743 SetExtension(wxEmptyString
);
1744 SetType(wxBITMAP_TYPE_PICT_RESOURCE
);
1747 virtual bool LoadFile(wxBitmap
*bitmap
,
1748 const wxString
& name
,
1754 IMPLEMENT_DYNAMIC_CLASS(wxPICTResourceHandler
, wxBitmapHandler
)
1757 bool wxPICTResourceHandler::LoadFile(wxBitmap
*bitmap
,
1758 const wxString
& name
,
1759 wxBitmapType
WXUNUSED(type
),
1760 int WXUNUSED(desiredWidth
),
1761 int WXUNUSED(desiredHeight
))
1765 wxMacStringToPascal( name
, theName
) ;
1767 PicHandle thePict
= (PicHandle
) GetNamedResource( 'PICT' , theName
) ;
1772 mf
.SetPICT( thePict
) ;
1773 bitmap
->Create( mf
.GetWidth() , mf
.GetHeight() ) ;
1775 dc
.SelectObject( *bitmap
) ;
1777 dc
.SelectObject( wxNullBitmap
) ;
1787 void wxBitmap::InitStandardHandlers()
1789 #if !defined( __LP64__ ) && !defined(__WXOSX_IPHONE__)
1790 AddHandler( new wxPICTResourceHandler
) ;
1792 #if wxOSX_USE_COCOA_OR_CARBON
1793 AddHandler( new wxICONResourceHandler
) ;
1795 AddHandler( new wxPNGResourceHandler
);
1796 AddHandler( new wxJPEGResourceHandler
);
1799 // ----------------------------------------------------------------------------
1800 // raw bitmap access support
1801 // ----------------------------------------------------------------------------
1803 void *wxBitmap::GetRawData(wxPixelDataBase
& data
, int WXUNUSED(bpp
))
1806 // no bitmap, no data (raw or otherwise)
1809 data
.m_width
= GetWidth() ;
1810 data
.m_height
= GetHeight() ;
1811 data
.m_stride
= GetBitmapData()->GetBytesPerRow() ;
1813 return BeginRawAccess() ;
1816 void wxBitmap::UngetRawData(wxPixelDataBase
& WXUNUSED(dataBase
))
1821 void wxBitmap::UseAlpha()
1823 // remember that we are using alpha channel:
1824 // we'll need to create a proper mask in UngetRawData()
1825 M_BITMAPDATA
->UseAlpha( true );