1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11 #pragma implementation "image.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
26 #include "wx/bitmap.h"
30 #include "wx/filefn.h"
31 #include "wx/wfstream.h"
33 #include "wx/module.h"
39 #include "wx/xpmdecod.h"
50 //-----------------------------------------------------------------------------
52 //-----------------------------------------------------------------------------
54 class wxImageRefData
: public wxObjectRefData
58 virtual ~wxImageRefData();
62 unsigned char *m_data
;
65 unsigned char m_maskRed
,m_maskGreen
,m_maskBlue
;
67 // alpha channel data, may be NULL for the formats without alpha support
68 unsigned char *m_alpha
;
72 // if true, m_data is pointer to static data and shouldn't be freed
75 // same as m_static but for m_alpha
80 #endif // wxUSE_PALETTE
82 wxArrayString m_optionNames
;
83 wxArrayString m_optionValues
;
85 DECLARE_NO_COPY_CLASS(wxImageRefData
)
88 wxImageRefData::wxImageRefData()
93 m_alpha
= (unsigned char *) NULL
;
102 m_staticAlpha
= false;
105 wxImageRefData::~wxImageRefData()
109 if ( !m_staticAlpha
)
113 wxList
wxImage::sm_handlers
;
117 //-----------------------------------------------------------------------------
119 #define M_IMGDATA ((wxImageRefData *)m_refData)
121 IMPLEMENT_DYNAMIC_CLASS(wxImage
, wxObject
)
123 wxImage::wxImage( int width
, int height
, bool clear
)
125 Create( width
, height
, clear
);
128 wxImage::wxImage( int width
, int height
, unsigned char* data
, bool static_data
)
130 Create( width
, height
, data
, static_data
);
133 wxImage::wxImage( int width
, int height
, unsigned char* data
, unsigned char* alpha
, bool static_data
)
135 Create( width
, height
, data
, alpha
, static_data
);
138 wxImage::wxImage( const wxString
& name
, long type
, int index
)
140 LoadFile( name
, type
, index
);
143 wxImage::wxImage( const wxString
& name
, const wxString
& mimetype
, int index
)
145 LoadFile( name
, mimetype
, index
);
149 wxImage::wxImage( wxInputStream
& stream
, long type
, int index
)
151 LoadFile( stream
, type
, index
);
154 wxImage::wxImage( wxInputStream
& stream
, const wxString
& mimetype
, int index
)
156 LoadFile( stream
, mimetype
, index
);
158 #endif // wxUSE_STREAMS
160 wxImage::wxImage( const wxImage
& image
)
166 wxImage::wxImage( const wxImage
* image
)
168 if (image
) Ref(*image
);
171 wxImage::wxImage( const char** xpmData
)
176 wxImage::wxImage( char** xpmData
)
178 Create((const char**) xpmData
);
181 bool wxImage::Create( const char** xpmData
)
186 wxXPMDecoder decoder
;
187 (*this) = decoder
.ReadData(xpmData
);
194 bool wxImage::Create( int width
, int height
, bool clear
)
198 m_refData
= new wxImageRefData();
200 M_IMGDATA
->m_data
= (unsigned char *) malloc( width
*height
*3 );
201 if (!M_IMGDATA
->m_data
)
208 memset(M_IMGDATA
->m_data
, 0, width
*height
*3);
210 M_IMGDATA
->m_width
= width
;
211 M_IMGDATA
->m_height
= height
;
212 M_IMGDATA
->m_ok
= true;
217 bool wxImage::Create( int width
, int height
, unsigned char* data
, bool static_data
)
221 wxCHECK_MSG( data
, false, _T("NULL data in wxImage::Create") );
223 m_refData
= new wxImageRefData();
225 M_IMGDATA
->m_data
= data
;
226 M_IMGDATA
->m_width
= width
;
227 M_IMGDATA
->m_height
= height
;
228 M_IMGDATA
->m_ok
= true;
229 M_IMGDATA
->m_static
= static_data
;
234 bool wxImage::Create( int width
, int height
, unsigned char* data
, unsigned char* alpha
, bool static_data
)
238 wxCHECK_MSG( data
, false, _T("NULL data in wxImage::Create") );
240 m_refData
= new wxImageRefData();
242 M_IMGDATA
->m_data
= data
;
243 M_IMGDATA
->m_alpha
= alpha
;
244 M_IMGDATA
->m_width
= width
;
245 M_IMGDATA
->m_height
= height
;
246 M_IMGDATA
->m_ok
= true;
247 M_IMGDATA
->m_static
= static_data
;
252 void wxImage::Destroy()
257 wxImage
wxImage::Copy() const
261 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
263 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false );
265 unsigned char *data
= image
.GetData();
267 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
269 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
270 image
.SetMask( M_IMGDATA
->m_hasMask
);
272 memcpy( data
, GetData(), M_IMGDATA
->m_width
*M_IMGDATA
->m_height
*3 );
274 // also copy the image options
275 wxImageRefData
*imgData
= (wxImageRefData
*)image
.m_refData
;
276 imgData
->m_optionNames
= M_IMGDATA
->m_optionNames
;
277 imgData
->m_optionValues
= M_IMGDATA
->m_optionValues
;
282 wxImage
wxImage::ShrinkBy( int xFactor
, int yFactor
) const
284 if( xFactor
== 1 && yFactor
== 1 )
289 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
291 // can't scale to/from 0 size
292 wxCHECK_MSG( (xFactor
> 0) && (yFactor
> 0), image
,
293 wxT("invalid new image size") );
295 long old_height
= M_IMGDATA
->m_height
,
296 old_width
= M_IMGDATA
->m_width
;
298 wxCHECK_MSG( (old_height
> 0) && (old_width
> 0), image
,
299 wxT("invalid old image size") );
301 long width
= old_width
/ xFactor
;
302 long height
= old_height
/ yFactor
;
304 image
.Create( width
, height
, false );
306 char unsigned *data
= image
.GetData();
308 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
310 bool hasMask
= false ;
311 unsigned char maskRed
= 0;
312 unsigned char maskGreen
= 0;
313 unsigned char maskBlue
=0 ;
315 unsigned char *source_data
= M_IMGDATA
->m_data
;
316 unsigned char *target_data
= data
;
317 unsigned char *source_alpha
= 0 ;
318 unsigned char *target_alpha
= 0 ;
319 if (M_IMGDATA
->m_hasMask
)
322 maskRed
= M_IMGDATA
->m_maskRed
;
323 maskGreen
= M_IMGDATA
->m_maskGreen
;
324 maskBlue
=M_IMGDATA
->m_maskBlue
;
326 image
.SetMaskColour( M_IMGDATA
->m_maskRed
,
327 M_IMGDATA
->m_maskGreen
,
328 M_IMGDATA
->m_maskBlue
);
332 source_alpha
= M_IMGDATA
->m_alpha
;
336 target_alpha
= image
.GetAlpha() ;
340 for (long y
= 0; y
< height
; y
++)
342 for (long x
= 0; x
< width
; x
++)
344 unsigned long avgRed
= 0 ;
345 unsigned long avgGreen
= 0;
346 unsigned long avgBlue
= 0;
347 unsigned long avgAlpha
= 0 ;
348 unsigned long counter
= 0 ;
350 for ( int y1
= 0 ; y1
< yFactor
; ++y1
)
352 long y_offset
= (y
* yFactor
+ y1
) * old_width
;
353 for ( int x1
= 0 ; x1
< xFactor
; ++x1
)
355 unsigned char *pixel
= source_data
+ 3 * ( y_offset
+ x
* xFactor
+ x1
) ;
356 unsigned char red
= pixel
[0] ;
357 unsigned char green
= pixel
[1] ;
358 unsigned char blue
= pixel
[2] ;
359 unsigned char alpha
= 255 ;
361 alpha
= *(source_alpha
+ y_offset
+ x
* xFactor
+ x1
) ;
362 if ( !hasMask
|| red
!= maskRed
|| green
!= maskGreen
|| blue
!= maskBlue
)
377 *(target_data
++) = M_IMGDATA
->m_maskRed
;
378 *(target_data
++) = M_IMGDATA
->m_maskGreen
;
379 *(target_data
++) = M_IMGDATA
->m_maskBlue
;
384 *(target_alpha
++) = (unsigned char)(avgAlpha
/ counter
) ;
385 *(target_data
++) = (unsigned char)(avgRed
/ counter
);
386 *(target_data
++) = (unsigned char)(avgGreen
/ counter
);
387 *(target_data
++) = (unsigned char)(avgBlue
/ counter
);
392 // In case this is a cursor, make sure the hotspot is scalled accordingly:
393 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
394 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
395 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
))/xFactor
);
396 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
397 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
398 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
))/yFactor
);
403 wxImage
wxImage::Scale( int width
, int height
) const
407 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
409 // can't scale to/from 0 size
410 wxCHECK_MSG( (width
> 0) && (height
> 0), image
,
411 wxT("invalid new image size") );
413 long old_height
= M_IMGDATA
->m_height
,
414 old_width
= M_IMGDATA
->m_width
;
415 wxCHECK_MSG( (old_height
> 0) && (old_width
> 0), image
,
416 wxT("invalid old image size") );
418 if ( old_width
% width
== 0 && old_width
>= width
&&
419 old_height
% height
== 0 && old_height
>= height
)
421 return ShrinkBy( old_width
/ width
, old_height
/ height
) ;
423 image
.Create( width
, height
, false );
425 unsigned char *data
= image
.GetData();
427 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
429 unsigned char *source_data
= M_IMGDATA
->m_data
;
430 unsigned char *target_data
= data
;
431 unsigned char *source_alpha
= 0 ;
432 unsigned char *target_alpha
= 0 ;
434 if (M_IMGDATA
->m_hasMask
)
436 image
.SetMaskColour( M_IMGDATA
->m_maskRed
,
437 M_IMGDATA
->m_maskGreen
,
438 M_IMGDATA
->m_maskBlue
);
442 source_alpha
= M_IMGDATA
->m_alpha
;
446 target_alpha
= image
.GetAlpha() ;
450 long x_delta
= (old_width
<<16) / width
;
451 long y_delta
= (old_height
<<16) / height
;
453 unsigned char* dest_pixel
= target_data
;
456 for ( long j
= 0; j
< height
; j
++ )
458 unsigned char* src_line
= &source_data
[(y
>>16)*old_width
*3];
459 unsigned char* src_alpha_line
= source_alpha
? &source_alpha
[(y
>>16)*old_width
] : 0 ;
462 for ( long i
= 0; i
< width
; i
++ )
464 unsigned char* src_pixel
= &src_line
[(x
>>16)*3];
465 unsigned char* src_alpha_pixel
= source_alpha
? &src_alpha_line
[(x
>>16)] : 0 ;
466 dest_pixel
[0] = src_pixel
[0];
467 dest_pixel
[1] = src_pixel
[1];
468 dest_pixel
[2] = src_pixel
[2];
471 *(target_alpha
++) = *src_alpha_pixel
;
478 // In case this is a cursor, make sure the hotspot is scalled accordingly:
479 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
480 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
481 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
)*width
)/old_width
);
482 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
483 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
484 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
)*height
)/old_height
);
489 wxImage
wxImage::Rotate90( bool clockwise
) const
493 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
495 image
.Create( M_IMGDATA
->m_height
, M_IMGDATA
->m_width
, false );
497 unsigned char *data
= image
.GetData();
499 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
501 if (M_IMGDATA
->m_hasMask
)
502 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
504 long height
= M_IMGDATA
->m_height
;
505 long width
= M_IMGDATA
->m_width
;
507 unsigned char *source_data
= M_IMGDATA
->m_data
;
508 unsigned char *target_data
;
510 for (long j
= 0; j
< height
; j
++)
512 for (long i
= 0; i
< width
; i
++)
515 target_data
= data
+ (((i
+1)*height
) - j
- 1)*3;
517 target_data
= data
+ ((height
*(width
-1)) + j
- (i
*height
))*3;
518 memcpy( target_data
, source_data
, 3 );
526 wxImage
wxImage::Mirror( bool horizontally
) const
530 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
532 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false );
534 unsigned char *data
= image
.GetData();
536 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
538 if (M_IMGDATA
->m_hasMask
)
539 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
541 long height
= M_IMGDATA
->m_height
;
542 long width
= M_IMGDATA
->m_width
;
544 unsigned char *source_data
= M_IMGDATA
->m_data
;
545 unsigned char *target_data
;
549 for (long j
= 0; j
< height
; j
++)
552 target_data
= data
-3;
553 for (long i
= 0; i
< width
; i
++)
555 memcpy( target_data
, source_data
, 3 );
563 for (long i
= 0; i
< height
; i
++)
565 target_data
= data
+ 3*width
*(height
-1-i
);
566 memcpy( target_data
, source_data
, (size_t)3*width
);
567 source_data
+= 3*width
;
574 wxImage
wxImage::GetSubImage( const wxRect
&rect
) const
578 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
580 wxCHECK_MSG( (rect
.GetLeft()>=0) && (rect
.GetTop()>=0) && (rect
.GetRight()<=GetWidth()) && (rect
.GetBottom()<=GetHeight()),
581 image
, wxT("invalid subimage size") );
583 int subwidth
=rect
.GetWidth();
584 const int subheight
=rect
.GetHeight();
586 image
.Create( subwidth
, subheight
, false );
588 unsigned char *subdata
= image
.GetData(), *data
=GetData();
590 wxCHECK_MSG( subdata
, image
, wxT("unable to create image") );
592 if (M_IMGDATA
->m_hasMask
)
593 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
595 const int subleft
=3*rect
.GetLeft();
596 const int width
=3*GetWidth();
599 data
+=rect
.GetTop()*width
+subleft
;
601 for (long j
= 0; j
< subheight
; ++j
)
603 memcpy( subdata
, data
, subwidth
);
611 wxImage
wxImage::Size( const wxSize
& size
, const wxPoint
& pos
,
612 int r_
, int g_
, int b_
) const
616 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
617 wxCHECK_MSG( (size
.GetWidth() > 0) && (size
.GetHeight() > 0), image
, wxT("invalid size") );
619 int width
= GetWidth(), height
= GetHeight();
620 image
.Create(size
.GetWidth(), size
.GetHeight(), false);
622 unsigned char r
= (unsigned char)r_
;
623 unsigned char g
= (unsigned char)g_
;
624 unsigned char b
= (unsigned char)b_
;
625 if ((r_
== -1) && (g_
== -1) && (b_
== -1))
627 GetOrFindMaskColour( &r
, &g
, &b
);
628 image
.SetMaskColour(r
, g
, b
);
631 image
.SetRGB(wxRect(), r
, g
, b
);
633 wxRect
subRect(pos
.x
, pos
.y
, width
, height
);
634 wxRect
finalRect(0, 0, size
.GetWidth(), size
.GetHeight());
636 subRect
.Intersect(finalRect
);
638 if (!subRect
.IsEmpty())
640 if ((subRect
.GetWidth() == width
) && (subRect
.GetHeight() == height
))
641 image
.Paste(*this, pos
.x
, pos
.y
);
643 image
.Paste(GetSubImage(subRect
), pos
.x
, pos
.y
);
649 void wxImage::Paste( const wxImage
&image
, int x
, int y
)
651 wxCHECK_RET( Ok(), wxT("invalid image") );
652 wxCHECK_RET( image
.Ok(), wxT("invalid image") );
656 int width
= image
.GetWidth();
657 int height
= image
.GetHeight();
670 if ((x
+xx
)+width
> M_IMGDATA
->m_width
)
671 width
= M_IMGDATA
->m_width
- (x
+xx
);
672 if ((y
+yy
)+height
> M_IMGDATA
->m_height
)
673 height
= M_IMGDATA
->m_height
- (y
+yy
);
675 if (width
< 1) return;
676 if (height
< 1) return;
678 if ((!HasMask() && !image
.HasMask()) ||
679 (HasMask() && !image
.HasMask()) ||
680 ((HasMask() && image
.HasMask() &&
681 (GetMaskRed()==image
.GetMaskRed()) &&
682 (GetMaskGreen()==image
.GetMaskGreen()) &&
683 (GetMaskBlue()==image
.GetMaskBlue()))))
686 unsigned char* source_data
= image
.GetData() + xx
*3 + yy
*3*image
.GetWidth();
687 int source_step
= image
.GetWidth()*3;
689 unsigned char* target_data
= GetData() + (x
+xx
)*3 + (y
+yy
)*3*M_IMGDATA
->m_width
;
690 int target_step
= M_IMGDATA
->m_width
*3;
691 for (int j
= 0; j
< height
; j
++)
693 memcpy( target_data
, source_data
, width
);
694 source_data
+= source_step
;
695 target_data
+= target_step
;
700 if (!HasMask() && image
.HasMask())
702 unsigned char r
= image
.GetMaskRed();
703 unsigned char g
= image
.GetMaskGreen();
704 unsigned char b
= image
.GetMaskBlue();
707 unsigned char* source_data
= image
.GetData() + xx
*3 + yy
*3*image
.GetWidth();
708 int source_step
= image
.GetWidth()*3;
710 unsigned char* target_data
= GetData() + (x
+xx
)*3 + (y
+yy
)*3*M_IMGDATA
->m_width
;
711 int target_step
= M_IMGDATA
->m_width
*3;
713 for (int j
= 0; j
< height
; j
++)
715 for (int i
= 0; i
< width
; i
+=3)
717 if ((source_data
[i
] != r
) &&
718 (source_data
[i
+1] != g
) &&
719 (source_data
[i
+2] != b
))
721 memcpy( target_data
+i
, source_data
+i
, 3 );
724 source_data
+= source_step
;
725 target_data
+= target_step
;
730 void wxImage::Replace( unsigned char r1
, unsigned char g1
, unsigned char b1
,
731 unsigned char r2
, unsigned char g2
, unsigned char b2
)
733 wxCHECK_RET( Ok(), wxT("invalid image") );
735 unsigned char *data
= GetData();
737 const int w
= GetWidth();
738 const int h
= GetHeight();
740 for (int j
= 0; j
< h
; j
++)
741 for (int i
= 0; i
< w
; i
++)
743 if ((data
[0] == r1
) && (data
[1] == g1
) && (data
[2] == b1
))
753 wxImage
wxImage::ConvertToMono( unsigned char r
, unsigned char g
, unsigned char b
) const
757 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
759 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false );
761 unsigned char *data
= image
.GetData();
763 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
765 if (M_IMGDATA
->m_hasMask
)
767 if (M_IMGDATA
->m_maskRed
== r
&& M_IMGDATA
->m_maskGreen
== g
&&
768 M_IMGDATA
->m_maskBlue
== b
)
769 image
.SetMaskColour( 255, 255, 255 );
771 image
.SetMaskColour( 0, 0, 0 );
774 long size
= M_IMGDATA
->m_height
* M_IMGDATA
->m_width
;
776 unsigned char *srcd
= M_IMGDATA
->m_data
;
777 unsigned char *tard
= image
.GetData();
779 for ( long i
= 0; i
< size
; i
++, srcd
+= 3, tard
+= 3 )
781 if (srcd
[0] == r
&& srcd
[1] == g
&& srcd
[2] == b
)
782 tard
[0] = tard
[1] = tard
[2] = 255;
784 tard
[0] = tard
[1] = tard
[2] = 0;
790 long wxImage::XYToIndex(int x
, int y
) const
794 x
< M_IMGDATA
->m_width
&& y
< M_IMGDATA
->m_height
)
796 return y
*M_IMGDATA
->m_width
+ x
;
802 void wxImage::SetRGB( int x
, int y
, unsigned char r
, unsigned char g
, unsigned char b
)
804 long pos
= XYToIndex(x
, y
);
805 wxCHECK_RET( pos
!= -1, wxT("invalid image coordinates") );
809 M_IMGDATA
->m_data
[ pos
] = r
;
810 M_IMGDATA
->m_data
[ pos
+1 ] = g
;
811 M_IMGDATA
->m_data
[ pos
+2 ] = b
;
814 void wxImage::SetRGB( const wxRect
& rect_
, unsigned char r
, unsigned char g
, unsigned char b
)
816 wxCHECK_RET( Ok(), wxT("invalid image") );
819 wxRect
imageRect(0, 0, GetWidth(), GetHeight());
820 if ( rect
== wxRect() )
826 wxCHECK_RET( imageRect
.Inside(rect
.GetTopLeft()) &&
827 imageRect
.Inside(rect
.GetBottomRight()),
828 wxT("invalid bounding rectangle") );
831 int x1
= rect
.GetLeft(),
833 x2
= rect
.GetRight() + 1,
834 y2
= rect
.GetBottom() + 1;
836 unsigned char *data
wxDUMMY_INITIALIZE(NULL
);
837 int x
, y
, width
= GetWidth();
838 for (y
= y1
; y
< y2
; y
++)
840 data
= M_IMGDATA
->m_data
+ (y
*width
+ x1
)*3;
841 for (x
= x1
; x
< x2
; x
++)
850 unsigned char wxImage::GetRed( int x
, int y
) const
852 long pos
= XYToIndex(x
, y
);
853 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
857 return M_IMGDATA
->m_data
[pos
];
860 unsigned char wxImage::GetGreen( int x
, int y
) const
862 long pos
= XYToIndex(x
, y
);
863 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
867 return M_IMGDATA
->m_data
[pos
+1];
870 unsigned char wxImage::GetBlue( int x
, int y
) const
872 long pos
= XYToIndex(x
, y
);
873 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
877 return M_IMGDATA
->m_data
[pos
+2];
880 bool wxImage::Ok() const
882 // image of 0 width or height can't be considered ok - at least because it
883 // causes crashes in ConvertToBitmap() if we don't catch it in time
884 wxImageRefData
*data
= M_IMGDATA
;
885 return data
&& data
->m_ok
&& data
->m_width
&& data
->m_height
;
888 unsigned char *wxImage::GetData() const
890 wxCHECK_MSG( Ok(), (unsigned char *)NULL
, wxT("invalid image") );
892 return M_IMGDATA
->m_data
;
895 void wxImage::SetData( unsigned char *data
, bool static_data
)
897 wxCHECK_RET( Ok(), wxT("invalid image") );
899 wxImageRefData
*newRefData
= new wxImageRefData();
901 newRefData
->m_width
= M_IMGDATA
->m_width
;
902 newRefData
->m_height
= M_IMGDATA
->m_height
;
903 newRefData
->m_data
= data
;
904 newRefData
->m_ok
= true;
905 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
906 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
907 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
908 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
909 newRefData
->m_static
= static_data
;
913 m_refData
= newRefData
;
916 void wxImage::SetData( unsigned char *data
, int new_width
, int new_height
, bool static_data
)
918 wxImageRefData
*newRefData
= new wxImageRefData();
922 newRefData
->m_width
= new_width
;
923 newRefData
->m_height
= new_height
;
924 newRefData
->m_data
= data
;
925 newRefData
->m_ok
= true;
926 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
927 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
928 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
929 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
933 newRefData
->m_width
= new_width
;
934 newRefData
->m_height
= new_height
;
935 newRefData
->m_data
= data
;
936 newRefData
->m_ok
= true;
938 newRefData
->m_static
= static_data
;
942 m_refData
= newRefData
;
945 // ----------------------------------------------------------------------------
946 // alpha channel support
947 // ----------------------------------------------------------------------------
949 void wxImage::SetAlpha(int x
, int y
, unsigned char alpha
)
951 wxCHECK_RET( HasAlpha(), wxT("no alpha channel") );
953 long pos
= XYToIndex(x
, y
);
954 wxCHECK_RET( pos
!= -1, wxT("invalid image coordinates") );
956 M_IMGDATA
->m_alpha
[pos
] = alpha
;
959 unsigned char wxImage::GetAlpha(int x
, int y
) const
961 wxCHECK_MSG( HasAlpha(), 0, wxT("no alpha channel") );
963 long pos
= XYToIndex(x
, y
);
964 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
966 return M_IMGDATA
->m_alpha
[pos
];
970 wxImage::ConvertColourToAlpha(unsigned char r
, unsigned char g
, unsigned char b
)
974 const int w
= M_IMGDATA
->m_width
;
975 const int h
= M_IMGDATA
->m_height
;
977 unsigned char *alpha
= GetAlpha();
978 unsigned char *data
= GetData();
980 for ( int y
= 0; y
< h
; y
++ )
982 for ( int x
= 0; x
< w
; x
++ )
994 void wxImage::SetAlpha( unsigned char *alpha
, bool static_data
)
996 wxCHECK_RET( Ok(), wxT("invalid image") );
1000 alpha
= (unsigned char *)malloc(M_IMGDATA
->m_width
*M_IMGDATA
->m_height
);
1003 free(M_IMGDATA
->m_alpha
);
1004 M_IMGDATA
->m_alpha
= alpha
;
1005 M_IMGDATA
->m_staticAlpha
= static_data
;
1008 unsigned char *wxImage::GetAlpha() const
1010 wxCHECK_MSG( Ok(), (unsigned char *)NULL
, wxT("invalid image") );
1012 return M_IMGDATA
->m_alpha
;
1015 void wxImage::InitAlpha()
1017 wxCHECK_RET( !HasAlpha(), wxT("image already has an alpha channel") );
1019 // initialize memory for alpha channel
1022 unsigned char *alpha
= M_IMGDATA
->m_alpha
;
1023 const size_t lenAlpha
= M_IMGDATA
->m_width
* M_IMGDATA
->m_height
;
1025 static const unsigned char ALPHA_TRANSPARENT
= 0;
1026 static const unsigned char ALPHA_OPAQUE
= 0xff;
1029 // use the mask to initialize the alpha channel.
1030 const unsigned char * const alphaEnd
= alpha
+ lenAlpha
;
1032 const unsigned char mr
= M_IMGDATA
->m_maskRed
;
1033 const unsigned char mg
= M_IMGDATA
->m_maskGreen
;
1034 const unsigned char mb
= M_IMGDATA
->m_maskBlue
;
1035 for ( unsigned char *src
= M_IMGDATA
->m_data
;
1039 *alpha
= (src
[0] == mr
&& src
[1] == mg
&& src
[2] == mb
)
1044 M_IMGDATA
->m_hasMask
= false;
1048 // make the image fully opaque
1049 memset(alpha
, ALPHA_OPAQUE
, lenAlpha
);
1053 // ----------------------------------------------------------------------------
1055 // ----------------------------------------------------------------------------
1057 void wxImage::SetMaskColour( unsigned char r
, unsigned char g
, unsigned char b
)
1059 wxCHECK_RET( Ok(), wxT("invalid image") );
1061 M_IMGDATA
->m_maskRed
= r
;
1062 M_IMGDATA
->m_maskGreen
= g
;
1063 M_IMGDATA
->m_maskBlue
= b
;
1064 M_IMGDATA
->m_hasMask
= true;
1067 bool wxImage::GetOrFindMaskColour( unsigned char *r
, unsigned char *g
, unsigned char *b
) const
1069 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1071 if (M_IMGDATA
->m_hasMask
)
1073 if (r
) *r
= M_IMGDATA
->m_maskRed
;
1074 if (g
) *g
= M_IMGDATA
->m_maskGreen
;
1075 if (b
) *b
= M_IMGDATA
->m_maskBlue
;
1080 FindFirstUnusedColour(r
, g
, b
);
1085 unsigned char wxImage::GetMaskRed() const
1087 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1089 return M_IMGDATA
->m_maskRed
;
1092 unsigned char wxImage::GetMaskGreen() const
1094 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1096 return M_IMGDATA
->m_maskGreen
;
1099 unsigned char wxImage::GetMaskBlue() const
1101 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1103 return M_IMGDATA
->m_maskBlue
;
1106 void wxImage::SetMask( bool mask
)
1108 wxCHECK_RET( Ok(), wxT("invalid image") );
1110 M_IMGDATA
->m_hasMask
= mask
;
1113 bool wxImage::HasMask() const
1115 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1117 return M_IMGDATA
->m_hasMask
;
1120 int wxImage::GetWidth() const
1122 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1124 return M_IMGDATA
->m_width
;
1127 int wxImage::GetHeight() const
1129 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1131 return M_IMGDATA
->m_height
;
1134 bool wxImage::SetMaskFromImage(const wxImage
& mask
,
1135 unsigned char mr
, unsigned char mg
, unsigned char mb
)
1137 // check that the images are the same size
1138 if ( (M_IMGDATA
->m_height
!= mask
.GetHeight() ) || (M_IMGDATA
->m_width
!= mask
.GetWidth () ) )
1140 wxLogError( _("Image and mask have different sizes.") );
1144 // find unused colour
1145 unsigned char r
,g
,b
;
1146 if (!FindFirstUnusedColour(&r
, &g
, &b
))
1148 wxLogError( _("No unused colour in image being masked.") );
1152 unsigned char *imgdata
= GetData();
1153 unsigned char *maskdata
= mask
.GetData();
1155 const int w
= GetWidth();
1156 const int h
= GetHeight();
1158 for (int j
= 0; j
< h
; j
++)
1160 for (int i
= 0; i
< w
; i
++)
1162 if ((maskdata
[0] == mr
) && (maskdata
[1] == mg
) && (maskdata
[2] == mb
))
1173 SetMaskColour(r
, g
, b
);
1179 bool wxImage::ConvertAlphaToMask(unsigned char threshold
)
1184 unsigned char mr
, mg
, mb
;
1185 if (!FindFirstUnusedColour(&mr
, &mg
, &mb
))
1187 wxLogError( _("No unused colour in image being masked.") );
1192 SetMaskColour(mr
, mg
, mb
);
1194 unsigned char *imgdata
= GetData();
1195 unsigned char *alphadata
= GetAlpha();
1198 int h
= GetHeight();
1200 for (int y
= 0; y
< h
; y
++)
1202 for (int x
= 0; x
< w
; x
++, imgdata
+= 3, alphadata
++)
1204 if (*alphadata
< threshold
)
1213 free(M_IMGDATA
->m_alpha
);
1214 M_IMGDATA
->m_alpha
= NULL
;
1221 // Palette functions
1223 bool wxImage::HasPalette() const
1228 return M_IMGDATA
->m_palette
.Ok();
1231 const wxPalette
& wxImage::GetPalette() const
1233 wxCHECK_MSG( Ok(), wxNullPalette
, wxT("invalid image") );
1235 return M_IMGDATA
->m_palette
;
1238 void wxImage::SetPalette(const wxPalette
& palette
)
1240 wxCHECK_RET( Ok(), wxT("invalid image") );
1242 M_IMGDATA
->m_palette
= palette
;
1245 #endif // wxUSE_PALETTE
1247 // Option functions (arbitrary name/value mapping)
1248 void wxImage::SetOption(const wxString
& name
, const wxString
& value
)
1250 wxCHECK_RET( Ok(), wxT("invalid image") );
1252 int idx
= M_IMGDATA
->m_optionNames
.Index(name
, false);
1253 if (idx
== wxNOT_FOUND
)
1255 M_IMGDATA
->m_optionNames
.Add(name
);
1256 M_IMGDATA
->m_optionValues
.Add(value
);
1260 M_IMGDATA
->m_optionNames
[idx
] = name
;
1261 M_IMGDATA
->m_optionValues
[idx
] = value
;
1265 void wxImage::SetOption(const wxString
& name
, int value
)
1268 valStr
.Printf(wxT("%d"), value
);
1269 SetOption(name
, valStr
);
1272 wxString
wxImage::GetOption(const wxString
& name
) const
1274 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid image") );
1276 int idx
= M_IMGDATA
->m_optionNames
.Index(name
, false);
1277 if (idx
== wxNOT_FOUND
)
1278 return wxEmptyString
;
1280 return M_IMGDATA
->m_optionValues
[idx
];
1283 int wxImage::GetOptionInt(const wxString
& name
) const
1285 return wxAtoi(GetOption(name
));
1288 bool wxImage::HasOption(const wxString
& name
) const
1290 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1292 return (M_IMGDATA
->m_optionNames
.Index(name
, false) != wxNOT_FOUND
);
1295 bool wxImage::LoadFile( const wxString
& filename
, long type
, int index
)
1298 if (wxFileExists(filename
))
1300 wxFileInputStream
stream(filename
);
1301 wxBufferedInputStream
bstream( stream
);
1302 return LoadFile(bstream
, type
, index
);
1306 wxLogError( _("Can't load image from file '%s': file does not exist."), filename
.c_str() );
1310 #else // !wxUSE_STREAMS
1312 #endif // wxUSE_STREAMS
1315 bool wxImage::LoadFile( const wxString
& filename
, const wxString
& mimetype
, int index
)
1318 if (wxFileExists(filename
))
1320 wxFileInputStream
stream(filename
);
1321 wxBufferedInputStream
bstream( stream
);
1322 return LoadFile(bstream
, mimetype
, index
);
1326 wxLogError( _("Can't load image from file '%s': file does not exist."), filename
.c_str() );
1330 #else // !wxUSE_STREAMS
1332 #endif // wxUSE_STREAMS
1337 bool wxImage::SaveFile( const wxString
& filename
) const
1339 wxString ext
= filename
.AfterLast('.').Lower();
1341 wxImageHandler
* pHandler
= FindHandler(ext
, -1);
1344 SaveFile(filename
, pHandler
->GetType());
1348 wxLogError(_("Can't save image to file '%s': unknown extension."), filename
.c_str());
1353 bool wxImage::SaveFile( const wxString
& filename
, int type
) const
1356 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1358 ((wxImage
*)this)->SetOption(wxIMAGE_OPTION_FILENAME
, filename
);
1360 wxFileOutputStream
stream(filename
);
1362 if ( stream
.IsOk() )
1364 wxBufferedOutputStream
bstream( stream
);
1365 return SaveFile(bstream
, type
);
1367 #endif // wxUSE_STREAMS
1372 bool wxImage::SaveFile( const wxString
& filename
, const wxString
& mimetype
) const
1375 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1377 ((wxImage
*)this)->SetOption(wxIMAGE_OPTION_FILENAME
, filename
);
1379 wxFileOutputStream
stream(filename
);
1381 if ( stream
.IsOk() )
1383 wxBufferedOutputStream
bstream( stream
);
1384 return SaveFile(bstream
, mimetype
);
1386 #endif // wxUSE_STREAMS
1391 bool wxImage::CanRead( const wxString
&name
)
1394 wxFileInputStream
stream(name
);
1395 return CanRead(stream
);
1401 int wxImage::GetImageCount( const wxString
&name
, long type
)
1404 wxFileInputStream
stream(name
);
1406 return GetImageCount(stream
, type
);
1414 bool wxImage::CanRead( wxInputStream
&stream
)
1416 const wxList
& list
= GetHandlers();
1418 for ( wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext() )
1420 wxImageHandler
*handler
=(wxImageHandler
*)node
->GetData();
1421 if (handler
->CanRead( stream
))
1428 int wxImage::GetImageCount( wxInputStream
&stream
, long type
)
1430 wxImageHandler
*handler
;
1432 if ( type
== wxBITMAP_TYPE_ANY
)
1434 wxList
&list
=GetHandlers();
1436 for (wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext())
1438 handler
=(wxImageHandler
*)node
->GetData();
1439 if ( handler
->CanRead(stream
) )
1440 return handler
->GetImageCount(stream
);
1444 wxLogWarning(_("No handler found for image type."));
1448 handler
= FindHandler(type
);
1452 wxLogWarning(_("No image handler for type %d defined."), type
);
1456 if ( handler
->CanRead(stream
) )
1458 return handler
->GetImageCount(stream
);
1462 wxLogError(_("Image file is not of type %d."), type
);
1467 bool wxImage::LoadFile( wxInputStream
& stream
, long type
, int index
)
1471 m_refData
= new wxImageRefData
;
1473 wxImageHandler
*handler
;
1475 if ( type
== wxBITMAP_TYPE_ANY
)
1477 wxList
&list
=GetHandlers();
1479 for ( wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext() )
1481 handler
=(wxImageHandler
*)node
->GetData();
1482 if ( handler
->CanRead(stream
) )
1483 return handler
->LoadFile(this, stream
, true/*verbose*/, index
);
1487 wxLogWarning( _("No handler found for image type.") );
1491 handler
= FindHandler(type
);
1495 wxLogWarning( _("No image handler for type %d defined."), type
);
1500 return handler
->LoadFile(this, stream
, true/*verbose*/, index
);
1503 bool wxImage::LoadFile( wxInputStream
& stream
, const wxString
& mimetype
, int index
)
1507 m_refData
= new wxImageRefData
;
1509 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
1513 wxLogWarning( _("No image handler for type %s defined."), mimetype
.GetData() );
1518 return handler
->LoadFile( this, stream
, true/*verbose*/, index
);
1521 bool wxImage::SaveFile( wxOutputStream
& stream
, int type
) const
1523 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1525 wxImageHandler
*handler
= FindHandler(type
);
1528 wxLogWarning( _("No image handler for type %d defined."), type
);
1533 return handler
->SaveFile( (wxImage
*)this, stream
);
1536 bool wxImage::SaveFile( wxOutputStream
& stream
, const wxString
& mimetype
) const
1538 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1540 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
1543 wxLogWarning( _("No image handler for type %s defined."), mimetype
.GetData() );
1548 return handler
->SaveFile( (wxImage
*)this, stream
);
1550 #endif // wxUSE_STREAMS
1552 void wxImage::AddHandler( wxImageHandler
*handler
)
1554 // Check for an existing handler of the type being added.
1555 if (FindHandler( handler
->GetType() ) == 0)
1557 sm_handlers
.Append( handler
);
1561 // This is not documented behaviour, merely the simplest 'fix'
1562 // for preventing duplicate additions. If someone ever has
1563 // a good reason to add and remove duplicate handlers (and they
1564 // may) we should probably refcount the duplicates.
1565 // also an issue in InsertHandler below.
1567 wxLogDebug( _T("Adding duplicate image handler for '%s'"),
1568 handler
->GetName().c_str() );
1573 void wxImage::InsertHandler( wxImageHandler
*handler
)
1575 // Check for an existing handler of the type being added.
1576 if (FindHandler( handler
->GetType() ) == 0)
1578 sm_handlers
.Insert( handler
);
1582 // see AddHandler for additional comments.
1583 wxLogDebug( _T("Inserting duplicate image handler for '%s'"),
1584 handler
->GetName().c_str() );
1589 bool wxImage::RemoveHandler( const wxString
& name
)
1591 wxImageHandler
*handler
= FindHandler(name
);
1594 sm_handlers
.DeleteObject(handler
);
1602 wxImageHandler
*wxImage::FindHandler( const wxString
& name
)
1604 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
1607 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1608 if (handler
->GetName().Cmp(name
) == 0) return handler
;
1610 node
= node
->GetNext();
1615 wxImageHandler
*wxImage::FindHandler( const wxString
& extension
, long bitmapType
)
1617 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
1620 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1621 if ( (handler
->GetExtension().Cmp(extension
) == 0) &&
1622 (bitmapType
== -1 || handler
->GetType() == bitmapType
) )
1624 node
= node
->GetNext();
1629 wxImageHandler
*wxImage::FindHandler( long bitmapType
)
1631 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
1634 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1635 if (handler
->GetType() == bitmapType
) return handler
;
1636 node
= node
->GetNext();
1641 wxImageHandler
*wxImage::FindHandlerMime( const wxString
& mimetype
)
1643 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
1646 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1647 if (handler
->GetMimeType().IsSameAs(mimetype
, false)) return handler
;
1648 node
= node
->GetNext();
1653 void wxImage::InitStandardHandlers()
1656 AddHandler(new wxBMPHandler
);
1657 #endif // wxUSE_STREAMS
1660 void wxImage::CleanUpHandlers()
1662 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
1665 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1666 wxList::compatibility_iterator next
= node
->GetNext();
1671 sm_handlers
.Clear();
1674 wxString
wxImage::GetImageExtWildcard()
1678 wxList
& Handlers
= wxImage::GetHandlers();
1679 wxList::compatibility_iterator Node
= Handlers
.GetFirst();
1682 wxImageHandler
* Handler
= (wxImageHandler
*)Node
->GetData();
1683 fmts
+= wxT("*.") + Handler
->GetExtension();
1684 Node
= Node
->GetNext();
1685 if ( Node
) fmts
+= wxT(";");
1688 return wxT("(") + fmts
+ wxT(")|") + fmts
;
1691 //-----------------------------------------------------------------------------
1693 //-----------------------------------------------------------------------------
1695 IMPLEMENT_ABSTRACT_CLASS(wxImageHandler
,wxObject
)
1698 bool wxImageHandler::LoadFile( wxImage
*WXUNUSED(image
), wxInputStream
& WXUNUSED(stream
), bool WXUNUSED(verbose
), int WXUNUSED(index
) )
1703 bool wxImageHandler::SaveFile( wxImage
*WXUNUSED(image
), wxOutputStream
& WXUNUSED(stream
), bool WXUNUSED(verbose
) )
1708 int wxImageHandler::GetImageCount( wxInputStream
& WXUNUSED(stream
) )
1713 bool wxImageHandler::CanRead( const wxString
& name
)
1715 if (wxFileExists(name
))
1717 wxFileInputStream
stream(name
);
1718 return CanRead(stream
);
1721 wxLogError( _("Can't check image format of file '%s': file does not exist."), name
.c_str() );
1726 bool wxImageHandler::CallDoCanRead(wxInputStream
& stream
)
1728 wxFileOffset posOld
= stream
.TellI();
1729 if ( posOld
== wxInvalidOffset
)
1731 // can't test unseekable stream
1735 bool ok
= DoCanRead(stream
);
1737 // restore the old position to be able to test other formats and so on
1738 if ( stream
.SeekI(posOld
) == wxInvalidOffset
)
1740 wxLogDebug(_T("Failed to rewind the stream in wxImageHandler!"));
1742 // reading would fail anyhow as we're not at the right position
1749 #endif // wxUSE_STREAMS
1751 // ----------------------------------------------------------------------------
1752 // image histogram stuff
1753 // ----------------------------------------------------------------------------
1756 wxImageHistogram::FindFirstUnusedColour(unsigned char *r
,
1761 unsigned char g2
) const
1763 unsigned long key
= MakeKey(r2
, g2
, b2
);
1765 while ( find(key
) != end() )
1767 // color already used
1779 wxLogError(_("No unused colour in image.") );
1785 key
= MakeKey(r2
, g2
, b2
);
1799 wxImage::FindFirstUnusedColour(unsigned char *r
,
1804 unsigned char g2
) const
1806 wxImageHistogram histogram
;
1808 ComputeHistogram(histogram
);
1810 return histogram
.FindFirstUnusedColour(r
, g
, b
, r2
, g2
, b2
);
1816 // Counts and returns the number of different colours. Optionally stops
1817 // when it exceeds 'stopafter' different colours. This is useful, for
1818 // example, to see if the image can be saved as 8-bit (256 colour or
1819 // less, in this case it would be invoked as CountColours(256)). Default
1820 // value for stopafter is -1 (don't care).
1822 unsigned long wxImage::CountColours( unsigned long stopafter
) const
1826 unsigned char r
, g
, b
;
1828 unsigned long size
, nentries
, key
;
1831 size
= GetWidth() * GetHeight();
1834 for (unsigned long j
= 0; (j
< size
) && (nentries
<= stopafter
) ; j
++)
1839 key
= wxImageHistogram::MakeKey(r
, g
, b
);
1841 if (h
.Get(key
) == NULL
)
1852 unsigned long wxImage::ComputeHistogram( wxImageHistogram
&h
) const
1854 unsigned char *p
= GetData();
1855 unsigned long nentries
= 0;
1859 const unsigned long size
= GetWidth() * GetHeight();
1861 unsigned char r
, g
, b
;
1862 for ( unsigned long n
= 0; n
< size
; n
++ )
1868 wxImageHistogramEntry
& entry
= h
[wxImageHistogram::MakeKey(r
, g
, b
)];
1870 if ( entry
.value
++ == 0 )
1871 entry
.index
= nentries
++;
1878 * Rotation code by Carlos Moreno
1881 // GRG: I've removed wxRotationPoint - we already have wxRealPoint which
1882 // does exactly the same thing. And I also got rid of wxRotationPixel
1883 // bacause of potential problems in architectures where alignment
1884 // is an issue, so I had to rewrite parts of the code.
1886 static const double gs_Epsilon
= 1e-10;
1888 static inline int wxCint (double x
)
1890 return (x
> 0) ? (int) (x
+ 0.5) : (int) (x
- 0.5);
1894 // Auxiliary function to rotate a point (x,y) with respect to point p0
1895 // make it inline and use a straight return to facilitate optimization
1896 // also, the function receives the sine and cosine of the angle to avoid
1897 // repeating the time-consuming calls to these functions -- sin/cos can
1898 // be computed and stored in the calling function.
1900 inline wxRealPoint
rotated_point (const wxRealPoint
& p
, double cos_angle
, double sin_angle
, const wxRealPoint
& p0
)
1902 return wxRealPoint (p0
.x
+ (p
.x
- p0
.x
) * cos_angle
- (p
.y
- p0
.y
) * sin_angle
,
1903 p0
.y
+ (p
.y
- p0
.y
) * cos_angle
+ (p
.x
- p0
.x
) * sin_angle
);
1906 inline wxRealPoint
rotated_point (double x
, double y
, double cos_angle
, double sin_angle
, const wxRealPoint
& p0
)
1908 return rotated_point (wxRealPoint(x
,y
), cos_angle
, sin_angle
, p0
);
1911 wxImage
wxImage::Rotate(double angle
, const wxPoint
& centre_of_rotation
, bool interpolating
, wxPoint
* offset_after_rotation
) const
1914 angle
= -angle
; // screen coordinates are a mirror image of "real" coordinates
1916 bool has_alpha
= HasAlpha();
1918 // Create pointer-based array to accelerate access to wxImage's data
1919 unsigned char ** data
= new unsigned char * [GetHeight()];
1920 data
[0] = GetData();
1921 for (i
= 1; i
< GetHeight(); i
++)
1922 data
[i
] = data
[i
- 1] + (3 * GetWidth());
1924 // Same for alpha channel
1925 unsigned char ** alpha
= NULL
;
1928 alpha
= new unsigned char * [GetHeight()];
1929 alpha
[0] = GetAlpha();
1930 for (i
= 1; i
< GetHeight(); i
++)
1931 alpha
[i
] = alpha
[i
- 1] + GetWidth();
1934 // precompute coefficients for rotation formula
1935 // (sine and cosine of the angle)
1936 const double cos_angle
= cos(angle
);
1937 const double sin_angle
= sin(angle
);
1939 // Create new Image to store the result
1940 // First, find rectangle that covers the rotated image; to do that,
1941 // rotate the four corners
1943 const wxRealPoint
p0(centre_of_rotation
.x
, centre_of_rotation
.y
);
1945 wxRealPoint p1
= rotated_point (0, 0, cos_angle
, sin_angle
, p0
);
1946 wxRealPoint p2
= rotated_point (0, GetHeight(), cos_angle
, sin_angle
, p0
);
1947 wxRealPoint p3
= rotated_point (GetWidth(), 0, cos_angle
, sin_angle
, p0
);
1948 wxRealPoint p4
= rotated_point (GetWidth(), GetHeight(), cos_angle
, sin_angle
, p0
);
1950 int x1
= (int) floor (wxMin (wxMin(p1
.x
, p2
.x
), wxMin(p3
.x
, p4
.x
)));
1951 int y1
= (int) floor (wxMin (wxMin(p1
.y
, p2
.y
), wxMin(p3
.y
, p4
.y
)));
1952 int x2
= (int) ceil (wxMax (wxMax(p1
.x
, p2
.x
), wxMax(p3
.x
, p4
.x
)));
1953 int y2
= (int) ceil (wxMax (wxMax(p1
.y
, p2
.y
), wxMax(p3
.y
, p4
.y
)));
1955 // Create rotated image
1956 wxImage
rotated (x2
- x1
+ 1, y2
- y1
+ 1, false);
1957 // With alpha channel
1961 if (offset_after_rotation
!= NULL
)
1963 *offset_after_rotation
= wxPoint (x1
, y1
);
1966 // GRG: The rotated (destination) image is always accessed
1967 // sequentially, so there is no need for a pointer-based
1968 // array here (and in fact it would be slower).
1970 unsigned char * dst
= rotated
.GetData();
1972 unsigned char * alpha_dst
= NULL
;
1974 alpha_dst
= rotated
.GetAlpha();
1976 // GRG: if the original image has a mask, use its RGB values
1977 // as the blank pixel, else, fall back to default (black).
1979 unsigned char blank_r
= 0;
1980 unsigned char blank_g
= 0;
1981 unsigned char blank_b
= 0;
1985 blank_r
= GetMaskRed();
1986 blank_g
= GetMaskGreen();
1987 blank_b
= GetMaskBlue();
1988 rotated
.SetMaskColour( blank_r
, blank_g
, blank_b
);
1991 // Now, for each point of the rotated image, find where it came from, by
1992 // performing an inverse rotation (a rotation of -angle) and getting the
1993 // pixel at those coordinates
1995 // GRG: I've taken the (interpolating) test out of the loops, so that
1996 // it is done only once, instead of repeating it for each pixel.
2001 for (int y
= 0; y
< rotated
.GetHeight(); y
++)
2003 for (x
= 0; x
< rotated
.GetWidth(); x
++)
2005 wxRealPoint src
= rotated_point (x
+ x1
, y
+ y1
, cos_angle
, -sin_angle
, p0
);
2007 if (-0.25 < src
.x
&& src
.x
< GetWidth() - 0.75 &&
2008 -0.25 < src
.y
&& src
.y
< GetHeight() - 0.75)
2010 // interpolate using the 4 enclosing grid-points. Those
2011 // points can be obtained using floor and ceiling of the
2012 // exact coordinates of the point
2013 // C.M. 2000-02-17: when the point is near the border, special care is required.
2017 if (0 < src
.x
&& src
.x
< GetWidth() - 1)
2019 x1
= wxCint(floor(src
.x
));
2020 x2
= wxCint(ceil(src
.x
));
2022 else // else means that x is near one of the borders (0 or width-1)
2024 x1
= x2
= wxCint (src
.x
);
2027 if (0 < src
.y
&& src
.y
< GetHeight() - 1)
2029 y1
= wxCint(floor(src
.y
));
2030 y2
= wxCint(ceil(src
.y
));
2034 y1
= y2
= wxCint (src
.y
);
2037 // get four points and the distances (square of the distance,
2038 // for efficiency reasons) for the interpolation formula
2040 // GRG: Do not calculate the points until they are
2041 // really needed -- this way we can calculate
2042 // just one, instead of four, if d1, d2, d3
2043 // or d4 are < gs_Epsilon
2045 const double d1
= (src
.x
- x1
) * (src
.x
- x1
) + (src
.y
- y1
) * (src
.y
- y1
);
2046 const double d2
= (src
.x
- x2
) * (src
.x
- x2
) + (src
.y
- y1
) * (src
.y
- y1
);
2047 const double d3
= (src
.x
- x2
) * (src
.x
- x2
) + (src
.y
- y2
) * (src
.y
- y2
);
2048 const double d4
= (src
.x
- x1
) * (src
.x
- x1
) + (src
.y
- y2
) * (src
.y
- y2
);
2050 // Now interpolate as a weighted average of the four surrounding
2051 // points, where the weights are the distances to each of those points
2053 // If the point is exactly at one point of the grid of the source
2054 // image, then don't interpolate -- just assign the pixel
2056 if (d1
< gs_Epsilon
) // d1,d2,d3,d4 are positive -- no need for abs()
2058 unsigned char *p
= data
[y1
] + (3 * x1
);
2065 unsigned char *p
= alpha
[y1
] + x1
;
2066 *(alpha_dst
++) = *p
;
2069 else if (d2
< gs_Epsilon
)
2071 unsigned char *p
= data
[y1
] + (3 * x2
);
2078 unsigned char *p
= alpha
[y1
] + x2
;
2079 *(alpha_dst
++) = *p
;
2082 else if (d3
< gs_Epsilon
)
2084 unsigned char *p
= data
[y2
] + (3 * x2
);
2091 unsigned char *p
= alpha
[y2
] + x2
;
2092 *(alpha_dst
++) = *p
;
2095 else if (d4
< gs_Epsilon
)
2097 unsigned char *p
= data
[y2
] + (3 * x1
);
2104 unsigned char *p
= alpha
[y2
] + x1
;
2105 *(alpha_dst
++) = *p
;
2110 // weights for the weighted average are proportional to the inverse of the distance
2111 unsigned char *v1
= data
[y1
] + (3 * x1
);
2112 unsigned char *v2
= data
[y1
] + (3 * x2
);
2113 unsigned char *v3
= data
[y2
] + (3 * x2
);
2114 unsigned char *v4
= data
[y2
] + (3 * x1
);
2116 const double w1
= 1/d1
, w2
= 1/d2
, w3
= 1/d3
, w4
= 1/d4
;
2120 *(dst
++) = (unsigned char)
2121 ( (w1
* *(v1
++) + w2
* *(v2
++) +
2122 w3
* *(v3
++) + w4
* *(v4
++)) /
2123 (w1
+ w2
+ w3
+ w4
) );
2124 *(dst
++) = (unsigned char)
2125 ( (w1
* *(v1
++) + w2
* *(v2
++) +
2126 w3
* *(v3
++) + w4
* *(v4
++)) /
2127 (w1
+ w2
+ w3
+ w4
) );
2128 *(dst
++) = (unsigned char)
2129 ( (w1
* *v1
+ w2
* *v2
+
2130 w3
* *v3
+ w4
* *v4
) /
2131 (w1
+ w2
+ w3
+ w4
) );
2135 unsigned char *v1
= alpha
[y1
] + (x1
);
2136 unsigned char *v2
= alpha
[y1
] + (x2
);
2137 unsigned char *v3
= alpha
[y2
] + (x2
);
2138 unsigned char *v4
= alpha
[y2
] + (x1
);
2140 *(alpha_dst
++) = (unsigned char)
2141 ( (w1
* *v1
+ w2
* *v2
+
2142 w3
* *v3
+ w4
* *v4
) /
2143 (w1
+ w2
+ w3
+ w4
) );
2159 else // not interpolating
2161 for (int y
= 0; y
< rotated
.GetHeight(); y
++)
2163 for (x
= 0; x
< rotated
.GetWidth(); x
++)
2165 wxRealPoint src
= rotated_point (x
+ x1
, y
+ y1
, cos_angle
, -sin_angle
, p0
);
2167 const int xs
= wxCint (src
.x
); // wxCint rounds to the
2168 const int ys
= wxCint (src
.y
); // closest integer
2170 if (0 <= xs
&& xs
< GetWidth() &&
2171 0 <= ys
&& ys
< GetHeight())
2173 unsigned char *p
= data
[ys
] + (3 * xs
);
2180 unsigned char *p
= alpha
[ys
] + (xs
);
2181 *(alpha_dst
++) = *p
;
2191 *(alpha_dst
++) = 255;
2209 // A module to allow wxImage initialization/cleanup
2210 // without calling these functions from app.cpp or from
2211 // the user's application.
2213 class wxImageModule
: public wxModule
2215 DECLARE_DYNAMIC_CLASS(wxImageModule
)
2218 bool OnInit() { wxImage::InitStandardHandlers(); return true; };
2219 void OnExit() { wxImage::CleanUpHandlers(); };
2222 IMPLEMENT_DYNAMIC_CLASS(wxImageModule
, wxModule
)
2225 #endif // wxUSE_IMAGE