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 //-----------------------------------------------------------------------------
1609 #pragma message disable nosimpint
1613 #pragma message enable nosimpint
1615 #include "wx/utils.h"
1618 wxBitmap
wxImage::ConvertToBitmap() const
1622 wxCHECK_MSG( Ok(), bitmap
, wxT("invalid image") );
1624 int width
= GetWidth();
1625 int height
= GetHeight();
1627 bitmap
.SetHeight( height
);
1628 bitmap
.SetWidth( width
);
1630 Display
*dpy
= (Display
*) wxGetDisplay();
1631 Visual
* vis
= DefaultVisual( dpy
, DefaultScreen( dpy
) );
1632 int bpp
= DefaultDepth( dpy
, DefaultScreen( dpy
) );
1636 XImage
*data_image
= XCreateImage( dpy
, vis
, bpp
, ZPixmap
, 0, 0, width
, height
, 32, 0 );
1637 data_image
->data
= (char*) malloc( data_image
->bytes_per_line
* data_image
->height
);
1639 bitmap
.Create( width
, height
, bpp
);
1644 GdkImage *mask_image = (GdkImage*) NULL;
1648 unsigned char *mask_data = (unsigned char*)malloc( ((width >> 3)+8) * height );
1650 mask_image = gdk_image_new_bitmap( gdk_visual_get_system(), mask_data, width, height );
1652 wxMask *mask = new wxMask();
1653 mask->m_bitmap = gdk_pixmap_new( (GdkWindow*)&gdk_root_parent, width, height, 1 );
1655 bitmap.SetMask( mask );
1659 // Retrieve depth info
1661 XVisualInfo vinfo_template
;
1664 vinfo_template
.visual
= vis
;
1665 vinfo_template
.visualid
= XVisualIDFromVisual( vis
);
1666 vinfo_template
.depth
= bpp
;
1669 vi
= XGetVisualInfo( dpy
, VisualIDMask
|VisualDepthMask
, &vinfo_template
, &nitem
);
1671 wxCHECK_MSG( vi
, wxNullBitmap
, wxT("no visual") );
1675 if ((bpp
== 16) && (vi
->red_mask
!= 0xf800)) bpp
= 15;
1676 if (bpp
< 8) bpp
= 8;
1680 enum byte_order
{ RGB
, RBG
, BRG
, BGR
, GRB
, GBR
};
1681 byte_order b_o
= RGB
;
1685 if ((vi
->red_mask
> vi
->green_mask
) && (vi
->green_mask
> vi
->blue_mask
)) b_o
= RGB
;
1686 else if ((vi
->red_mask
> vi
->blue_mask
) && (vi
->blue_mask
> vi
->green_mask
)) b_o
= RGB
;
1687 else if ((vi
->blue_mask
> vi
->red_mask
) && (vi
->red_mask
> vi
->green_mask
)) b_o
= BRG
;
1688 else if ((vi
->blue_mask
> vi
->green_mask
) && (vi
->green_mask
> vi
->red_mask
)) b_o
= BGR
;
1689 else if ((vi
->green_mask
> vi
->red_mask
) && (vi
->red_mask
> vi
->blue_mask
)) b_o
= GRB
;
1690 else if ((vi
->green_mask
> vi
->blue_mask
) && (vi
->blue_mask
> vi
->red_mask
)) b_o
= GBR
;
1694 int r_mask = GetMaskRed();
1695 int g_mask = GetMaskGreen();
1696 int b_mask = GetMaskBlue();
1702 Colormap cmap
= (Colormap
) wxTheApp
->GetMainColormap( dpy
);
1704 for (int i
= 0; i
< 256; i
++) colors
[i
].pixel
= i
;
1705 XQueryColors( dpy
, cmap
, colors
, 256 );
1708 unsigned char* data
= GetData();
1711 for (int y
= 0; y
< height
; y
++)
1713 for (int x
= 0; x
< width
; x
++)
1715 int r
= data
[index
];
1717 int g
= data
[index
];
1719 int b
= data
[index
];
1725 if ((r == r_mask) && (b == b_mask) && (g == g_mask))
1726 gdk_image_put_pixel( mask_image, x, y, 1 );
1728 gdk_image_put_pixel( mask_image, x, y, 0 );
1738 if (wxTheApp->m_colorCube)
1740 pixel = wxTheApp->m_colorCube
1741 [ ((r & 0xf8) << 7) + ((g & 0xf8) << 2) + ((b & 0xf8) >> 3) ];
1746 int max
= 3 * (65536);
1747 for (int i
= 0; i
< 256; i
++)
1749 int rdiff
= (r
<< 8) - colors
[i
].red
;
1750 int gdiff
= (g
<< 8) - colors
[i
].green
;
1751 int bdiff
= (b
<< 8) - colors
[i
].blue
;
1752 int sum
= abs (rdiff
) + abs (gdiff
) + abs (bdiff
);
1753 if (sum
< max
) { pixel
= i
; max
= sum
; }
1758 XPutPixel( data_image
, x
, y
, pixel
);
1763 int pixel
= ((r
& 0xf8) << 7) | ((g
& 0xf8) << 2) | ((b
& 0xf8) >> 3);
1764 XPutPixel( data_image
, x
, y
, pixel
);
1769 int pixel
= ((r
& 0xf8) << 8) | ((g
& 0xfc) << 3) | ((b
& 0xf8) >> 3);
1770 XPutPixel( data_image
, x
, y
, pixel
);
1779 case RGB
: pixel
= (r
<< 16) | (g
<< 8) | b
; break;
1780 case RBG
: pixel
= (r
<< 16) | (b
<< 8) | g
; break;
1781 case BRG
: pixel
= (b
<< 16) | (r
<< 8) | g
; break;
1782 case BGR
: pixel
= (b
<< 16) | (g
<< 8) | r
; break;
1783 case GRB
: pixel
= (g
<< 16) | (r
<< 8) | b
; break;
1784 case GBR
: pixel
= (g
<< 16) | (b
<< 8) | r
; break;
1786 XPutPixel( data_image
, x
, y
, pixel
);
1796 gcvalues
.foreground
= BlackPixel( dpy
, DefaultScreen( dpy
) );
1797 GC gc
= XCreateGC( dpy
, RootWindow ( dpy
, DefaultScreen(dpy
) ), GCForeground
, &gcvalues
);
1798 XPutImage( dpy
, (Drawable
)bitmap
.GetPixmap(), gc
, data_image
, 0, 0, 0, 0, width
, height
);
1800 XDestroyImage( data_image
);
1808 GdkGC *mask_gc = gdk_gc_new( bitmap.GetMask()->GetBitmap() );
1810 gdk_draw_image( bitmap.GetMask()->GetBitmap(), mask_gc, mask_image, 0, 0, 0, 0, width, height );
1812 gdk_image_destroy( mask_image );
1813 gdk_gc_unref( mask_gc );
1820 wxImage::wxImage( const wxBitmap
&bitmap
)
1822 wxCHECK_RET( bitmap
.Ok(), wxT("invalid bitmap") );
1824 Display
*dpy
= (Display
*) wxGetDisplay();
1825 Visual
* vis
= DefaultVisual( dpy
, DefaultScreen( dpy
) );
1826 int bpp
= DefaultDepth( dpy
, DefaultScreen( dpy
) );
1828 XImage
*ximage
= XGetImage( dpy
,
1829 (Drawable
)bitmap
.GetPixmap(),
1831 bitmap
.GetWidth(), bitmap
.GetHeight(),
1832 AllPlanes
, ZPixmap
);
1834 wxCHECK_RET( ximage
, wxT("couldn't create image") );
1836 Create( bitmap
.GetWidth(), bitmap
.GetHeight() );
1837 char unsigned *data
= GetData();
1841 XDestroyImage( ximage
);
1842 wxFAIL_MSG( wxT("couldn't create image") );
1847 GdkImage *gdk_image_mask = (GdkImage*) NULL;
1848 if (bitmap.GetMask())
1850 gdk_image_mask = gdk_image_get( bitmap.GetMask()->GetBitmap(),
1852 bitmap.GetWidth(), bitmap.GetHeight() );
1854 SetMaskColour( 16, 16, 16 ); // anything unlikely and dividable
1858 // Retrieve depth info
1860 XVisualInfo vinfo_template
;
1863 vinfo_template
.visual
= vis
;
1864 vinfo_template
.visualid
= XVisualIDFromVisual( vis
);
1865 vinfo_template
.depth
= bpp
;
1868 vi
= XGetVisualInfo( dpy
, VisualIDMask
|VisualDepthMask
, &vinfo_template
, &nitem
);
1870 wxCHECK_RET( vi
, wxT("no visual") );
1872 if ((bpp
== 16) && (vi
->red_mask
!= 0xf800)) bpp
= 15;
1879 Colormap cmap
= (Colormap
)wxTheApp
->GetMainColormap( dpy
);
1881 for (int i
= 0; i
< 256; i
++) colors
[i
].pixel
= i
;
1882 XQueryColors( dpy
, cmap
, colors
, 256 );
1886 for (int j
= 0; j
< bitmap
.GetHeight(); j
++)
1888 for (int i
= 0; i
< bitmap
.GetWidth(); i
++)
1890 int pixel
= XGetPixel( ximage
, i
, j
);
1893 data
[pos
] = colors
[pixel
].red
>> 8;
1894 data
[pos
+1] = colors
[pixel
].green
>> 8;
1895 data
[pos
+2] = colors
[pixel
].blue
>> 8;
1896 } else if (bpp
== 15)
1898 data
[pos
] = (pixel
>> 7) & 0xf8;
1899 data
[pos
+1] = (pixel
>> 2) & 0xf8;
1900 data
[pos
+2] = (pixel
<< 3) & 0xf8;
1901 } else if (bpp
== 16)
1903 data
[pos
] = (pixel
>> 8) & 0xf8;
1904 data
[pos
+1] = (pixel
>> 3) & 0xfc;
1905 data
[pos
+2] = (pixel
<< 3) & 0xf8;
1908 data
[pos
] = (pixel
>> 16) & 0xff;
1909 data
[pos
+1] = (pixel
>> 8) & 0xff;
1910 data
[pos
+2] = pixel
& 0xff;
1916 int mask_pixel = gdk_image_get_pixel( gdk_image_mask, i, j );
1917 if (mask_pixel == 0)
1930 XDestroyImage( ximage
);
1932 if (gdk_image_mask) gdk_image_destroy( gdk_image_mask );
1938 // OS/2 Presentation manager conversion routings
1940 wxBitmap
wxImage::ConvertToBitmap() const
1943 return wxNullBitmap
;
1944 wxBitmap bitmap
; // remove
1947 int sizeLimit = 1024*768*3;
1949 // width and height of the device-dependent bitmap
1950 int width = GetWidth();
1951 int bmpHeight = GetHeight();
1953 // calc the number of bytes per scanline and padding
1954 int bytePerLine = width*3;
1955 int sizeDWORD = sizeof( DWORD );
1956 int lineBoundary = bytePerLine % sizeDWORD;
1958 if( lineBoundary > 0 )
1960 padding = sizeDWORD - lineBoundary;
1961 bytePerLine += padding;
1963 // calc the number of DIBs and heights of DIBs
1966 int height = sizeLimit/bytePerLine;
1967 if( height >= bmpHeight )
1971 numDIB = bmpHeight / height;
1972 hRemain = bmpHeight % height;
1973 if( hRemain >0 ) numDIB++;
1976 // set bitmap parameters
1978 wxCHECK_MSG( Ok(), bitmap, wxT("invalid image") );
1979 bitmap.SetWidth( width );
1980 bitmap.SetHeight( bmpHeight );
1981 bitmap.SetDepth( wxDisplayDepth() );
1983 // create a DIB header
1984 int headersize = sizeof(BITMAPINFOHEADER);
1985 LPBITMAPINFO lpDIBh = (BITMAPINFO *) malloc( headersize );
1986 wxCHECK_MSG( lpDIBh, bitmap, wxT("could not allocate memory for DIB header") );
1987 // Fill in the DIB header
1988 lpDIBh->bmiHeader.biSize = headersize;
1989 lpDIBh->bmiHeader.biWidth = (DWORD)width;
1990 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
1991 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
1992 // the general formula for biSizeImage:
1993 // ( ( ( ((DWORD)width*24) +31 ) & ~31 ) >> 3 ) * height;
1994 lpDIBh->bmiHeader.biPlanes = 1;
1995 lpDIBh->bmiHeader.biBitCount = 24;
1996 lpDIBh->bmiHeader.biCompression = BI_RGB;
1997 lpDIBh->bmiHeader.biClrUsed = 0;
1998 // These seem not really needed for our purpose here.
1999 lpDIBh->bmiHeader.biClrImportant = 0;
2000 lpDIBh->bmiHeader.biXPelsPerMeter = 0;
2001 lpDIBh->bmiHeader.biYPelsPerMeter = 0;
2002 // memory for DIB data
2003 unsigned char *lpBits;
2004 lpBits = (unsigned char *)malloc( lpDIBh->bmiHeader.biSizeImage );
2007 wxFAIL_MSG( wxT("could not allocate memory for DIB") );
2012 // create and set the device-dependent bitmap
2013 HDC hdc = ::GetDC(NULL);
2014 HDC memdc = ::CreateCompatibleDC( hdc );
2016 hbitmap = ::CreateCompatibleBitmap( hdc, width, bmpHeight );
2017 ::SelectObject( memdc, hbitmap);
2019 // copy image data into DIB data and then into DDB (in a loop)
2020 unsigned char *data = GetData();
2023 unsigned char *ptdata = data;
2024 unsigned char *ptbits;
2026 for( n=0; n<numDIB; n++ )
2028 if( numDIB > 1 && n == numDIB-1 && hRemain > 0 )
2030 // redefine height and size of the (possibly) last smaller DIB
2031 // memory is not reallocated
2033 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
2034 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
2038 for( j=0; j<height; j++ )
2040 for( i=0; i<width; i++ )
2042 *(ptbits++) = *(ptdata+2);
2043 *(ptbits++) = *(ptdata+1);
2044 *(ptbits++) = *(ptdata );
2047 for( i=0; i< padding; i++ ) *(ptbits++) = 0;
2049 ::StretchDIBits( memdc, 0, origin, width, height,\
2050 0, 0, width, height, lpBits, lpDIBh, DIB_RGB_COLORS, SRCCOPY);
2052 // if numDIB = 1, lines below can also be used
2053 // hbitmap = CreateDIBitmap( hdc, &(lpDIBh->bmiHeader), CBM_INIT, lpBits, lpDIBh, DIB_RGB_COLORS );
2054 // The above line is equivalent to the following two lines.
2055 // hbitmap = ::CreateCompatibleBitmap( hdc, width, height );
2056 // ::SetDIBits( hdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS);
2057 // or the following lines
2058 // hbitmap = ::CreateCompatibleBitmap( hdc, width, height );
2059 // HDC memdc = ::CreateCompatibleDC( hdc );
2060 // ::SelectObject( memdc, hbitmap);
2061 // ::SetDIBitsToDevice( memdc, 0, 0, width, height,
2062 // 0, 0, 0, height, (void *)lpBits, lpDIBh, DIB_RGB_COLORS);
2063 // ::SelectObject( memdc, 0 );
2064 // ::DeleteDC( memdc );
2066 bitmap.SetHBITMAP( (WXHBITMAP) hbitmap );
2068 // similarly, created an mono-bitmap for the possible mask
2071 hbitmap = ::CreateBitmap( (WORD)width, (WORD)bmpHeight, 1, 1, NULL );
2072 ::SelectObject( memdc, hbitmap);
2073 if( numDIB == 1 ) height = bmpHeight;
2074 else height = sizeLimit/bytePerLine;
2075 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
2076 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
2078 unsigned char r = GetMaskRed();
2079 unsigned char g = GetMaskGreen();
2080 unsigned char b = GetMaskBlue();
2081 unsigned char zero = 0, one = 255;
2083 for( n=0; n<numDIB; n++ )
2085 if( numDIB > 1 && n == numDIB - 1 && hRemain > 0 )
2087 // redefine height and size of the (possibly) last smaller DIB
2088 // memory is not reallocated
2090 lpDIBh->bmiHeader.biHeight = (DWORD)(-height);
2091 lpDIBh->bmiHeader.biSizeImage = bytePerLine*height;
2094 for( int j=0; j<height; j++ )
2096 for(i=0; i<width; i++ )
2098 if( (*(ptdata++)!=r) | (*(ptdata++)!=g) | (*(ptdata++)!=b) )
2111 for( i=0; i< padding; i++ ) *(ptbits++) = zero;
2113 ::StretchDIBits( memdc, 0, origin, width, height,\
2114 0, 0, width, height, lpBits, lpDIBh, DIB_RGB_COLORS, SRCCOPY);
2117 // create a wxMask object
2118 wxMask *mask = new wxMask();
2119 mask->SetMaskBitmap( (WXHBITMAP) hbitmap );
2120 bitmap.SetMask( mask );
2123 // free allocated resources
2124 ::SelectObject( memdc, 0 );
2125 ::DeleteDC( memdc );
2126 ::ReleaseDC(NULL, hdc);
2130 // check the wxBitmap object
2131 if( bitmap.GetHBITMAP() )
2132 bitmap.SetOk( TRUE );
2134 bitmap.SetOk( FALSE );
2139 wxImage::wxImage( const wxBitmap
&bitmap
)
2144 wxFAIL_MSG( wxT("invalid bitmap") );
2148 // create an wxImage object
2149 int width
= bitmap
.GetWidth();
2150 int height
= bitmap
.GetHeight();
2151 Create( width
, height
);
2152 unsigned char *data
= GetData();
2155 wxFAIL_MSG( wxT("could not allocate data for image") );
2159 // calc the number of bytes per scanline and padding in the DIB
2160 int bytePerLine
= width
*3;
2161 int sizeDWORD
= sizeof( DWORD
);
2162 int lineBoundary
= bytePerLine
% sizeDWORD
;
2164 if( lineBoundary
> 0 )
2166 padding
= sizeDWORD
- lineBoundary
;
2167 bytePerLine
+= padding
;
2171 // create a DIB header
2172 int headersize = sizeof(BITMAPINFOHEADER);
2173 LPBITMAPINFO lpDIBh = (BITMAPINFO *) malloc( headersize );
2176 wxFAIL_MSG( wxT("could not allocate data for DIB header") );
2180 // Fill in the DIB header
2181 lpDIBh->bmiHeader.biSize = headersize;
2182 lpDIBh->bmiHeader.biWidth = width;
2183 lpDIBh->bmiHeader.biHeight = -height;
2184 lpDIBh->bmiHeader.biSizeImage = bytePerLine * height;
2185 lpDIBh->bmiHeader.biPlanes = 1;
2186 lpDIBh->bmiHeader.biBitCount = 24;
2187 lpDIBh->bmiHeader.biCompression = BI_RGB;
2188 lpDIBh->bmiHeader.biClrUsed = 0;
2189 // These seem not really needed for our purpose here.
2190 lpDIBh->bmiHeader.biClrImportant = 0;
2191 lpDIBh->bmiHeader.biXPelsPerMeter = 0;
2192 lpDIBh->bmiHeader.biYPelsPerMeter = 0;
2193 // memory for DIB data
2194 unsigned char *lpBits;
2195 lpBits = (unsigned char *) malloc( lpDIBh->bmiHeader.biSizeImage );
2198 wxFAIL_MSG( wxT("could not allocate data for DIB") );
2204 // copy data from the device-dependent bitmap to the DIB
2205 HDC hdc = ::GetDC(NULL);
2207 hbitmap = (HBITMAP) bitmap.GetHBITMAP();
2208 ::GetDIBits( hdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS );
2210 // copy DIB data into the wxImage object
2212 unsigned char *ptdata = data;
2213 unsigned char *ptbits = lpBits;
2214 for( i=0; i<height; i++ )
2216 for( j=0; j<width; j++ )
2218 *(ptdata++) = *(ptbits+2);
2219 *(ptdata++) = *(ptbits+1);
2220 *(ptdata++) = *(ptbits );
2226 // similarly, set data according to the possible mask bitmap
2227 if( bitmap.GetMask() && bitmap.GetMask()->GetMaskBitmap() )
2229 hbitmap = (HBITMAP) bitmap.GetMask()->GetMaskBitmap();
2230 // memory DC created, color set, data copied, and memory DC deleted
2231 HDC memdc = ::CreateCompatibleDC( hdc );
2232 ::SetTextColor( memdc, RGB( 0, 0, 0 ) );
2233 ::SetBkColor( memdc, RGB( 255, 255, 255 ) );
2234 ::GetDIBits( memdc, hbitmap, 0, height, lpBits, lpDIBh, DIB_RGB_COLORS );
2235 ::DeleteDC( memdc );
2236 // background color set to RGB(16,16,16) in consistent with wxGTK
2237 unsigned char r=16, g=16, b=16;
2240 for( i=0; i<height; i++ )
2242 for( j=0; j<width; j++ )
2256 SetMaskColour( r, g, b );
2263 // free allocated resources
2264 ::ReleaseDC(NULL, hdc);
2272 // A module to allow wxImage initialization/cleanup
2273 // without calling these functions from app.cpp or from
2274 // the user's application.
2276 class wxImageModule
: public wxModule
2278 DECLARE_DYNAMIC_CLASS(wxImageModule
)
2281 bool OnInit() { wxImage::InitStandardHandlers(); return TRUE
; };
2282 void OnExit() { wxImage::CleanUpHandlers(); };
2285 IMPLEMENT_DYNAMIC_CLASS(wxImageModule
, wxModule
)