1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "image.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
22 #include "wx/bitmap.h"
26 #include "wx/filefn.h"
27 #include "wx/wfstream.h"
29 #include "wx/module.h"
39 #include "wx/msw/private.h"
42 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
46 class wxImageRefData
: public wxObjectRefData
55 unsigned char *m_data
;
57 unsigned char m_maskRed
,m_maskGreen
,m_maskBlue
;
61 wxImageRefData::wxImageRefData()
65 m_data
= (unsigned char*) NULL
;
73 wxImageRefData::~wxImageRefData()
75 if (m_data
) free( m_data
);
78 wxList
wxImage::sm_handlers
;
80 //-----------------------------------------------------------------------------
82 #define M_IMGDATA ((wxImageRefData *)m_refData)
84 #if !USE_SHARED_LIBRARIES
85 IMPLEMENT_DYNAMIC_CLASS(wxImage
, wxObject
)
92 wxImage::wxImage( int width
, int height
)
94 Create( width
, height
);
97 wxImage::wxImage( const wxString
& name
, long type
)
99 LoadFile( name
, type
);
102 wxImage::wxImage( const wxString
& name
, const wxString
& mimetype
)
104 LoadFile( name
, mimetype
);
108 wxImage::wxImage( wxInputStream
& stream
, long type
)
110 LoadFile( stream
, type
);
113 wxImage::wxImage( wxInputStream
& stream
, const wxString
& mimetype
)
115 LoadFile( stream
, mimetype
);
117 #endif // wxUSE_STREAMS
119 wxImage::wxImage( const wxImage
& image
)
124 wxImage::wxImage( const wxImage
* image
)
126 if (image
) Ref(*image
);
129 void wxImage::Create( int width
, int height
)
131 m_refData
= new wxImageRefData();
133 M_IMGDATA
->m_data
= (unsigned char *) malloc( width
*height
*3 );
134 if (M_IMGDATA
->m_data
)
136 for (int l
= 0; l
< width
*height
*3; l
++) M_IMGDATA
->m_data
[l
] = 0;
138 M_IMGDATA
->m_width
= width
;
139 M_IMGDATA
->m_height
= height
;
140 M_IMGDATA
->m_ok
= TRUE
;
148 void wxImage::Destroy()
153 wxImage
wxImage::Scale( int width
, int height
) const
157 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
159 wxCHECK_MSG( (width
> 0) && (height
> 0), image
, wxT("invalid image size") );
161 image
.Create( width
, height
);
163 char unsigned *data
= image
.GetData();
165 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
167 if (M_IMGDATA
->m_hasMask
)
168 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
170 long old_height
= M_IMGDATA
->m_height
;
171 long old_width
= M_IMGDATA
->m_width
;
173 char unsigned *source_data
= M_IMGDATA
->m_data
;
174 char unsigned *target_data
= data
;
176 for (long j
= 0; j
< height
; j
++)
178 long y_offset
= (j
* old_height
/ height
) * old_width
;
180 for (long i
= 0; i
< width
; i
++)
183 source_data
+ 3*(y_offset
+ ((i
* old_width
)/ width
)),
192 wxImage
wxImage::GetSubImage( const wxRect
&rect
) const
196 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
198 wxCHECK_MSG( (rect
.GetLeft()>=0) && (rect
.GetTop()>=0) && (rect
.GetRight()<=GetWidth()) && (rect
.GetBottom()<=GetHeight())
199 , image
, wxT("invalid subimage size") );
201 int subwidth
=rect
.GetWidth();
202 const int subheight
=rect
.GetHeight();
204 image
.Create( subwidth
, subheight
);
206 char unsigned *subdata
= image
.GetData(), *data
=GetData();
208 wxCHECK_MSG( subdata
, image
, wxT("unable to create image") );
210 if (M_IMGDATA
->m_hasMask
)
211 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
213 const int subleft
=3*rect
.GetLeft();
214 const int width
=3*GetWidth();
217 data
+=rect
.GetTop()*width
+subleft
;
219 for (long j
= 0; j
< subheight
; ++j
)
221 memcpy( subdata
, data
, subwidth
);
229 void wxImage::SetRGB( int x
, int y
, unsigned char r
, unsigned char g
, unsigned char b
)
231 wxCHECK_RET( Ok(), wxT("invalid image") );
233 int w
= M_IMGDATA
->m_width
;
234 int h
= M_IMGDATA
->m_height
;
236 wxCHECK_RET( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), wxT("invalid image index") );
238 long pos
= (y
* w
+ x
) * 3;
240 M_IMGDATA
->m_data
[ pos
] = r
;
241 M_IMGDATA
->m_data
[ pos
+1 ] = g
;
242 M_IMGDATA
->m_data
[ pos
+2 ] = b
;
245 unsigned char wxImage::GetRed( int x
, int y
)
247 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
249 int w
= M_IMGDATA
->m_width
;
250 int h
= M_IMGDATA
->m_height
;
252 wxCHECK_MSG( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), 0, wxT("invalid image index") );
254 long pos
= (y
* w
+ x
) * 3;
256 return M_IMGDATA
->m_data
[pos
];
259 unsigned char wxImage::GetGreen( int x
, int y
)
261 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
263 int w
= M_IMGDATA
->m_width
;
264 int h
= M_IMGDATA
->m_height
;
266 wxCHECK_MSG( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), 0, wxT("invalid image index") );
268 long pos
= (y
* w
+ x
) * 3;
270 return M_IMGDATA
->m_data
[pos
+1];
273 unsigned char wxImage::GetBlue( int x
, int y
)
275 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
277 int w
= M_IMGDATA
->m_width
;
278 int h
= M_IMGDATA
->m_height
;
280 wxCHECK_MSG( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), 0, wxT("invalid image index") );
282 long pos
= (y
* w
+ x
) * 3;
284 return M_IMGDATA
->m_data
[pos
+2];
287 bool wxImage::Ok() const
289 return (M_IMGDATA
&& M_IMGDATA
->m_ok
);
292 char unsigned *wxImage::GetData() const
294 wxCHECK_MSG( Ok(), (char unsigned *)NULL
, wxT("invalid image") );
296 return M_IMGDATA
->m_data
;
299 void wxImage::SetData( char unsigned *data
)
301 wxCHECK_RET( Ok(), wxT("invalid image") );
303 wxImageRefData
*newRefData
= new wxImageRefData();
305 newRefData
->m_width
= M_IMGDATA
->m_width
;
306 newRefData
->m_height
= M_IMGDATA
->m_height
;
307 newRefData
->m_data
= data
;
308 newRefData
->m_ok
= TRUE
;
309 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
310 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
311 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
312 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
316 m_refData
= newRefData
;
319 void wxImage::SetMaskColour( unsigned char r
, unsigned char g
, unsigned char b
)
321 wxCHECK_RET( Ok(), wxT("invalid image") );
323 M_IMGDATA
->m_maskRed
= r
;
324 M_IMGDATA
->m_maskGreen
= g
;
325 M_IMGDATA
->m_maskBlue
= b
;
326 M_IMGDATA
->m_hasMask
= TRUE
;
329 unsigned char wxImage::GetMaskRed() const
331 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
333 return M_IMGDATA
->m_maskRed
;
336 unsigned char wxImage::GetMaskGreen() const
338 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
340 return M_IMGDATA
->m_maskGreen
;
343 unsigned char wxImage::GetMaskBlue() const
345 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
347 return M_IMGDATA
->m_maskBlue
;
350 void wxImage::SetMask( bool mask
)
352 wxCHECK_RET( Ok(), wxT("invalid image") );
354 M_IMGDATA
->m_hasMask
= mask
;
357 bool wxImage::HasMask() const
359 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid image") );
361 return M_IMGDATA
->m_hasMask
;
364 int wxImage::GetWidth() const
366 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
368 return M_IMGDATA
->m_width
;
371 int wxImage::GetHeight() const
373 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
375 return M_IMGDATA
->m_height
;
378 bool wxImage::LoadFile( const wxString
& filename
, long type
)
381 if (wxFileExists(filename
))
383 wxFileInputStream
stream(filename
);
384 return LoadFile(stream
, type
);
388 wxLogError( wxT("Can't load image from file '%s': file does not exist."), filename
.c_str() );
392 #else // !wxUSE_STREAMS
394 #endif // wxUSE_STREAMS
397 bool wxImage::LoadFile( const wxString
& filename
, const wxString
& mimetype
)
400 if (wxFileExists(filename
))
402 wxFileInputStream
stream(filename
);
403 return LoadFile(stream
, mimetype
);
407 wxLogError( wxT("Can't load image from file '%s': file does not exist."), filename
.c_str() );
411 #else // !wxUSE_STREAMS
413 #endif // wxUSE_STREAMS
416 bool wxImage::SaveFile( const wxString
& filename
, int type
)
419 wxFileOutputStream
stream(filename
);
421 if ( stream
.LastError() == wxStream_NOERROR
)
422 return SaveFile(stream
, type
);
424 #endif // wxUSE_STREAMS
428 bool wxImage::SaveFile( const wxString
& filename
, const wxString
& mimetype
)
431 wxFileOutputStream
stream(filename
);
433 if ( stream
.LastError() == wxStream_NOERROR
)
434 return SaveFile(stream
, mimetype
);
436 #endif // wxUSE_STREAMS
440 bool wxImage::CanRead( const wxString
&name
)
443 wxFileInputStream
stream(name
);
444 return CanRead(stream
);
452 bool wxImage::CanRead( wxInputStream
&stream
)
454 wxList
&list
=GetHandlers();
456 for ( wxList::Node
*node
= list
.GetFirst(); node
; node
= node
->GetNext() )
458 wxImageHandler
*handler
=(wxImageHandler
*)node
->GetData();
459 if (handler
->CanRead( stream
))
466 bool wxImage::LoadFile( wxInputStream
& stream
, long type
)
470 m_refData
= new wxImageRefData
;
472 wxImageHandler
*handler
;
474 if (type
==wxBITMAP_TYPE_ANY
)
476 wxList
&list
=GetHandlers();
478 for ( wxList::Node
*node
= list
.GetFirst(); node
; node
= node
->GetNext() )
480 handler
=(wxImageHandler
*)node
->GetData();
481 if (handler
->CanRead( stream
))
482 return handler
->LoadFile( this, stream
);
486 wxLogWarning( wxT("No handler found for this image.") );
490 handler
= FindHandler(type
);
494 wxLogWarning( wxT("No image handler for type %d defined."), type
);
499 return handler
->LoadFile( this, stream
);
502 bool wxImage::LoadFile( wxInputStream
& stream
, const wxString
& mimetype
)
506 m_refData
= new wxImageRefData
;
508 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
512 wxLogWarning( wxT("No image handler for type %s defined."), mimetype
.GetData() );
517 return handler
->LoadFile( this, stream
);
520 bool wxImage::SaveFile( wxOutputStream
& stream
, int type
)
522 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid image") );
524 wxImageHandler
*handler
= FindHandler(type
);
528 wxLogWarning( wxT("No image handler for type %d defined."), type
);
533 return handler
->SaveFile( this, stream
);
536 bool wxImage::SaveFile( wxOutputStream
& stream
, const wxString
& mimetype
)
538 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid image") );
540 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
544 wxLogWarning( wxT("No image handler for type %s defined."), mimetype
.GetData() );
549 return handler
->SaveFile( this, stream
);
551 #endif // wxUSE_STREAMS
553 void wxImage::AddHandler( wxImageHandler
*handler
)
555 // make sure that the memory will be freed at the program end
556 sm_handlers
.DeleteContents(TRUE
);
558 sm_handlers
.Append( handler
);
561 void wxImage::InsertHandler( wxImageHandler
*handler
)
563 // make sure that the memory will be freed at the program end
564 sm_handlers
.DeleteContents(TRUE
);
566 sm_handlers
.Insert( handler
);
569 bool wxImage::RemoveHandler( const wxString
& name
)
571 wxImageHandler
*handler
= FindHandler(name
);
574 sm_handlers
.DeleteObject(handler
);
581 wxImageHandler
*wxImage::FindHandler( const wxString
& name
)
583 wxNode
*node
= sm_handlers
.First();
586 wxImageHandler
*handler
= (wxImageHandler
*)node
->Data();
587 if (handler
->GetName().Cmp(name
) == 0) return handler
;
591 return (wxImageHandler
*)NULL
;
594 wxImageHandler
*wxImage::FindHandler( const wxString
& extension
, long bitmapType
)
596 wxNode
*node
= sm_handlers
.First();
599 wxImageHandler
*handler
= (wxImageHandler
*)node
->Data();
600 if ( (handler
->GetExtension().Cmp(extension
) == 0) &&
601 (bitmapType
== -1 || handler
->GetType() == bitmapType
) )
605 return (wxImageHandler
*)NULL
;
608 wxImageHandler
*wxImage::FindHandler( long bitmapType
)
610 wxNode
*node
= sm_handlers
.First();
613 wxImageHandler
*handler
= (wxImageHandler
*)node
->Data();
614 if (handler
->GetType() == bitmapType
) return handler
;
620 wxImageHandler
*wxImage::FindHandlerMime( const wxString
& mimetype
)
622 wxNode
*node
= sm_handlers
.First();
625 wxImageHandler
*handler
= (wxImageHandler
*)node
->Data();
626 if (handler
->GetMimeType().IsSameAs(mimetype
, FALSE
)) return handler
;
632 void wxImage::InitStandardHandlers()
634 AddHandler( new wxBMPHandler
);
637 void wxImage::CleanUpHandlers()
639 wxNode
*node
= sm_handlers
.First();
642 wxImageHandler
*handler
= (wxImageHandler
*)node
->Data();
643 wxNode
*next
= node
->Next();
650 //-----------------------------------------------------------------------------
652 //-----------------------------------------------------------------------------
654 #if !USE_SHARED_LIBRARIES
655 IMPLEMENT_ABSTRACT_CLASS(wxImageHandler
,wxObject
)
659 bool wxImageHandler::LoadFile( wxImage
*WXUNUSED(image
), wxInputStream
& WXUNUSED(stream
), bool WXUNUSED(verbose
) )
664 bool wxImageHandler::SaveFile( wxImage
*WXUNUSED(image
), wxOutputStream
& WXUNUSED(stream
), bool WXUNUSED(verbose
) )
669 bool wxImageHandler::CanRead( const wxString
& name
)
672 if (wxFileExists(name
))
674 wxFileInputStream
stream(name
);
675 return CanRead(stream
);
679 wxLogError( wxT("Can't check image format of file '%s': file does not exist."), name
.c_str() );
683 #else // !wxUSE_STREAMS
685 #endif // wxUSE_STREAMS
690 #endif // wxUSE_STREAMS
692 //-----------------------------------------------------------------------------
693 // MSW conversion routines
694 //-----------------------------------------------------------------------------
698 wxBitmap
wxImage::ConvertToBitmap() const
703 // sizeLimit is the MS upper limit for the DIB size
705 int sizeLimit
= 1024*768*3;
707 int sizeLimit
= 0x7fff ;
710 // width and height of the device-dependent bitmap
711 int width
= GetWidth();
712 int bmpHeight
= GetHeight();
714 // calc the number of bytes per scanline and padding
715 int bytePerLine
= width
*3;
716 int sizeDWORD
= sizeof( DWORD
);
717 int lineBoundary
= bytePerLine
% sizeDWORD
;
719 if( lineBoundary
> 0 )
721 padding
= sizeDWORD
- lineBoundary
;
722 bytePerLine
+= padding
;
724 // calc the number of DIBs and heights of DIBs
727 int height
= sizeLimit
/bytePerLine
;
728 if( height
>= bmpHeight
)
732 numDIB
= bmpHeight
/ height
;
733 hRemain
= bmpHeight
% height
;
734 if( hRemain
>0 ) numDIB
++;
737 // set bitmap parameters
739 wxCHECK_MSG( Ok(), bitmap
, wxT("invalid image") );
740 bitmap
.SetWidth( width
);
741 bitmap
.SetHeight( bmpHeight
);
742 bitmap
.SetDepth( wxDisplayDepth() );
744 // create a DIB header
745 int headersize
= sizeof(BITMAPINFOHEADER
);
746 LPBITMAPINFO lpDIBh
= (BITMAPINFO
*) malloc( headersize
);
747 wxCHECK_MSG( lpDIBh
, bitmap
, wxT("could not allocate memory for DIB header") );
748 // Fill in the DIB header
749 lpDIBh
->bmiHeader
.biSize
= headersize
;
750 lpDIBh
->bmiHeader
.biWidth
= (DWORD
)width
;
751 lpDIBh
->bmiHeader
.biHeight
= (DWORD
)(-height
);
752 lpDIBh
->bmiHeader
.biSizeImage
= bytePerLine
*height
;
753 // the general formula for biSizeImage:
754 // ( ( ( ((DWORD)width*24) +31 ) & ~31 ) >> 3 ) * height;
755 lpDIBh
->bmiHeader
.biPlanes
= 1;
756 lpDIBh
->bmiHeader
.biBitCount
= 24;
757 lpDIBh
->bmiHeader
.biCompression
= BI_RGB
;
758 lpDIBh
->bmiHeader
.biClrUsed
= 0;
759 // These seem not really needed for our purpose here.
760 lpDIBh
->bmiHeader
.biClrImportant
= 0;
761 lpDIBh
->bmiHeader
.biXPelsPerMeter
= 0;
762 lpDIBh
->bmiHeader
.biYPelsPerMeter
= 0;
763 // memory for DIB data
764 unsigned char *lpBits
;
765 lpBits
= (unsigned char *)malloc( lpDIBh
->bmiHeader
.biSizeImage
);
768 wxFAIL_MSG( wxT("could not allocate memory for DIB") );
773 // create and set the device-dependent bitmap
774 HDC hdc
= ::GetDC(NULL
);
775 HDC memdc
= ::CreateCompatibleDC( hdc
);
777 hbitmap
= ::CreateCompatibleBitmap( hdc
, width
, bmpHeight
);
778 ::SelectObject( memdc
, hbitmap
);
780 // copy image data into DIB data and then into DDB (in a loop)
781 unsigned char *data
= GetData();
784 unsigned char *ptdata
= data
;
785 unsigned char *ptbits
;
787 for( n
=0; n
<numDIB
; n
++ )
789 if( numDIB
> 1 && n
== numDIB
-1 && hRemain
> 0 )
791 // redefine height and size of the (possibly) last smaller DIB
792 // memory is not reallocated
794 lpDIBh
->bmiHeader
.biHeight
= (DWORD
)(-height
);
795 lpDIBh
->bmiHeader
.biSizeImage
= bytePerLine
*height
;
799 for( j
=0; j
<height
; j
++ )
801 for( i
=0; i
<width
; i
++ )
803 *(ptbits
++) = *(ptdata
+2);
804 *(ptbits
++) = *(ptdata
+1);
805 *(ptbits
++) = *(ptdata
);
808 for( i
=0; i
< padding
; i
++ ) *(ptbits
++) = 0;
810 ::StretchDIBits( memdc
, 0, origin
, width
, height
,\
811 0, 0, width
, height
, lpBits
, lpDIBh
, DIB_RGB_COLORS
, SRCCOPY
);
813 // if numDIB = 1, lines below can also be used
814 // hbitmap = CreateDIBitmap( hdc, &(lpDIBh->bmiHeader), CBM_INIT, lpBits, lpDIBh, DIB_RGB_COLORS );
815 // The above line is equivalent to the following two lines.
816 // hbitmap = ::CreateCompatibleBitmap( hdc, width, height );
817 // ::SetDIBits( hdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS);
818 // or the following lines
819 // hbitmap = ::CreateCompatibleBitmap( hdc, width, height );
820 // HDC memdc = ::CreateCompatibleDC( hdc );
821 // ::SelectObject( memdc, hbitmap);
822 // ::SetDIBitsToDevice( memdc, 0, 0, width, height,
823 // 0, 0, 0, height, (void *)lpBits, lpDIBh, DIB_RGB_COLORS);
824 // ::SelectObject( memdc, 0 );
825 // ::DeleteDC( memdc );
827 bitmap
.SetHBITMAP( (WXHBITMAP
) hbitmap
);
829 // similarly, created an mono-bitmap for the possible mask
832 hbitmap
= ::CreateBitmap( (WORD
)width
, (WORD
)bmpHeight
, 1, 1, NULL
);
833 ::SelectObject( memdc
, hbitmap
);
834 if( numDIB
== 1 ) height
= bmpHeight
;
835 else height
= sizeLimit
/bytePerLine
;
836 lpDIBh
->bmiHeader
.biHeight
= (DWORD
)(-height
);
837 lpDIBh
->bmiHeader
.biSizeImage
= bytePerLine
*height
;
839 unsigned char r
= GetMaskRed();
840 unsigned char g
= GetMaskGreen();
841 unsigned char b
= GetMaskBlue();
842 unsigned char zero
= 0, one
= 255;
844 for( n
=0; n
<numDIB
; n
++ )
846 if( numDIB
> 1 && n
== numDIB
- 1 && hRemain
> 0 )
848 // redefine height and size of the (possibly) last smaller DIB
849 // memory is not reallocated
851 lpDIBh
->bmiHeader
.biHeight
= (DWORD
)(-height
);
852 lpDIBh
->bmiHeader
.biSizeImage
= bytePerLine
*height
;
855 for( int j
=0; j
<height
; j
++ )
857 for(i
=0; i
<width
; i
++ )
859 if( (*(ptdata
++)!=r
) | (*(ptdata
++)!=g
) | (*(ptdata
++)!=b
) )
872 for( i
=0; i
< padding
; i
++ ) *(ptbits
++) = zero
;
874 ::StretchDIBits( memdc
, 0, origin
, width
, height
,\
875 0, 0, width
, height
, lpBits
, lpDIBh
, DIB_RGB_COLORS
, SRCCOPY
);
878 // create a wxMask object
879 wxMask
*mask
= new wxMask();
880 mask
->SetMaskBitmap( (WXHBITMAP
) hbitmap
);
881 bitmap
.SetMask( mask
);
882 // It will be deleted when the wxBitmap object is deleted (as of 01/1999)
883 /* The following can also be used but is slow to run
884 wxColour colour( GetMaskRed(), GetMaskGreen(), GetMaskBlue());
885 wxMask *mask = new wxMask( bitmap, colour );
886 bitmap.SetMask( mask );
890 // free allocated resources
891 ::SelectObject( memdc
, 0 );
893 ::ReleaseDC(NULL
, hdc
);
897 // check the wxBitmap object
898 if( bitmap
.GetHBITMAP() )
899 bitmap
.SetOk( TRUE
);
901 bitmap
.SetOk( FALSE
);
906 wxImage::wxImage( const wxBitmap
&bitmap
)
911 wxFAIL_MSG( wxT("invalid bitmap") );
915 // create an wxImage object
916 int width
= bitmap
.GetWidth();
917 int height
= bitmap
.GetHeight();
918 Create( width
, height
);
919 unsigned char *data
= GetData();
922 wxFAIL_MSG( wxT("could not allocate data for image") );
926 // calc the number of bytes per scanline and padding in the DIB
927 int bytePerLine
= width
*3;
928 int sizeDWORD
= sizeof( DWORD
);
929 int lineBoundary
= bytePerLine
% sizeDWORD
;
931 if( lineBoundary
> 0 )
933 padding
= sizeDWORD
- lineBoundary
;
934 bytePerLine
+= padding
;
937 // create a DIB header
938 int headersize
= sizeof(BITMAPINFOHEADER
);
939 LPBITMAPINFO lpDIBh
= (BITMAPINFO
*) malloc( headersize
);
942 wxFAIL_MSG( wxT("could not allocate data for DIB header") );
946 // Fill in the DIB header
947 lpDIBh
->bmiHeader
.biSize
= headersize
;
948 lpDIBh
->bmiHeader
.biWidth
= width
;
949 lpDIBh
->bmiHeader
.biHeight
= -height
;
950 lpDIBh
->bmiHeader
.biSizeImage
= bytePerLine
* height
;
951 lpDIBh
->bmiHeader
.biPlanes
= 1;
952 lpDIBh
->bmiHeader
.biBitCount
= 24;
953 lpDIBh
->bmiHeader
.biCompression
= BI_RGB
;
954 lpDIBh
->bmiHeader
.biClrUsed
= 0;
955 // These seem not really needed for our purpose here.
956 lpDIBh
->bmiHeader
.biClrImportant
= 0;
957 lpDIBh
->bmiHeader
.biXPelsPerMeter
= 0;
958 lpDIBh
->bmiHeader
.biYPelsPerMeter
= 0;
959 // memory for DIB data
960 unsigned char *lpBits
;
961 lpBits
= (unsigned char *) malloc( lpDIBh
->bmiHeader
.biSizeImage
);
964 wxFAIL_MSG( wxT("could not allocate data for DIB") );
970 // copy data from the device-dependent bitmap to the DIB
971 HDC hdc
= ::GetDC(NULL
);
973 hbitmap
= (HBITMAP
) bitmap
.GetHBITMAP();
974 ::GetDIBits( hdc
, hbitmap
, 0, height
, lpBits
, lpDIBh
, DIB_RGB_COLORS
);
976 // copy DIB data into the wxImage object
978 unsigned char *ptdata
= data
;
979 unsigned char *ptbits
= lpBits
;
980 for( i
=0; i
<height
; i
++ )
982 for( j
=0; j
<width
; j
++ )
984 *(ptdata
++) = *(ptbits
+2);
985 *(ptdata
++) = *(ptbits
+1);
986 *(ptdata
++) = *(ptbits
);
992 // similarly, set data according to the possible mask bitmap
993 if( bitmap
.GetMask() && bitmap
.GetMask()->GetMaskBitmap() )
995 hbitmap
= (HBITMAP
) bitmap
.GetMask()->GetMaskBitmap();
996 // memory DC created, color set, data copied, and memory DC deleted
997 HDC memdc
= ::CreateCompatibleDC( hdc
);
998 ::SetTextColor( memdc
, RGB( 0, 0, 0 ) );
999 ::SetBkColor( memdc
, RGB( 255, 255, 255 ) );
1000 ::GetDIBits( memdc
, hbitmap
, 0, height
, lpBits
, lpDIBh
, DIB_RGB_COLORS
);
1001 ::DeleteDC( memdc
);
1002 // background color set to RGB(16,16,16) in consistent with wxGTK
1003 unsigned char r
=16, g
=16, b
=16;
1006 for( i
=0; i
<height
; i
++ )
1008 for( j
=0; j
<width
; j
++ )
1022 SetMaskColour( r
, g
, b
);
1029 // free allocated resources
1030 ::ReleaseDC(NULL
, hdc
);
1039 #include <PictUtils.h>
1041 extern CTabHandle
wxMacCreateColorTable( int numColors
) ;
1042 extern void wxMacDestroyColorTable( CTabHandle colors
) ;
1043 extern void wxMacSetColorTableEntry( CTabHandle newColors
, int index
, int red
, int green
, int blue
) ;
1044 extern GWorldPtr
wxMacCreateGWorld( int height
, int width
, int depth
) ;
1045 extern void wxMacDestroyGWorld( GWorldPtr gw
) ;
1047 wxBitmap
wxImage::ConvertToBitmap() const
1049 // width and height of the device-dependent bitmap
1050 int width
= GetWidth();
1051 int height
= GetHeight();
1055 wxBitmap
bitmap( width
, height
, wxDisplayDepth() ) ;
1062 unsigned char *mask_data = (unsigned char*)malloc( ((width >> 3)+8) * height );
1064 mask_image = gdk_image_new_bitmap( gdk_visual_get_system(), mask_data, width, height );
1066 wxMask *mask = new wxMask();
1067 mask->m_bitmap = gdk_pixmap_new( (GdkWindow*)&gdk_root_parent, width, height, 1 );
1069 bitmap.SetMask( mask );
1075 int r_mask
= GetMaskRed();
1076 int g_mask
= GetMaskGreen();
1077 int b_mask
= GetMaskBlue();
1080 GDHandle origDevice
;
1082 GetGWorld( &origPort
, &origDevice
) ;
1083 SetGWorld( bitmap
.GetHBITMAP() , NULL
) ;
1085 register unsigned char* data
= GetData();
1088 for (int y
= 0; y
< height
; y
++)
1091 unsigned char lastr
= 0 ;
1092 unsigned char lastg
= 0 ;
1093 unsigned char lastb
= 0 ;
1094 RGBColor lastcolor
;
1097 for (int x
= 0; x
< width
; x
++)
1099 unsigned char r
= data
[index
++];
1100 unsigned char g
= data
[index
++];
1101 unsigned char b
= data
[index
++];
1103 if ( r
!= lastr
|| g
!= lastg
|| b
!= lastb
)
1105 lastcolor
.red
= ( lastr
<< 8 ) + lastr
;
1106 lastcolor
.green
= ( lastg
<< 8 ) + lastg
;
1107 lastcolor
.blue
= ( lastb
<< 8 ) + lastb
;
1108 RGBForeColor( &lastcolor
) ;
1115 lastcolor
.red
= ( lastr
<< 8 ) + lastr
;
1116 lastcolor
.green
= ( lastg
<< 8 ) + lastg
;
1117 lastcolor
.blue
= ( lastb
<< 8 ) + lastb
;
1118 RGBForeColor( &lastcolor
) ;
1119 LineTo( width
- 1 , y
) ;
1121 for (int x
= 0; x
< width
; x
++)
1123 unsigned char r
= data
[index
++];
1124 unsigned char g
= data
[index
++];
1125 unsigned char b
= data
[index
++];
1127 color
.red
= ( r
<< 8 ) + r
;
1128 color
.green
= ( g
<< 8 ) + g
;
1129 color
.blue
= ( b
<< 8 ) + b
;
1130 SetCPixel( x
, y
, &color
) ;
1135 SetGWorld( origPort
, origDevice
) ;
1141 wxImage::wxImage( const wxBitmap
&bitmap
)
1146 wxFAIL_MSG( "invalid bitmap" );
1150 // create an wxImage object
1151 int width
= bitmap
.GetWidth();
1152 int height
= bitmap
.GetHeight();
1153 Create( width
, height
);
1155 unsigned char *data = GetData();
1158 wxFAIL_MSG( "could not allocate data for image" );
1162 // calc the number of bytes per scanline and padding in the DIB
1163 int bytePerLine = width*3;
1164 int sizeDWORD = sizeof( DWORD );
1165 div_t lineBoundary = div( bytePerLine, sizeDWORD );
1167 if( lineBoundary.rem > 0 )
1169 padding = sizeDWORD - lineBoundary.rem;
1170 bytePerLine += padding;
1173 // create a DIB header
1174 int headersize = sizeof(BITMAPINFOHEADER);
1175 LPBITMAPINFO lpDIBh = (BITMAPINFO *) malloc( headersize );
1178 wxFAIL_MSG( "could not allocate data for DIB header" );
1182 // Fill in the DIB header
1183 lpDIBh->bmiHeader.biSize = headersize;
1184 lpDIBh->bmiHeader.biWidth = width;
1185 lpDIBh->bmiHeader.biHeight = -height;
1186 lpDIBh->bmiHeader.biSizeImage = bytePerLine * height;
1187 lpDIBh->bmiHeader.biPlanes = 1;
1188 lpDIBh->bmiHeader.biBitCount = 24;
1189 lpDIBh->bmiHeader.biCompression = BI_RGB;
1190 lpDIBh->bmiHeader.biClrUsed = 0;
1191 // These seem not really needed for our purpose here.
1192 lpDIBh->bmiHeader.biClrImportant = 0;
1193 lpDIBh->bmiHeader.biXPelsPerMeter = 0;
1194 lpDIBh->bmiHeader.biYPelsPerMeter = 0;
1195 // memory for DIB data
1196 unsigned char *lpBits;
1197 lpBits = (unsigned char *) malloc( lpDIBh->bmiHeader.biSizeImage );
1200 wxFAIL_MSG( "could not allocate data for DIB" );
1206 // copy data from the device-dependent bitmap to the DIB
1207 HDC hdc = ::GetDC(NULL);
1209 hbitmap = (HBITMAP) bitmap.GetHBITMAP();
1210 ::GetDIBits( hdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS );
1212 // copy DIB data into the wxImage object
1214 unsigned char *ptdata = data;
1215 unsigned char *ptbits = lpBits;
1216 for( i=0; i<height; i++ )
1218 for( j=0; j<width; j++ )
1220 *(ptdata++) = *(ptbits+2);
1221 *(ptdata++) = *(ptbits+1);
1222 *(ptdata++) = *(ptbits );
1228 // similarly, set data according to the possible mask bitmap
1229 if( bitmap.GetMask() && bitmap.GetMask()->GetMaskBitmap() )
1231 hbitmap = (HBITMAP) bitmap.GetMask()->GetMaskBitmap();
1232 // memory DC created, color set, data copied, and memory DC deleted
1233 HDC memdc = ::CreateCompatibleDC( hdc );
1234 ::SetTextColor( memdc, RGB( 0, 0, 0 ) );
1235 ::SetBkColor( memdc, RGB( 255, 255, 255 ) );
1236 ::GetDIBits( memdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS );
1237 ::DeleteDC( memdc );
1238 // background color set to RGB(16,16,16) in consistent with wxGTK
1239 unsigned char r=16, g=16, b=16;
1242 for( i=0; i<height; i++ )
1244 for( j=0; j<width; j++ )
1258 SetMaskColour( r, g, b );
1265 // free allocated resources
1266 ::ReleaseDC(NULL, hdc);
1274 //-----------------------------------------------------------------------------
1275 // GTK conversion routines
1276 //-----------------------------------------------------------------------------
1280 #include "gtk/gtk.h"
1281 #include "gdk/gdk.h"
1282 #include "gdk/gdkx.h"
1284 #if (GTK_MINOR_VERSION > 0)
1285 #include "gdk/gdkrgb.h"
1288 wxBitmap
wxImage::ConvertToBitmap() const
1292 wxCHECK_MSG( Ok(), bitmap
, wxT("invalid image") );
1294 int width
= GetWidth();
1295 int height
= GetHeight();
1297 bitmap
.SetHeight( height
);
1298 bitmap
.SetWidth( width
);
1300 bitmap
.SetPixmap( gdk_pixmap_new( (GdkWindow
*)&gdk_root_parent
, width
, height
, -1 ) );
1304 GdkVisual
*visual
= gdk_window_get_visual( bitmap
.GetPixmap() );
1305 if (visual
== NULL
) visual
= gdk_visual_get_system();
1306 int bpp
= visual
->depth
;
1308 bitmap
.SetDepth( bpp
);
1310 if ((bpp
== 16) && (visual
->red_mask
!= 0xf800)) bpp
= 15;
1311 if (bpp
< 8) bpp
= 8;
1313 #if (GTK_MINOR_VERSION > 0)
1315 if (!HasMask() && (bpp
> 8))
1317 static bool s_hasInitialized
= FALSE
;
1319 if (!s_hasInitialized
)
1322 s_hasInitialized
= TRUE
;
1325 GdkGC
*gc
= gdk_gc_new( bitmap
.GetPixmap() );
1327 gdk_draw_rgb_image( bitmap
.GetPixmap(),
1331 GDK_RGB_DITHER_NONE
,
1342 // Create picture image
1344 GdkImage
*data_image
=
1345 gdk_image_new( GDK_IMAGE_FASTEST
, gdk_visual_get_system(), width
, height
);
1347 // Create mask image
1349 GdkImage
*mask_image
= (GdkImage
*) NULL
;
1353 unsigned char *mask_data
= (unsigned char*)malloc( ((width
>> 3)+8) * height
);
1355 mask_image
= gdk_image_new_bitmap( gdk_visual_get_system(), mask_data
, width
, height
);
1357 wxMask
*mask
= new wxMask();
1358 mask
->m_bitmap
= gdk_pixmap_new( (GdkWindow
*)&gdk_root_parent
, width
, height
, 1 );
1360 bitmap
.SetMask( mask
);
1365 enum byte_order
{ RGB
, RBG
, BRG
, BGR
, GRB
, GBR
};
1366 byte_order b_o
= RGB
;
1370 GdkVisual
*visual
= gdk_visual_get_system();
1371 if ((visual
->red_mask
> visual
->green_mask
) && (visual
->green_mask
> visual
->blue_mask
)) b_o
= RGB
;
1372 else if ((visual
->red_mask
> visual
->blue_mask
) && (visual
->blue_mask
> visual
->green_mask
)) b_o
= RGB
;
1373 else if ((visual
->blue_mask
> visual
->red_mask
) && (visual
->red_mask
> visual
->green_mask
)) b_o
= BRG
;
1374 else if ((visual
->blue_mask
> visual
->green_mask
) && (visual
->green_mask
> visual
->red_mask
)) b_o
= BGR
;
1375 else if ((visual
->green_mask
> visual
->red_mask
) && (visual
->red_mask
> visual
->blue_mask
)) b_o
= GRB
;
1376 else if ((visual
->green_mask
> visual
->blue_mask
) && (visual
->blue_mask
> visual
->red_mask
)) b_o
= GBR
;
1379 int r_mask
= GetMaskRed();
1380 int g_mask
= GetMaskGreen();
1381 int b_mask
= GetMaskBlue();
1383 unsigned char* data
= GetData();
1386 for (int y
= 0; y
< height
; y
++)
1388 for (int x
= 0; x
< width
; x
++)
1390 int r
= data
[index
];
1392 int g
= data
[index
];
1394 int b
= data
[index
];
1399 if ((r
== r_mask
) && (b
== b_mask
) && (g
== g_mask
))
1400 gdk_image_put_pixel( mask_image
, x
, y
, 1 );
1402 gdk_image_put_pixel( mask_image
, x
, y
, 0 );
1407 if ((r
== r_mask
) && (b
== b_mask
) && (g
== g_mask
))
1408 gdk_image_put_pixel( mask_image
, x
, y
, 1 );
1410 gdk_image_put_pixel( mask_image
, x
, y
, 0 );
1418 if (wxTheApp
->m_colorCube
)
1420 pixel
= wxTheApp
->m_colorCube
[ ((r
& 0xf8) << 7) + ((g
& 0xf8) << 2) + ((b
& 0xf8) >> 3) ];
1424 GdkColormap
*cmap
= gtk_widget_get_default_colormap();
1425 GdkColor
*colors
= cmap
->colors
;
1426 int max
= 3 * (65536);
1428 for (int i
= 0; i
< cmap
->size
; i
++)
1430 int rdiff
= (r
<< 8) - colors
[i
].red
;
1431 int gdiff
= (g
<< 8) - colors
[i
].green
;
1432 int bdiff
= (b
<< 8) - colors
[i
].blue
;
1433 int sum
= ABS (rdiff
) + ABS (gdiff
) + ABS (bdiff
);
1434 if (sum
< max
) { pixel
= i
; max
= sum
; }
1438 gdk_image_put_pixel( data_image
, x
, y
, pixel
);
1444 guint32 pixel
= ((r
& 0xf8) << 7) | ((g
& 0xf8) << 2) | ((b
& 0xf8) >> 3);
1445 gdk_image_put_pixel( data_image
, x
, y
, pixel
);
1450 guint32 pixel
= ((r
& 0xf8) << 8) | ((g
& 0xfc) << 3) | ((b
& 0xf8) >> 3);
1451 gdk_image_put_pixel( data_image
, x
, y
, pixel
);
1460 case RGB
: pixel
= (r
<< 16) | (g
<< 8) | b
; break;
1461 case RBG
: pixel
= (r
<< 16) | (b
<< 8) | g
; break;
1462 case BRG
: pixel
= (b
<< 16) | (r
<< 8) | g
; break;
1463 case BGR
: pixel
= (b
<< 16) | (g
<< 8) | r
; break;
1464 case GRB
: pixel
= (g
<< 16) | (r
<< 8) | b
; break;
1465 case GBR
: pixel
= (g
<< 16) | (b
<< 8) | r
; break;
1467 gdk_image_put_pixel( data_image
, x
, y
, pixel
);
1476 GdkGC
*data_gc
= gdk_gc_new( bitmap
.GetPixmap() );
1478 gdk_draw_image( bitmap
.GetPixmap(), data_gc
, data_image
, 0, 0, 0, 0, width
, height
);
1480 gdk_image_destroy( data_image
);
1481 gdk_gc_unref( data_gc
);
1487 GdkGC
*mask_gc
= gdk_gc_new( bitmap
.GetMask()->GetBitmap() );
1489 gdk_draw_image( bitmap
.GetMask()->GetBitmap(), mask_gc
, mask_image
, 0, 0, 0, 0, width
, height
);
1491 gdk_image_destroy( mask_image
);
1492 gdk_gc_unref( mask_gc
);
1498 wxImage::wxImage( const wxBitmap
&bitmap
)
1500 wxCHECK_RET( bitmap
.Ok(), wxT("invalid bitmap") );
1502 GdkImage
*gdk_image
= (GdkImage
*) NULL
;
1503 if (bitmap
.GetPixmap())
1505 gdk_image
= gdk_image_get( bitmap
.GetPixmap(),
1507 bitmap
.GetWidth(), bitmap
.GetHeight() );
1509 if (bitmap
.GetBitmap())
1511 gdk_image
= gdk_image_get( bitmap
.GetBitmap(),
1513 bitmap
.GetWidth(), bitmap
.GetHeight() );
1516 wxFAIL_MSG( wxT("Ill-formed bitmap") );
1519 wxCHECK_RET( gdk_image
, wxT("couldn't create image") );
1521 Create( bitmap
.GetWidth(), bitmap
.GetHeight() );
1522 char unsigned *data
= GetData();
1526 gdk_image_destroy( gdk_image
);
1527 wxFAIL_MSG( wxT("couldn't create image") );
1531 GdkImage
*gdk_image_mask
= (GdkImage
*) NULL
;
1532 if (bitmap
.GetMask())
1534 gdk_image_mask
= gdk_image_get( bitmap
.GetMask()->GetBitmap(),
1536 bitmap
.GetWidth(), bitmap
.GetHeight() );
1538 SetMaskColour( 16, 16, 16 ); // anything unlikely and dividable
1541 GdkVisual
*visual
= (GdkVisual
*) NULL
;
1542 if (bitmap
.GetPixmap())
1543 visual
= gdk_window_get_visual( bitmap
.GetPixmap() );
1545 visual
= gdk_window_get_visual( bitmap
.GetBitmap() );
1547 if (visual
== NULL
) visual
= gdk_window_get_visual( (GdkWindow
*) &gdk_root_parent
);
1548 int bpp
= visual
->depth
;
1549 if ((bpp
== 16) && (visual
->red_mask
!= 0xf800)) bpp
= 15;
1551 GdkColormap
*cmap
= gtk_widget_get_default_colormap();
1554 for (int j
= 0; j
< bitmap
.GetHeight(); j
++)
1556 for (int i
= 0; i
< bitmap
.GetWidth(); i
++)
1558 wxInt32 pixel
= gdk_image_get_pixel( gdk_image
, i
, j
);
1559 // pixel = wxINT32_SWAP_ON_BE( pixel );
1562 data
[pos
] = cmap
->colors
[pixel
].red
>> 8;
1563 data
[pos
+1] = cmap
->colors
[pixel
].green
>> 8;
1564 data
[pos
+2] = cmap
->colors
[pixel
].blue
>> 8;
1565 } else if (bpp
== 15)
1567 data
[pos
] = (pixel
>> 7) & 0xf8;
1568 data
[pos
+1] = (pixel
>> 2) & 0xf8;
1569 data
[pos
+2] = (pixel
<< 3) & 0xf8;
1570 } else if (bpp
== 16)
1572 data
[pos
] = (pixel
>> 8) & 0xf8;
1573 data
[pos
+1] = (pixel
>> 3) & 0xfc;
1574 data
[pos
+2] = (pixel
<< 3) & 0xf8;
1577 data
[pos
] = (pixel
>> 16) & 0xff;
1578 data
[pos
+1] = (pixel
>> 8) & 0xff;
1579 data
[pos
+2] = pixel
& 0xff;
1584 int mask_pixel
= gdk_image_get_pixel( gdk_image_mask
, i
, j
);
1585 if (mask_pixel
== 0)
1597 gdk_image_destroy( gdk_image
);
1598 if (gdk_image_mask
) gdk_image_destroy( gdk_image_mask
);
1603 //-----------------------------------------------------------------------------
1604 // Motif conversion routines
1605 //-----------------------------------------------------------------------------
1610 #include "wx/utils.h"
1613 wxBitmap
wxImage::ConvertToBitmap() const
1617 wxCHECK_MSG( Ok(), bitmap
, wxT("invalid image") );
1619 int width
= GetWidth();
1620 int height
= GetHeight();
1622 bitmap
.SetHeight( height
);
1623 bitmap
.SetWidth( width
);
1625 Display
*dpy
= (Display
*) wxGetDisplay();
1626 Visual
* vis
= DefaultVisual( dpy
, DefaultScreen( dpy
) );
1627 int bpp
= DefaultDepth( dpy
, DefaultScreen( dpy
) );
1631 XImage
*data_image
= XCreateImage( dpy
, vis
, bpp
, ZPixmap
, 0, 0, width
, height
, 32, 0 );
1632 data_image
->data
= (char*) malloc( data_image
->bytes_per_line
* data_image
->height
);
1634 bitmap
.Create( width
, height
, bpp
);
1639 GdkImage *mask_image = (GdkImage*) NULL;
1643 unsigned char *mask_data = (unsigned char*)malloc( ((width >> 3)+8) * height );
1645 mask_image = gdk_image_new_bitmap( gdk_visual_get_system(), mask_data, width, height );
1647 wxMask *mask = new wxMask();
1648 mask->m_bitmap = gdk_pixmap_new( (GdkWindow*)&gdk_root_parent, width, height, 1 );
1650 bitmap.SetMask( mask );
1654 // Retrieve depth info
1656 XVisualInfo vinfo_template
;
1659 vinfo_template
.visual
= vis
;
1660 vinfo_template
.visualid
= XVisualIDFromVisual( vis
);
1661 vinfo_template
.depth
= bpp
;
1664 vi
= XGetVisualInfo( dpy
, VisualIDMask
|VisualDepthMask
, &vinfo_template
, &nitem
);
1666 wxCHECK_MSG( vi
, wxNullBitmap
, wxT("no visual") );
1670 if ((bpp
== 16) && (vi
->red_mask
!= 0xf800)) bpp
= 15;
1671 if (bpp
< 8) bpp
= 8;
1675 enum byte_order
{ RGB
, RBG
, BRG
, BGR
, GRB
, GBR
};
1676 byte_order b_o
= RGB
;
1680 if ((vi
->red_mask
> vi
->green_mask
) && (vi
->green_mask
> vi
->blue_mask
)) b_o
= RGB
;
1681 else if ((vi
->red_mask
> vi
->blue_mask
) && (vi
->blue_mask
> vi
->green_mask
)) b_o
= RGB
;
1682 else if ((vi
->blue_mask
> vi
->red_mask
) && (vi
->red_mask
> vi
->green_mask
)) b_o
= BRG
;
1683 else if ((vi
->blue_mask
> vi
->green_mask
) && (vi
->green_mask
> vi
->red_mask
)) b_o
= BGR
;
1684 else if ((vi
->green_mask
> vi
->red_mask
) && (vi
->red_mask
> vi
->blue_mask
)) b_o
= GRB
;
1685 else if ((vi
->green_mask
> vi
->blue_mask
) && (vi
->blue_mask
> vi
->red_mask
)) b_o
= GBR
;
1689 int r_mask = GetMaskRed();
1690 int g_mask = GetMaskGreen();
1691 int b_mask = GetMaskBlue();
1697 Colormap cmap
= (Colormap
) wxTheApp
->GetMainColormap( dpy
);
1699 for (int i
= 0; i
< 256; i
++) colors
[i
].pixel
= i
;
1700 XQueryColors( dpy
, cmap
, colors
, 256 );
1703 unsigned char* data
= GetData();
1706 for (int y
= 0; y
< height
; y
++)
1708 for (int x
= 0; x
< width
; x
++)
1710 int r
= data
[index
];
1712 int g
= data
[index
];
1714 int b
= data
[index
];
1720 if ((r == r_mask) && (b == b_mask) && (g == g_mask))
1721 gdk_image_put_pixel( mask_image, x, y, 1 );
1723 gdk_image_put_pixel( mask_image, x, y, 0 );
1733 if (wxTheApp->m_colorCube)
1735 pixel = wxTheApp->m_colorCube
1736 [ ((r & 0xf8) << 7) + ((g & 0xf8) << 2) + ((b & 0xf8) >> 3) ];
1741 int max
= 3 * (65536);
1742 for (int i
= 0; i
< 256; i
++)
1744 int rdiff
= (r
<< 8) - colors
[i
].red
;
1745 int gdiff
= (g
<< 8) - colors
[i
].green
;
1746 int bdiff
= (b
<< 8) - colors
[i
].blue
;
1747 int sum
= abs (rdiff
) + abs (gdiff
) + abs (bdiff
);
1748 if (sum
< max
) { pixel
= i
; max
= sum
; }
1753 XPutPixel( data_image
, x
, y
, pixel
);
1758 int pixel
= ((r
& 0xf8) << 7) | ((g
& 0xf8) << 2) | ((b
& 0xf8) >> 3);
1759 XPutPixel( data_image
, x
, y
, pixel
);
1764 int pixel
= ((r
& 0xf8) << 8) | ((g
& 0xfc) << 3) | ((b
& 0xf8) >> 3);
1765 XPutPixel( data_image
, x
, y
, pixel
);
1774 case RGB
: pixel
= (r
<< 16) | (g
<< 8) | b
; break;
1775 case RBG
: pixel
= (r
<< 16) | (b
<< 8) | g
; break;
1776 case BRG
: pixel
= (b
<< 16) | (r
<< 8) | g
; break;
1777 case BGR
: pixel
= (b
<< 16) | (g
<< 8) | r
; break;
1778 case GRB
: pixel
= (g
<< 16) | (r
<< 8) | b
; break;
1779 case GBR
: pixel
= (g
<< 16) | (b
<< 8) | r
; break;
1781 XPutPixel( data_image
, x
, y
, pixel
);
1791 gcvalues
.foreground
= BlackPixel( dpy
, DefaultScreen( dpy
) );
1792 GC gc
= XCreateGC( dpy
, RootWindow ( dpy
, DefaultScreen(dpy
) ), GCForeground
, &gcvalues
);
1793 XPutImage( dpy
, (Drawable
)bitmap
.GetPixmap(), gc
, data_image
, 0, 0, 0, 0, width
, height
);
1795 XDestroyImage( data_image
);
1803 GdkGC *mask_gc = gdk_gc_new( bitmap.GetMask()->GetBitmap() );
1805 gdk_draw_image( bitmap.GetMask()->GetBitmap(), mask_gc, mask_image, 0, 0, 0, 0, width, height );
1807 gdk_image_destroy( mask_image );
1808 gdk_gc_unref( mask_gc );
1815 wxImage::wxImage( const wxBitmap
&bitmap
)
1817 wxCHECK_RET( bitmap
.Ok(), wxT("invalid bitmap") );
1819 Display
*dpy
= (Display
*) wxGetDisplay();
1820 Visual
* vis
= DefaultVisual( dpy
, DefaultScreen( dpy
) );
1821 int bpp
= DefaultDepth( dpy
, DefaultScreen( dpy
) );
1823 XImage
*ximage
= XGetImage( dpy
,
1824 (Drawable
)bitmap
.GetPixmap(),
1826 bitmap
.GetWidth(), bitmap
.GetHeight(),
1827 AllPlanes
, ZPixmap
);
1829 wxCHECK_RET( ximage
, wxT("couldn't create image") );
1831 Create( bitmap
.GetWidth(), bitmap
.GetHeight() );
1832 char unsigned *data
= GetData();
1836 XDestroyImage( ximage
);
1837 wxFAIL_MSG( wxT("couldn't create image") );
1842 GdkImage *gdk_image_mask = (GdkImage*) NULL;
1843 if (bitmap.GetMask())
1845 gdk_image_mask = gdk_image_get( bitmap.GetMask()->GetBitmap(),
1847 bitmap.GetWidth(), bitmap.GetHeight() );
1849 SetMaskColour( 16, 16, 16 ); // anything unlikely and dividable
1853 // Retrieve depth info
1855 XVisualInfo vinfo_template
;
1858 vinfo_template
.visual
= vis
;
1859 vinfo_template
.visualid
= XVisualIDFromVisual( vis
);
1860 vinfo_template
.depth
= bpp
;
1863 vi
= XGetVisualInfo( dpy
, VisualIDMask
|VisualDepthMask
, &vinfo_template
, &nitem
);
1865 wxCHECK_RET( vi
, wxT("no visual") );
1867 if ((bpp
== 16) && (vi
->red_mask
!= 0xf800)) bpp
= 15;
1874 Colormap cmap
= (Colormap
)wxTheApp
->GetMainColormap( dpy
);
1876 for (int i
= 0; i
< 256; i
++) colors
[i
].pixel
= i
;
1877 XQueryColors( dpy
, cmap
, colors
, 256 );
1881 for (int j
= 0; j
< bitmap
.GetHeight(); j
++)
1883 for (int i
= 0; i
< bitmap
.GetWidth(); i
++)
1885 int pixel
= XGetPixel( ximage
, i
, j
);
1888 data
[pos
] = colors
[pixel
].red
>> 8;
1889 data
[pos
+1] = colors
[pixel
].green
>> 8;
1890 data
[pos
+2] = colors
[pixel
].blue
>> 8;
1891 } else if (bpp
== 15)
1893 data
[pos
] = (pixel
>> 7) & 0xf8;
1894 data
[pos
+1] = (pixel
>> 2) & 0xf8;
1895 data
[pos
+2] = (pixel
<< 3) & 0xf8;
1896 } else if (bpp
== 16)
1898 data
[pos
] = (pixel
>> 8) & 0xf8;
1899 data
[pos
+1] = (pixel
>> 3) & 0xfc;
1900 data
[pos
+2] = (pixel
<< 3) & 0xf8;
1903 data
[pos
] = (pixel
>> 16) & 0xff;
1904 data
[pos
+1] = (pixel
>> 8) & 0xff;
1905 data
[pos
+2] = pixel
& 0xff;
1911 int mask_pixel = gdk_image_get_pixel( gdk_image_mask, i, j );
1912 if (mask_pixel == 0)
1925 XDestroyImage( ximage
);
1927 if (gdk_image_mask) gdk_image_destroy( gdk_image_mask );
1933 // OS/2 Presentation manager conversion routings
1935 wxBitmap
wxImage::ConvertToBitmap() const
1938 return wxNullBitmap
;
1939 wxBitmap bitmap
; // remove
1942 int sizeLimit = 1024*768*3;
1944 // width and height of the device-dependent bitmap
1945 int width = GetWidth();
1946 int bmpHeight = GetHeight();
1948 // calc the number of bytes per scanline and padding
1949 int bytePerLine = width*3;
1950 int sizeDWORD = sizeof( DWORD );
1951 int lineBoundary = bytePerLine % sizeDWORD;
1953 if( lineBoundary > 0 )
1955 padding = sizeDWORD - lineBoundary;
1956 bytePerLine += padding;
1958 // calc the number of DIBs and heights of DIBs
1961 int height = sizeLimit/bytePerLine;
1962 if( height >= bmpHeight )
1966 numDIB = bmpHeight / height;
1967 hRemain = bmpHeight % height;
1968 if( hRemain >0 ) numDIB++;
1971 // set bitmap parameters
1973 wxCHECK_MSG( Ok(), bitmap, wxT("invalid image") );
1974 bitmap.SetWidth( width );
1975 bitmap.SetHeight( bmpHeight );
1976 bitmap.SetDepth( wxDisplayDepth() );
1978 // create a DIB header
1979 int headersize = sizeof(BITMAPINFOHEADER);
1980 LPBITMAPINFO lpDIBh = (BITMAPINFO *) malloc( headersize );
1981 wxCHECK_MSG( lpDIBh, bitmap, wxT("could not allocate memory for DIB header") );
1982 // Fill in the DIB header
1983 lpDIBh->bmiHeader.biSize = headersize;
1984 lpDIBh->bmiHeader.biWidth = (DWORD)width;
1985 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
1986 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
1987 // the general formula for biSizeImage:
1988 // ( ( ( ((DWORD)width*24) +31 ) & ~31 ) >> 3 ) * height;
1989 lpDIBh->bmiHeader.biPlanes = 1;
1990 lpDIBh->bmiHeader.biBitCount = 24;
1991 lpDIBh->bmiHeader.biCompression = BI_RGB;
1992 lpDIBh->bmiHeader.biClrUsed = 0;
1993 // These seem not really needed for our purpose here.
1994 lpDIBh->bmiHeader.biClrImportant = 0;
1995 lpDIBh->bmiHeader.biXPelsPerMeter = 0;
1996 lpDIBh->bmiHeader.biYPelsPerMeter = 0;
1997 // memory for DIB data
1998 unsigned char *lpBits;
1999 lpBits = (unsigned char *)malloc( lpDIBh->bmiHeader.biSizeImage );
2002 wxFAIL_MSG( wxT("could not allocate memory for DIB") );
2007 // create and set the device-dependent bitmap
2008 HDC hdc = ::GetDC(NULL);
2009 HDC memdc = ::CreateCompatibleDC( hdc );
2011 hbitmap = ::CreateCompatibleBitmap( hdc, width, bmpHeight );
2012 ::SelectObject( memdc, hbitmap);
2014 // copy image data into DIB data and then into DDB (in a loop)
2015 unsigned char *data = GetData();
2018 unsigned char *ptdata = data;
2019 unsigned char *ptbits;
2021 for( n=0; n<numDIB; n++ )
2023 if( numDIB > 1 && n == numDIB-1 && hRemain > 0 )
2025 // redefine height and size of the (possibly) last smaller DIB
2026 // memory is not reallocated
2028 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
2029 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
2033 for( j=0; j<height; j++ )
2035 for( i=0; i<width; i++ )
2037 *(ptbits++) = *(ptdata+2);
2038 *(ptbits++) = *(ptdata+1);
2039 *(ptbits++) = *(ptdata );
2042 for( i=0; i< padding; i++ ) *(ptbits++) = 0;
2044 ::StretchDIBits( memdc, 0, origin, width, height,\
2045 0, 0, width, height, lpBits, lpDIBh, DIB_RGB_COLORS, SRCCOPY);
2047 // if numDIB = 1, lines below can also be used
2048 // hbitmap = CreateDIBitmap( hdc, &(lpDIBh->bmiHeader), CBM_INIT, lpBits, lpDIBh, DIB_RGB_COLORS );
2049 // The above line is equivalent to the following two lines.
2050 // hbitmap = ::CreateCompatibleBitmap( hdc, width, height );
2051 // ::SetDIBits( hdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS);
2052 // or the following lines
2053 // hbitmap = ::CreateCompatibleBitmap( hdc, width, height );
2054 // HDC memdc = ::CreateCompatibleDC( hdc );
2055 // ::SelectObject( memdc, hbitmap);
2056 // ::SetDIBitsToDevice( memdc, 0, 0, width, height,
2057 // 0, 0, 0, height, (void *)lpBits, lpDIBh, DIB_RGB_COLORS);
2058 // ::SelectObject( memdc, 0 );
2059 // ::DeleteDC( memdc );
2061 bitmap.SetHBITMAP( (WXHBITMAP) hbitmap );
2063 // similarly, created an mono-bitmap for the possible mask
2066 hbitmap = ::CreateBitmap( (WORD)width, (WORD)bmpHeight, 1, 1, NULL );
2067 ::SelectObject( memdc, hbitmap);
2068 if( numDIB == 1 ) height = bmpHeight;
2069 else height = sizeLimit/bytePerLine;
2070 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
2071 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
2073 unsigned char r = GetMaskRed();
2074 unsigned char g = GetMaskGreen();
2075 unsigned char b = GetMaskBlue();
2076 unsigned char zero = 0, one = 255;
2078 for( n=0; n<numDIB; n++ )
2080 if( numDIB > 1 && n == numDIB - 1 && hRemain > 0 )
2082 // redefine height and size of the (possibly) last smaller DIB
2083 // memory is not reallocated
2085 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
2086 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
2089 for( int j=0; j<height; j++ )
2091 for(i=0; i<width; i++ )
2093 if( (*(ptdata++)!=r) | (*(ptdata++)!=g) | (*(ptdata++)!=b) )
2106 for( i=0; i< padding; i++ ) *(ptbits++) = zero;
2108 ::StretchDIBits( memdc, 0, origin, width, height,\
2109 0, 0, width, height, lpBits, lpDIBh, DIB_RGB_COLORS, SRCCOPY);
2112 // create a wxMask object
2113 wxMask *mask = new wxMask();
2114 mask->SetMaskBitmap( (WXHBITMAP) hbitmap );
2115 bitmap.SetMask( mask );
2118 // free allocated resources
2119 ::SelectObject( memdc, 0 );
2120 ::DeleteDC( memdc );
2121 ::ReleaseDC(NULL, hdc);
2125 // check the wxBitmap object
2126 if( bitmap.GetHBITMAP() )
2127 bitmap.SetOk( TRUE );
2129 bitmap.SetOk( FALSE );
2134 wxImage::wxImage( const wxBitmap
&bitmap
)
2139 wxFAIL_MSG( wxT("invalid bitmap") );
2143 // create an wxImage object
2144 int width
= bitmap
.GetWidth();
2145 int height
= bitmap
.GetHeight();
2146 Create( width
, height
);
2147 unsigned char *data
= GetData();
2150 wxFAIL_MSG( wxT("could not allocate data for image") );
2154 // calc the number of bytes per scanline and padding in the DIB
2155 int bytePerLine
= width
*3;
2156 int sizeDWORD
= sizeof( DWORD
);
2157 int lineBoundary
= bytePerLine
% sizeDWORD
;
2159 if( lineBoundary
> 0 )
2161 padding
= sizeDWORD
- lineBoundary
;
2162 bytePerLine
+= padding
;
2166 // create a DIB header
2167 int headersize = sizeof(BITMAPINFOHEADER);
2168 LPBITMAPINFO lpDIBh = (BITMAPINFO *) malloc( headersize );
2171 wxFAIL_MSG( wxT("could not allocate data for DIB header") );
2175 // Fill in the DIB header
2176 lpDIBh->bmiHeader.biSize = headersize;
2177 lpDIBh->bmiHeader.biWidth = width;
2178 lpDIBh->bmiHeader.biHeight = -height;
2179 lpDIBh->bmiHeader.biSizeImage = bytePerLine * height;
2180 lpDIBh->bmiHeader.biPlanes = 1;
2181 lpDIBh->bmiHeader.biBitCount = 24;
2182 lpDIBh->bmiHeader.biCompression = BI_RGB;
2183 lpDIBh->bmiHeader.biClrUsed = 0;
2184 // These seem not really needed for our purpose here.
2185 lpDIBh->bmiHeader.biClrImportant = 0;
2186 lpDIBh->bmiHeader.biXPelsPerMeter = 0;
2187 lpDIBh->bmiHeader.biYPelsPerMeter = 0;
2188 // memory for DIB data
2189 unsigned char *lpBits;
2190 lpBits = (unsigned char *) malloc( lpDIBh->bmiHeader.biSizeImage );
2193 wxFAIL_MSG( wxT("could not allocate data for DIB") );
2199 // copy data from the device-dependent bitmap to the DIB
2200 HDC hdc = ::GetDC(NULL);
2202 hbitmap = (HBITMAP) bitmap.GetHBITMAP();
2203 ::GetDIBits( hdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS );
2205 // copy DIB data into the wxImage object
2207 unsigned char *ptdata = data;
2208 unsigned char *ptbits = lpBits;
2209 for( i=0; i<height; i++ )
2211 for( j=0; j<width; j++ )
2213 *(ptdata++) = *(ptbits+2);
2214 *(ptdata++) = *(ptbits+1);
2215 *(ptdata++) = *(ptbits );
2221 // similarly, set data according to the possible mask bitmap
2222 if( bitmap.GetMask() && bitmap.GetMask()->GetMaskBitmap() )
2224 hbitmap = (HBITMAP) bitmap.GetMask()->GetMaskBitmap();
2225 // memory DC created, color set, data copied, and memory DC deleted
2226 HDC memdc = ::CreateCompatibleDC( hdc );
2227 ::SetTextColor( memdc, RGB( 0, 0, 0 ) );
2228 ::SetBkColor( memdc, RGB( 255, 255, 255 ) );
2229 ::GetDIBits( memdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS );
2230 ::DeleteDC( memdc );
2231 // background color set to RGB(16,16,16) in consistent with wxGTK
2232 unsigned char r=16, g=16, b=16;
2235 for( i=0; i<height; i++ )
2237 for( j=0; j<width; j++ )
2251 SetMaskColour( r, g, b );
2258 // free allocated resources
2259 ::ReleaseDC(NULL, hdc);
2267 // A module to allow wxImage initialization/cleanup
2268 // without calling these functions from app.cpp or from
2269 // the user's application.
2271 class wxImageModule
: public wxModule
2273 DECLARE_DYNAMIC_CLASS(wxImageModule
)
2276 bool OnInit() { wxImage::InitStandardHandlers(); return TRUE
; };
2277 void OnExit() { wxImage::CleanUpHandlers(); };
2280 IMPLEMENT_DYNAMIC_CLASS(wxImageModule
, wxModule
)