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"
46 //-----------------------------------------------------------------------------
48 //-----------------------------------------------------------------------------
50 class wxImageRefData
: public wxObjectRefData
54 virtual ~wxImageRefData();
58 unsigned char *m_data
;
61 unsigned char m_maskRed
,m_maskGreen
,m_maskBlue
;
63 // alpha channel data, may be NULL for the formats without alpha support
64 unsigned char *m_alpha
;
71 #endif // wxUSE_PALETTE
73 wxArrayString m_optionNames
;
74 wxArrayString m_optionValues
;
76 DECLARE_NO_COPY_CLASS(wxImageRefData
)
79 wxImageRefData::wxImageRefData()
84 m_alpha
= (unsigned char *) NULL
;
95 wxImageRefData::~wxImageRefData()
103 wxList
wxImage::sm_handlers
;
107 //-----------------------------------------------------------------------------
109 #define M_IMGDATA ((wxImageRefData *)m_refData)
111 IMPLEMENT_DYNAMIC_CLASS(wxImage
, wxObject
)
113 wxImage::wxImage( int width
, int height
, bool clear
)
115 Create( width
, height
, clear
);
118 wxImage::wxImage( int width
, int height
, unsigned char* data
, bool static_data
)
120 Create( width
, height
, data
, static_data
);
123 wxImage::wxImage( const wxString
& name
, long type
, int index
)
125 LoadFile( name
, type
, index
);
128 wxImage::wxImage( const wxString
& name
, const wxString
& mimetype
, int index
)
130 LoadFile( name
, mimetype
, index
);
134 wxImage::wxImage( wxInputStream
& stream
, long type
, int index
)
136 LoadFile( stream
, type
, index
);
139 wxImage::wxImage( wxInputStream
& stream
, const wxString
& mimetype
, int index
)
141 LoadFile( stream
, mimetype
, index
);
143 #endif // wxUSE_STREAMS
145 wxImage::wxImage( const wxImage
& image
)
151 wxImage::wxImage( const wxImage
* image
)
153 if (image
) Ref(*image
);
156 bool wxImage::Create( int width
, int height
, bool clear
)
160 m_refData
= new wxImageRefData();
162 M_IMGDATA
->m_data
= (unsigned char *) malloc( width
*height
*3 );
163 if (!M_IMGDATA
->m_data
)
170 memset(M_IMGDATA
->m_data
, 0, width
*height
*3);
172 M_IMGDATA
->m_width
= width
;
173 M_IMGDATA
->m_height
= height
;
174 M_IMGDATA
->m_ok
= true;
179 bool wxImage::Create( int width
, int height
, unsigned char* data
, bool static_data
)
183 wxCHECK_MSG( data
, false, _T("NULL data in wxImage::Create") );
185 m_refData
= new wxImageRefData();
187 M_IMGDATA
->m_data
= data
;
188 M_IMGDATA
->m_width
= width
;
189 M_IMGDATA
->m_height
= height
;
190 M_IMGDATA
->m_ok
= true;
191 M_IMGDATA
->m_static
= static_data
;
196 void wxImage::Destroy()
201 wxImage
wxImage::Copy() const
205 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
207 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false );
209 unsigned char *data
= image
.GetData();
211 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
213 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
214 image
.SetMask( M_IMGDATA
->m_hasMask
);
216 memcpy( data
, GetData(), M_IMGDATA
->m_width
*M_IMGDATA
->m_height
*3 );
218 // also copy the image options
219 wxImageRefData
*imgData
= (wxImageRefData
*)image
.m_refData
;
220 imgData
->m_optionNames
= M_IMGDATA
->m_optionNames
;
221 imgData
->m_optionValues
= M_IMGDATA
->m_optionValues
;
226 wxImage
wxImage::ShrinkBy( int xFactor
, int yFactor
) const
228 if( xFactor
== 1 && yFactor
== 1 )
233 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
235 // can't scale to/from 0 size
236 wxCHECK_MSG( (xFactor
> 0) && (yFactor
> 0), image
,
237 wxT("invalid new image size") );
239 long old_height
= M_IMGDATA
->m_height
,
240 old_width
= M_IMGDATA
->m_width
;
242 wxCHECK_MSG( (old_height
> 0) && (old_width
> 0), image
,
243 wxT("invalid old image size") );
245 long width
= old_width
/ xFactor
;
246 long height
= old_height
/ yFactor
;
248 image
.Create( width
, height
, false );
250 char unsigned *data
= image
.GetData();
252 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
254 bool hasMask
= false ;
255 unsigned char maskRed
= 0;
256 unsigned char maskGreen
= 0;
257 unsigned char maskBlue
=0 ;
258 if (M_IMGDATA
->m_hasMask
)
261 maskRed
= M_IMGDATA
->m_maskRed
;
262 maskGreen
= M_IMGDATA
->m_maskGreen
;
263 maskBlue
=M_IMGDATA
->m_maskBlue
;
265 image
.SetMaskColour( M_IMGDATA
->m_maskRed
,
266 M_IMGDATA
->m_maskGreen
,
267 M_IMGDATA
->m_maskBlue
);
269 char unsigned *source_data
= M_IMGDATA
->m_data
;
270 char unsigned *target_data
= data
;
272 for (long y
= 0; y
< height
; y
++)
274 for (long x
= 0; x
< width
; x
++)
276 unsigned long avgRed
= 0 ;
277 unsigned long avgGreen
= 0;
278 unsigned long avgBlue
= 0;
279 unsigned long counter
= 0 ;
281 for ( int y1
= 0 ; y1
< yFactor
; ++y1
)
283 long y_offset
= (y
* yFactor
+ y1
) * old_width
;
284 for ( int x1
= 0 ; x1
< xFactor
; ++x1
)
286 unsigned char *pixel
= source_data
+ 3 * ( y_offset
+ x
* xFactor
+ x1
) ;
287 unsigned char red
= pixel
[0] ;
288 unsigned char green
= pixel
[1] ;
289 unsigned char blue
= pixel
[2] ;
290 if ( !hasMask
|| red
!= maskRed
|| green
!= maskGreen
|| blue
!= maskBlue
)
301 *(target_data
++) = M_IMGDATA
->m_maskRed
;
302 *(target_data
++) = M_IMGDATA
->m_maskGreen
;
303 *(target_data
++) = M_IMGDATA
->m_maskBlue
;
307 *(target_data
++) = (unsigned char)(avgRed
/ counter
);
308 *(target_data
++) = (unsigned char)(avgGreen
/ counter
);
309 *(target_data
++) = (unsigned char)(avgBlue
/ counter
);
314 // In case this is a cursor, make sure the hotspot is scalled accordingly:
315 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
316 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
317 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
))/xFactor
);
318 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
319 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
320 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
))/yFactor
);
325 wxImage
wxImage::Scale( int width
, int height
) const
329 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
331 // can't scale to/from 0 size
332 wxCHECK_MSG( (width
> 0) && (height
> 0), image
,
333 wxT("invalid new image size") );
335 long old_height
= M_IMGDATA
->m_height
,
336 old_width
= M_IMGDATA
->m_width
;
337 wxCHECK_MSG( (old_height
> 0) && (old_width
> 0), image
,
338 wxT("invalid old image size") );
340 if ( old_width
% width
== 0 && old_width
>= width
&&
341 old_height
% height
== 0 && old_height
>= height
)
343 return ShrinkBy( old_width
/ width
, old_height
/ height
) ;
345 image
.Create( width
, height
, false );
347 unsigned char *data
= image
.GetData();
349 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
351 if (M_IMGDATA
->m_hasMask
)
353 image
.SetMaskColour( M_IMGDATA
->m_maskRed
,
354 M_IMGDATA
->m_maskGreen
,
355 M_IMGDATA
->m_maskBlue
);
358 unsigned char *source_data
= M_IMGDATA
->m_data
;
359 unsigned char *target_data
= data
;
361 long x_delta
= (old_width
<<16) / width
;
362 long y_delta
= (old_height
<<16) / height
;
364 unsigned char* dest_pixel
= target_data
;
367 for ( long j
= 0; j
< height
; j
++ )
369 unsigned char* src_line
= &source_data
[(y
>>16)*old_width
*3];
372 for ( long i
= 0; i
< width
; i
++ )
374 unsigned char* src_pixel
= &src_line
[(x
>>16)*3];
375 dest_pixel
[0] = src_pixel
[0];
376 dest_pixel
[1] = src_pixel
[1];
377 dest_pixel
[2] = src_pixel
[2];
385 // In case this is a cursor, make sure the hotspot is scalled accordingly:
386 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
387 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
388 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
)*width
)/old_width
);
389 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
390 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
391 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
)*height
)/old_height
);
396 wxImage
wxImage::Rotate90( bool clockwise
) const
400 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
402 image
.Create( M_IMGDATA
->m_height
, M_IMGDATA
->m_width
, false );
404 unsigned char *data
= image
.GetData();
406 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
408 if (M_IMGDATA
->m_hasMask
)
409 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
411 long height
= M_IMGDATA
->m_height
;
412 long width
= M_IMGDATA
->m_width
;
414 unsigned char *source_data
= M_IMGDATA
->m_data
;
415 unsigned char *target_data
;
417 for (long j
= 0; j
< height
; j
++)
419 for (long i
= 0; i
< width
; i
++)
422 target_data
= data
+ (((i
+1)*height
) - j
- 1)*3;
424 target_data
= data
+ ((height
*(width
-1)) + j
- (i
*height
))*3;
425 memcpy( target_data
, source_data
, 3 );
433 wxImage
wxImage::Mirror( bool horizontally
) const
437 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
439 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false );
441 unsigned char *data
= image
.GetData();
443 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
445 if (M_IMGDATA
->m_hasMask
)
446 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
448 long height
= M_IMGDATA
->m_height
;
449 long width
= M_IMGDATA
->m_width
;
451 unsigned char *source_data
= M_IMGDATA
->m_data
;
452 unsigned char *target_data
;
456 for (long j
= 0; j
< height
; j
++)
459 target_data
= data
-3;
460 for (long i
= 0; i
< width
; i
++)
462 memcpy( target_data
, source_data
, 3 );
470 for (long i
= 0; i
< height
; i
++)
472 target_data
= data
+ 3*width
*(height
-1-i
);
473 memcpy( target_data
, source_data
, (size_t)3*width
);
474 source_data
+= 3*width
;
481 wxImage
wxImage::GetSubImage( const wxRect
&rect
) const
485 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
487 wxCHECK_MSG( (rect
.GetLeft()>=0) && (rect
.GetTop()>=0) && (rect
.GetRight()<=GetWidth()) && (rect
.GetBottom()<=GetHeight()),
488 image
, wxT("invalid subimage size") );
490 int subwidth
=rect
.GetWidth();
491 const int subheight
=rect
.GetHeight();
493 image
.Create( subwidth
, subheight
, false );
495 unsigned char *subdata
= image
.GetData(), *data
=GetData();
497 wxCHECK_MSG( subdata
, image
, wxT("unable to create image") );
499 if (M_IMGDATA
->m_hasMask
)
500 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
502 const int subleft
=3*rect
.GetLeft();
503 const int width
=3*GetWidth();
506 data
+=rect
.GetTop()*width
+subleft
;
508 for (long j
= 0; j
< subheight
; ++j
)
510 memcpy( subdata
, data
, subwidth
);
518 void wxImage::Paste( const wxImage
&image
, int x
, int y
)
520 wxCHECK_RET( Ok(), wxT("invalid image") );
521 wxCHECK_RET( image
.Ok(), wxT("invalid image") );
525 int width
= image
.GetWidth();
526 int height
= image
.GetHeight();
539 if ((x
+xx
)+width
> M_IMGDATA
->m_width
)
540 width
= M_IMGDATA
->m_width
- (x
+xx
);
541 if ((y
+yy
)+height
> M_IMGDATA
->m_height
)
542 height
= M_IMGDATA
->m_height
- (y
+yy
);
544 if (width
< 1) return;
545 if (height
< 1) return;
547 if ((!HasMask() && !image
.HasMask()) ||
548 ((HasMask() && image
.HasMask() &&
549 (GetMaskRed()==image
.GetMaskRed()) &&
550 (GetMaskGreen()==image
.GetMaskGreen()) &&
551 (GetMaskBlue()==image
.GetMaskBlue()))))
554 unsigned char* source_data
= image
.GetData() + xx
*3 + yy
*3*image
.GetWidth();
555 int source_step
= image
.GetWidth()*3;
557 unsigned char* target_data
= GetData() + (x
+xx
)*3 + (y
+yy
)*3*M_IMGDATA
->m_width
;
558 int target_step
= M_IMGDATA
->m_width
*3;
559 for (int j
= 0; j
< height
; j
++)
561 memcpy( target_data
, source_data
, width
);
562 source_data
+= source_step
;
563 target_data
+= target_step
;
568 if (!HasMask() && image
.HasMask())
570 unsigned char r
= image
.GetMaskRed();
571 unsigned char g
= image
.GetMaskGreen();
572 unsigned char b
= image
.GetMaskBlue();
575 unsigned char* source_data
= image
.GetData() + xx
*3 + yy
*3*image
.GetWidth();
576 int source_step
= image
.GetWidth()*3;
578 unsigned char* target_data
= GetData() + (x
+xx
)*3 + (y
+yy
)*3*M_IMGDATA
->m_width
;
579 int target_step
= M_IMGDATA
->m_width
*3;
581 for (int j
= 0; j
< height
; j
++)
583 for (int i
= 0; i
< width
; i
+=3)
585 if ((source_data
[i
] != r
) &&
586 (source_data
[i
+1] != g
) &&
587 (source_data
[i
+2] != b
))
589 memcpy( target_data
+i
, source_data
+i
, 3 );
592 source_data
+= source_step
;
593 target_data
+= target_step
;
598 void wxImage::Replace( unsigned char r1
, unsigned char g1
, unsigned char b1
,
599 unsigned char r2
, unsigned char g2
, unsigned char b2
)
601 wxCHECK_RET( Ok(), wxT("invalid image") );
603 unsigned char *data
= GetData();
605 const int w
= GetWidth();
606 const int h
= GetHeight();
608 for (int j
= 0; j
< h
; j
++)
609 for (int i
= 0; i
< w
; i
++)
611 if ((data
[0] == r1
) && (data
[1] == g1
) && (data
[2] == b1
))
621 wxImage
wxImage::ConvertToMono( unsigned char r
, unsigned char g
, unsigned char b
) const
625 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
627 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false );
629 unsigned char *data
= image
.GetData();
631 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
633 if (M_IMGDATA
->m_hasMask
)
635 if (M_IMGDATA
->m_maskRed
== r
&& M_IMGDATA
->m_maskGreen
== g
&&
636 M_IMGDATA
->m_maskBlue
== b
)
637 image
.SetMaskColour( 255, 255, 255 );
639 image
.SetMaskColour( 0, 0, 0 );
642 long size
= M_IMGDATA
->m_height
* M_IMGDATA
->m_width
;
644 unsigned char *srcd
= M_IMGDATA
->m_data
;
645 unsigned char *tard
= image
.GetData();
647 for ( long i
= 0; i
< size
; i
++, srcd
+= 3, tard
+= 3 )
649 if (srcd
[0] == r
&& srcd
[1] == g
&& srcd
[2] == b
)
650 tard
[0] = tard
[1] = tard
[2] = 255;
652 tard
[0] = tard
[1] = tard
[2] = 0;
658 void wxImage::SetRGB( int x
, int y
, unsigned char r
, unsigned char g
, unsigned char b
)
660 wxCHECK_RET( Ok(), wxT("invalid image") );
662 int w
= M_IMGDATA
->m_width
;
663 int h
= M_IMGDATA
->m_height
;
665 wxCHECK_RET( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), wxT("invalid image index") );
667 long pos
= (y
* w
+ x
) * 3;
669 M_IMGDATA
->m_data
[ pos
] = r
;
670 M_IMGDATA
->m_data
[ pos
+1 ] = g
;
671 M_IMGDATA
->m_data
[ pos
+2 ] = b
;
674 unsigned char wxImage::GetRed( int x
, int y
) const
676 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
678 int w
= M_IMGDATA
->m_width
;
679 int h
= M_IMGDATA
->m_height
;
681 wxCHECK_MSG( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), 0, wxT("invalid image index") );
683 long pos
= (y
* w
+ x
) * 3;
685 return M_IMGDATA
->m_data
[pos
];
688 unsigned char wxImage::GetGreen( int x
, int y
) const
690 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
692 int w
= M_IMGDATA
->m_width
;
693 int h
= M_IMGDATA
->m_height
;
695 wxCHECK_MSG( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), 0, wxT("invalid image index") );
697 long pos
= (y
* w
+ x
) * 3;
699 return M_IMGDATA
->m_data
[pos
+1];
702 unsigned char wxImage::GetBlue( int x
, int y
) const
704 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
706 int w
= M_IMGDATA
->m_width
;
707 int h
= M_IMGDATA
->m_height
;
709 wxCHECK_MSG( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), 0, wxT("invalid image index") );
711 long pos
= (y
* w
+ x
) * 3;
713 return M_IMGDATA
->m_data
[pos
+2];
716 bool wxImage::Ok() const
718 // image of 0 width or height can't be considered ok - at least because it
719 // causes crashes in ConvertToBitmap() if we don't catch it in time
720 wxImageRefData
*data
= M_IMGDATA
;
721 return data
&& data
->m_ok
&& data
->m_width
&& data
->m_height
;
724 unsigned char *wxImage::GetData() const
726 wxCHECK_MSG( Ok(), (unsigned char *)NULL
, wxT("invalid image") );
728 return M_IMGDATA
->m_data
;
731 void wxImage::SetData( unsigned char *data
)
733 wxCHECK_RET( Ok(), wxT("invalid image") );
735 wxImageRefData
*newRefData
= new wxImageRefData();
737 newRefData
->m_width
= M_IMGDATA
->m_width
;
738 newRefData
->m_height
= M_IMGDATA
->m_height
;
739 newRefData
->m_data
= data
;
740 newRefData
->m_ok
= true;
741 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
742 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
743 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
744 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
748 m_refData
= newRefData
;
751 void wxImage::SetData( unsigned char *data
, int new_width
, int new_height
)
753 wxImageRefData
*newRefData
= new wxImageRefData();
757 newRefData
->m_width
= new_width
;
758 newRefData
->m_height
= new_height
;
759 newRefData
->m_data
= data
;
760 newRefData
->m_ok
= true;
761 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
762 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
763 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
764 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
768 newRefData
->m_width
= new_width
;
769 newRefData
->m_height
= new_height
;
770 newRefData
->m_data
= data
;
771 newRefData
->m_ok
= true;
776 m_refData
= newRefData
;
779 // ----------------------------------------------------------------------------
780 // alpha channel support
781 // ----------------------------------------------------------------------------
783 void wxImage::SetAlpha(int x
, int y
, unsigned char alpha
)
785 wxCHECK_RET( Ok() && HasAlpha(), wxT("invalid image or no alpha channel") );
787 int w
= M_IMGDATA
->m_width
,
788 h
= M_IMGDATA
->m_height
;
790 wxCHECK_RET( x
>=0 && y
>= 0 && x
< w
&& y
< h
, wxT("invalid image index") );
792 M_IMGDATA
->m_alpha
[y
*w
+ x
] = alpha
;
795 unsigned char wxImage::GetAlpha(int x
, int y
) const
797 wxCHECK_MSG( Ok() && HasAlpha(), 0, wxT("invalid image or no alpha channel") );
799 int w
= M_IMGDATA
->m_width
,
800 h
= M_IMGDATA
->m_height
;
802 wxCHECK_MSG( x
>=0 && y
>= 0 && x
< w
&& y
< h
, 0, wxT("invalid image index") );
804 return M_IMGDATA
->m_alpha
[y
*w
+ x
];
807 bool wxImage::ConvertColourToAlpha( unsigned char r
, unsigned char g
, unsigned char b
)
811 int w
= M_IMGDATA
->m_width
,
812 h
= M_IMGDATA
->m_height
;
814 unsigned char *alpha
= GetAlpha();
815 unsigned char *data
= GetData();
818 for (y
= 0; y
< h
; y
++)
819 for (x
= 0; x
< w
; x
++)
834 void wxImage::SetAlpha( unsigned char *alpha
)
836 wxCHECK_RET( Ok(), wxT("invalid image") );
840 alpha
= (unsigned char *)malloc(M_IMGDATA
->m_width
*M_IMGDATA
->m_height
);
843 free(M_IMGDATA
->m_alpha
);
844 M_IMGDATA
->m_alpha
= alpha
;
847 unsigned char *wxImage::GetAlpha() const
849 wxCHECK_MSG( Ok(), (unsigned char *)NULL
, wxT("invalid image") );
851 return M_IMGDATA
->m_alpha
;
854 // ----------------------------------------------------------------------------
856 // ----------------------------------------------------------------------------
858 void wxImage::SetMaskColour( unsigned char r
, unsigned char g
, unsigned char b
)
860 wxCHECK_RET( Ok(), wxT("invalid image") );
862 M_IMGDATA
->m_maskRed
= r
;
863 M_IMGDATA
->m_maskGreen
= g
;
864 M_IMGDATA
->m_maskBlue
= b
;
865 M_IMGDATA
->m_hasMask
= true;
868 unsigned char wxImage::GetMaskRed() const
870 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
872 return M_IMGDATA
->m_maskRed
;
875 unsigned char wxImage::GetMaskGreen() const
877 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
879 return M_IMGDATA
->m_maskGreen
;
882 unsigned char wxImage::GetMaskBlue() const
884 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
886 return M_IMGDATA
->m_maskBlue
;
889 void wxImage::SetMask( bool mask
)
891 wxCHECK_RET( Ok(), wxT("invalid image") );
893 M_IMGDATA
->m_hasMask
= mask
;
896 bool wxImage::HasMask() const
898 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
900 return M_IMGDATA
->m_hasMask
;
903 int wxImage::GetWidth() const
905 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
907 return M_IMGDATA
->m_width
;
910 int wxImage::GetHeight() const
912 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
914 return M_IMGDATA
->m_height
;
917 bool wxImage::SetMaskFromImage(const wxImage
& mask
,
918 unsigned char mr
, unsigned char mg
, unsigned char mb
)
920 // check that the images are the same size
921 if ( (M_IMGDATA
->m_height
!= mask
.GetHeight() ) || (M_IMGDATA
->m_width
!= mask
.GetWidth () ) )
923 wxLogError( _("Image and mask have different sizes.") );
927 // find unused colour
928 unsigned char r
,g
,b
;
929 if (!FindFirstUnusedColour(&r
, &g
, &b
))
931 wxLogError( _("No unused colour in image being masked.") );
935 unsigned char *imgdata
= GetData();
936 unsigned char *maskdata
= mask
.GetData();
938 const int w
= GetWidth();
939 const int h
= GetHeight();
941 for (int j
= 0; j
< h
; j
++)
943 for (int i
= 0; i
< w
; i
++)
945 if ((maskdata
[0] == mr
) && (maskdata
[1] == mg
) && (maskdata
[2] == mb
))
956 SetMaskColour(r
, g
, b
);
962 bool wxImage::ConvertAlphaToMask(unsigned char threshold
)
967 unsigned char mr
, mg
, mb
;
968 if (!FindFirstUnusedColour(&mr
, &mg
, &mb
))
970 wxLogError( _("No unused colour in image being masked.") );
975 SetMaskColour(mr
, mg
, mb
);
977 unsigned char *imgdata
= GetData();
978 unsigned char *alphadata
= GetAlpha();
983 for (int y
= 0; y
< h
; y
++)
985 for (int x
= 0; x
< w
; x
++, imgdata
+= 3, alphadata
++)
987 if (*alphadata
< threshold
)
996 free(M_IMGDATA
->m_alpha
);
997 M_IMGDATA
->m_alpha
= NULL
;
1004 // Palette functions
1006 bool wxImage::HasPalette() const
1011 return M_IMGDATA
->m_palette
.Ok();
1014 const wxPalette
& wxImage::GetPalette() const
1016 wxCHECK_MSG( Ok(), wxNullPalette
, wxT("invalid image") );
1018 return M_IMGDATA
->m_palette
;
1021 void wxImage::SetPalette(const wxPalette
& palette
)
1023 wxCHECK_RET( Ok(), wxT("invalid image") );
1025 M_IMGDATA
->m_palette
= palette
;
1028 #endif // wxUSE_PALETTE
1030 // Option functions (arbitrary name/value mapping)
1031 void wxImage::SetOption(const wxString
& name
, const wxString
& value
)
1033 wxCHECK_RET( Ok(), wxT("invalid image") );
1035 int idx
= M_IMGDATA
->m_optionNames
.Index(name
, false);
1036 if (idx
== wxNOT_FOUND
)
1038 M_IMGDATA
->m_optionNames
.Add(name
);
1039 M_IMGDATA
->m_optionValues
.Add(value
);
1043 M_IMGDATA
->m_optionNames
[idx
] = name
;
1044 M_IMGDATA
->m_optionValues
[idx
] = value
;
1048 void wxImage::SetOption(const wxString
& name
, int value
)
1051 valStr
.Printf(wxT("%d"), value
);
1052 SetOption(name
, valStr
);
1055 wxString
wxImage::GetOption(const wxString
& name
) const
1057 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid image") );
1059 int idx
= M_IMGDATA
->m_optionNames
.Index(name
, false);
1060 if (idx
== wxNOT_FOUND
)
1061 return wxEmptyString
;
1063 return M_IMGDATA
->m_optionValues
[idx
];
1066 int wxImage::GetOptionInt(const wxString
& name
) const
1068 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1070 return wxAtoi(GetOption(name
));
1073 bool wxImage::HasOption(const wxString
& name
) const
1075 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1077 return (M_IMGDATA
->m_optionNames
.Index(name
, false) != wxNOT_FOUND
);
1080 bool wxImage::LoadFile( const wxString
& filename
, long type
, int index
)
1083 if (wxFileExists(filename
))
1085 wxFileInputStream
stream(filename
);
1086 wxBufferedInputStream
bstream( stream
);
1087 return LoadFile(bstream
, type
, index
);
1091 wxLogError( _("Can't load image from file '%s': file does not exist."), filename
.c_str() );
1095 #else // !wxUSE_STREAMS
1097 #endif // wxUSE_STREAMS
1100 bool wxImage::LoadFile( const wxString
& filename
, const wxString
& mimetype
, int index
)
1103 if (wxFileExists(filename
))
1105 wxFileInputStream
stream(filename
);
1106 wxBufferedInputStream
bstream( stream
);
1107 return LoadFile(bstream
, mimetype
, index
);
1111 wxLogError( _("Can't load image from file '%s': file does not exist."), filename
.c_str() );
1115 #else // !wxUSE_STREAMS
1117 #endif // wxUSE_STREAMS
1122 bool wxImage::SaveFile( const wxString
& filename
) const
1124 wxString ext
= filename
.AfterLast('.').Lower();
1126 wxImageHandler
* pHandler
= FindHandler(ext
, -1);
1129 SaveFile(filename
, pHandler
->GetType());
1133 wxLogError(_("Can't save image to file '%s': unknown extension."), filename
.c_str());
1138 bool wxImage::SaveFile( const wxString
& filename
, int type
) const
1141 ((wxImage
*)this)->SetOption(wxIMAGE_OPTION_FILENAME
, filename
);
1143 wxFileOutputStream
stream(filename
);
1145 if ( stream
.IsOk() )
1147 wxBufferedOutputStream
bstream( stream
);
1148 return SaveFile(bstream
, type
);
1150 #endif // wxUSE_STREAMS
1155 bool wxImage::SaveFile( const wxString
& filename
, const wxString
& mimetype
) const
1158 ((wxImage
*)this)->SetOption(wxIMAGE_OPTION_FILENAME
, filename
);
1160 wxFileOutputStream
stream(filename
);
1162 if ( stream
.IsOk() )
1164 wxBufferedOutputStream
bstream( stream
);
1165 return SaveFile(bstream
, mimetype
);
1167 #endif // wxUSE_STREAMS
1172 bool wxImage::CanRead( const wxString
&name
)
1175 wxFileInputStream
stream(name
);
1176 return CanRead(stream
);
1182 int wxImage::GetImageCount( const wxString
&name
, long type
)
1185 wxFileInputStream
stream(name
);
1187 return GetImageCount(stream
, type
);
1195 bool wxImage::CanRead( wxInputStream
&stream
)
1197 const wxList
& list
= GetHandlers();
1199 for ( wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext() )
1201 wxImageHandler
*handler
=(wxImageHandler
*)node
->GetData();
1202 if (handler
->CanRead( stream
))
1209 int wxImage::GetImageCount( wxInputStream
&stream
, long type
)
1211 wxImageHandler
*handler
;
1213 if ( type
== wxBITMAP_TYPE_ANY
)
1215 wxList
&list
=GetHandlers();
1217 for (wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext())
1219 handler
=(wxImageHandler
*)node
->GetData();
1220 if ( handler
->CanRead(stream
) )
1221 return handler
->GetImageCount(stream
);
1225 wxLogWarning(_("No handler found for image type."));
1229 handler
= FindHandler(type
);
1233 wxLogWarning(_("No image handler for type %d defined."), type
);
1237 if ( handler
->CanRead(stream
) )
1239 return handler
->GetImageCount(stream
);
1243 wxLogError(_("Image file is not of type %d."), type
);
1248 bool wxImage::LoadFile( wxInputStream
& stream
, long type
, int index
)
1252 m_refData
= new wxImageRefData
;
1254 wxImageHandler
*handler
;
1256 if ( type
== wxBITMAP_TYPE_ANY
)
1258 wxList
&list
=GetHandlers();
1260 for ( wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext() )
1262 handler
=(wxImageHandler
*)node
->GetData();
1263 if ( handler
->CanRead(stream
) )
1264 return handler
->LoadFile(this, stream
, true/*verbose*/, index
);
1268 wxLogWarning( _("No handler found for image type.") );
1272 handler
= FindHandler(type
);
1276 wxLogWarning( _("No image handler for type %d defined."), type
);
1281 return handler
->LoadFile(this, stream
, true/*verbose*/, index
);
1284 bool wxImage::LoadFile( wxInputStream
& stream
, const wxString
& mimetype
, int index
)
1288 m_refData
= new wxImageRefData
;
1290 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
1294 wxLogWarning( _("No image handler for type %s defined."), mimetype
.GetData() );
1299 return handler
->LoadFile( this, stream
, true/*verbose*/, index
);
1302 bool wxImage::SaveFile( wxOutputStream
& stream
, int type
) const
1304 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1306 wxImageHandler
*handler
= FindHandler(type
);
1310 wxLogWarning( _("No image handler for type %d defined."), type
);
1315 return handler
->SaveFile( (wxImage
*)this, stream
);
1318 bool wxImage::SaveFile( wxOutputStream
& stream
, const wxString
& mimetype
) const
1320 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1322 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
1326 wxLogWarning( _("No image handler for type %s defined."), mimetype
.GetData() );
1331 return handler
->SaveFile( (wxImage
*)this, stream
);
1333 #endif // wxUSE_STREAMS
1335 void wxImage::AddHandler( wxImageHandler
*handler
)
1337 // Check for an existing handler of the type being added.
1338 if (FindHandler( handler
->GetType() ) == 0)
1340 sm_handlers
.Append( handler
);
1344 // This is not documented behaviour, merely the simplest 'fix'
1345 // for preventing duplicate additions. If someone ever has
1346 // a good reason to add and remove duplicate handlers (and they
1347 // may) we should probably refcount the duplicates.
1348 // also an issue in InsertHandler below.
1350 wxLogDebug( _T("Adding duplicate image handler for '%s'"),
1351 handler
->GetName().c_str() );
1356 void wxImage::InsertHandler( wxImageHandler
*handler
)
1358 // Check for an existing handler of the type being added.
1359 if (FindHandler( handler
->GetType() ) == 0)
1361 sm_handlers
.Insert( handler
);
1365 // see AddHandler for additional comments.
1366 wxLogDebug( _T("Inserting duplicate image handler for '%s'"),
1367 handler
->GetName().c_str() );
1372 bool wxImage::RemoveHandler( const wxString
& name
)
1374 wxImageHandler
*handler
= FindHandler(name
);
1377 sm_handlers
.DeleteObject(handler
);
1385 wxImageHandler
*wxImage::FindHandler( const wxString
& name
)
1387 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
1390 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1391 if (handler
->GetName().Cmp(name
) == 0) return handler
;
1393 node
= node
->GetNext();
1398 wxImageHandler
*wxImage::FindHandler( const wxString
& extension
, long bitmapType
)
1400 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
1403 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1404 if ( (handler
->GetExtension().Cmp(extension
) == 0) &&
1405 (bitmapType
== -1 || handler
->GetType() == bitmapType
) )
1407 node
= node
->GetNext();
1412 wxImageHandler
*wxImage::FindHandler( long bitmapType
)
1414 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
1417 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1418 if (handler
->GetType() == bitmapType
) return handler
;
1419 node
= node
->GetNext();
1424 wxImageHandler
*wxImage::FindHandlerMime( const wxString
& mimetype
)
1426 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
1429 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1430 if (handler
->GetMimeType().IsSameAs(mimetype
, false)) return handler
;
1431 node
= node
->GetNext();
1436 void wxImage::InitStandardHandlers()
1439 AddHandler(new wxBMPHandler
);
1440 #endif // wxUSE_STREAMS
1443 void wxImage::CleanUpHandlers()
1445 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
1448 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1449 wxList::compatibility_iterator next
= node
->GetNext();
1454 sm_handlers
.Clear();
1457 wxString
wxImage::GetImageExtWildcard()
1461 wxList
& Handlers
= wxImage::GetHandlers();
1462 wxList::compatibility_iterator Node
= Handlers
.GetFirst();
1465 wxImageHandler
* Handler
= (wxImageHandler
*)Node
->GetData();
1466 fmts
+= wxT("*.") + Handler
->GetExtension();
1467 Node
= Node
->GetNext();
1468 if ( Node
) fmts
+= wxT(";");
1471 return wxT("(") + fmts
+ wxT(")|") + fmts
;
1474 //-----------------------------------------------------------------------------
1476 //-----------------------------------------------------------------------------
1478 IMPLEMENT_ABSTRACT_CLASS(wxImageHandler
,wxObject
)
1481 bool wxImageHandler::LoadFile( wxImage
*WXUNUSED(image
), wxInputStream
& WXUNUSED(stream
), bool WXUNUSED(verbose
), int WXUNUSED(index
) )
1486 bool wxImageHandler::SaveFile( wxImage
*WXUNUSED(image
), wxOutputStream
& WXUNUSED(stream
), bool WXUNUSED(verbose
) )
1491 int wxImageHandler::GetImageCount( wxInputStream
& WXUNUSED(stream
) )
1496 bool wxImageHandler::CanRead( const wxString
& name
)
1498 if (wxFileExists(name
))
1500 wxFileInputStream
stream(name
);
1501 return CanRead(stream
);
1504 wxLogError( _("Can't check image format of file '%s': file does not exist."), name
.c_str() );
1509 bool wxImageHandler::CallDoCanRead(wxInputStream
& stream
)
1511 wxFileOffset posOld
= stream
.TellI();
1512 if ( posOld
== wxInvalidOffset
)
1514 // can't test unseekable stream
1518 bool ok
= DoCanRead(stream
);
1520 // restore the old position to be able to test other formats and so on
1521 if ( stream
.SeekI(posOld
) == wxInvalidOffset
)
1523 wxLogDebug(_T("Failed to rewind the stream in wxImageHandler!"));
1525 // reading would fail anyhow as we're not at the right position
1532 #endif // wxUSE_STREAMS
1534 // ----------------------------------------------------------------------------
1535 // image histogram stuff
1536 // ----------------------------------------------------------------------------
1539 wxImageHistogram::FindFirstUnusedColour(unsigned char *r
,
1544 unsigned char g2
) const
1546 unsigned long key
= MakeKey(r2
, g2
, b2
);
1548 while ( find(key
) != end() )
1550 // color already used
1562 wxLogError(_("No unused colour in image.") );
1568 key
= MakeKey(r2
, g2
, b2
);
1582 wxImage::FindFirstUnusedColour(unsigned char *r
,
1587 unsigned char g2
) const
1589 wxImageHistogram histogram
;
1591 ComputeHistogram(histogram
);
1593 return histogram
.FindFirstUnusedColour(r
, g
, b
, r2
, g2
, b2
);
1599 // Counts and returns the number of different colours. Optionally stops
1600 // when it exceeds 'stopafter' different colours. This is useful, for
1601 // example, to see if the image can be saved as 8-bit (256 colour or
1602 // less, in this case it would be invoked as CountColours(256)). Default
1603 // value for stopafter is -1 (don't care).
1605 unsigned long wxImage::CountColours( unsigned long stopafter
) const
1609 unsigned char r
, g
, b
;
1611 unsigned long size
, nentries
, key
;
1614 size
= GetWidth() * GetHeight();
1617 for (unsigned long j
= 0; (j
< size
) && (nentries
<= stopafter
) ; j
++)
1622 key
= wxImageHistogram::MakeKey(r
, g
, b
);
1624 if (h
.Get(key
) == NULL
)
1635 unsigned long wxImage::ComputeHistogram( wxImageHistogram
&h
) const
1637 unsigned char *p
= GetData();
1638 unsigned long nentries
= 0;
1642 const unsigned long size
= GetWidth() * GetHeight();
1644 unsigned char r
, g
, b
;
1645 for ( unsigned long n
= 0; n
< size
; n
++ )
1651 wxImageHistogramEntry
& entry
= h
[wxImageHistogram::MakeKey(r
, g
, b
)];
1653 if ( entry
.value
++ == 0 )
1654 entry
.index
= nentries
++;
1661 * Rotation code by Carlos Moreno
1664 // GRG: I've removed wxRotationPoint - we already have wxRealPoint which
1665 // does exactly the same thing. And I also got rid of wxRotationPixel
1666 // bacause of potential problems in architectures where alignment
1667 // is an issue, so I had to rewrite parts of the code.
1669 static const double gs_Epsilon
= 1e-10;
1671 static inline int wxCint (double x
)
1673 return (x
> 0) ? (int) (x
+ 0.5) : (int) (x
- 0.5);
1677 // Auxiliary function to rotate a point (x,y) with respect to point p0
1678 // make it inline and use a straight return to facilitate optimization
1679 // also, the function receives the sine and cosine of the angle to avoid
1680 // repeating the time-consuming calls to these functions -- sin/cos can
1681 // be computed and stored in the calling function.
1683 inline wxRealPoint
rotated_point (const wxRealPoint
& p
, double cos_angle
, double sin_angle
, const wxRealPoint
& p0
)
1685 return wxRealPoint (p0
.x
+ (p
.x
- p0
.x
) * cos_angle
- (p
.y
- p0
.y
) * sin_angle
,
1686 p0
.y
+ (p
.y
- p0
.y
) * cos_angle
+ (p
.x
- p0
.x
) * sin_angle
);
1689 inline wxRealPoint
rotated_point (double x
, double y
, double cos_angle
, double sin_angle
, const wxRealPoint
& p0
)
1691 return rotated_point (wxRealPoint(x
,y
), cos_angle
, sin_angle
, p0
);
1694 wxImage
wxImage::Rotate(double angle
, const wxPoint
& centre_of_rotation
, bool interpolating
, wxPoint
* offset_after_rotation
) const
1697 angle
= -angle
; // screen coordinates are a mirror image of "real" coordinates
1699 bool has_alpha
= HasAlpha();
1701 // Create pointer-based array to accelerate access to wxImage's data
1702 unsigned char ** data
= new unsigned char * [GetHeight()];
1703 data
[0] = GetData();
1704 for (i
= 1; i
< GetHeight(); i
++)
1705 data
[i
] = data
[i
- 1] + (3 * GetWidth());
1707 // Same for alpha channel
1708 unsigned char ** alpha
= NULL
;
1711 alpha
= new unsigned char * [GetHeight()];
1712 alpha
[0] = GetAlpha();
1713 for (i
= 1; i
< GetHeight(); i
++)
1714 alpha
[i
] = alpha
[i
- 1] + GetWidth();
1717 // precompute coefficients for rotation formula
1718 // (sine and cosine of the angle)
1719 const double cos_angle
= cos(angle
);
1720 const double sin_angle
= sin(angle
);
1722 // Create new Image to store the result
1723 // First, find rectangle that covers the rotated image; to do that,
1724 // rotate the four corners
1726 const wxRealPoint
p0(centre_of_rotation
.x
, centre_of_rotation
.y
);
1728 wxRealPoint p1
= rotated_point (0, 0, cos_angle
, sin_angle
, p0
);
1729 wxRealPoint p2
= rotated_point (0, GetHeight(), cos_angle
, sin_angle
, p0
);
1730 wxRealPoint p3
= rotated_point (GetWidth(), 0, cos_angle
, sin_angle
, p0
);
1731 wxRealPoint p4
= rotated_point (GetWidth(), GetHeight(), cos_angle
, sin_angle
, p0
);
1733 int x1
= (int) floor (wxMin (wxMin(p1
.x
, p2
.x
), wxMin(p3
.x
, p4
.x
)));
1734 int y1
= (int) floor (wxMin (wxMin(p1
.y
, p2
.y
), wxMin(p3
.y
, p4
.y
)));
1735 int x2
= (int) ceil (wxMax (wxMax(p1
.x
, p2
.x
), wxMax(p3
.x
, p4
.x
)));
1736 int y2
= (int) ceil (wxMax (wxMax(p1
.y
, p2
.y
), wxMax(p3
.y
, p4
.y
)));
1738 // Create rotated image
1739 wxImage
rotated (x2
- x1
+ 1, y2
- y1
+ 1, false);
1740 // With alpha channel
1744 if (offset_after_rotation
!= NULL
)
1746 *offset_after_rotation
= wxPoint (x1
, y1
);
1749 // GRG: The rotated (destination) image is always accessed
1750 // sequentially, so there is no need for a pointer-based
1751 // array here (and in fact it would be slower).
1753 unsigned char * dst
= rotated
.GetData();
1755 unsigned char * alpha_dst
= NULL
;
1757 alpha_dst
= rotated
.GetAlpha();
1759 // GRG: if the original image has a mask, use its RGB values
1760 // as the blank pixel, else, fall back to default (black).
1762 unsigned char blank_r
= 0;
1763 unsigned char blank_g
= 0;
1764 unsigned char blank_b
= 0;
1768 blank_r
= GetMaskRed();
1769 blank_g
= GetMaskGreen();
1770 blank_b
= GetMaskBlue();
1771 rotated
.SetMaskColour( blank_r
, blank_g
, blank_b
);
1774 // Now, for each point of the rotated image, find where it came from, by
1775 // performing an inverse rotation (a rotation of -angle) and getting the
1776 // pixel at those coordinates
1778 // GRG: I've taken the (interpolating) test out of the loops, so that
1779 // it is done only once, instead of repeating it for each pixel.
1784 for (int y
= 0; y
< rotated
.GetHeight(); y
++)
1786 for (x
= 0; x
< rotated
.GetWidth(); x
++)
1788 wxRealPoint src
= rotated_point (x
+ x1
, y
+ y1
, cos_angle
, -sin_angle
, p0
);
1790 if (-0.25 < src
.x
&& src
.x
< GetWidth() - 0.75 &&
1791 -0.25 < src
.y
&& src
.y
< GetHeight() - 0.75)
1793 // interpolate using the 4 enclosing grid-points. Those
1794 // points can be obtained using floor and ceiling of the
1795 // exact coordinates of the point
1796 // C.M. 2000-02-17: when the point is near the border, special care is required.
1800 if (0 < src
.x
&& src
.x
< GetWidth() - 1)
1802 x1
= wxCint(floor(src
.x
));
1803 x2
= wxCint(ceil(src
.x
));
1805 else // else means that x is near one of the borders (0 or width-1)
1807 x1
= x2
= wxCint (src
.x
);
1810 if (0 < src
.y
&& src
.y
< GetHeight() - 1)
1812 y1
= wxCint(floor(src
.y
));
1813 y2
= wxCint(ceil(src
.y
));
1817 y1
= y2
= wxCint (src
.y
);
1820 // get four points and the distances (square of the distance,
1821 // for efficiency reasons) for the interpolation formula
1823 // GRG: Do not calculate the points until they are
1824 // really needed -- this way we can calculate
1825 // just one, instead of four, if d1, d2, d3
1826 // or d4 are < gs_Epsilon
1828 const double d1
= (src
.x
- x1
) * (src
.x
- x1
) + (src
.y
- y1
) * (src
.y
- y1
);
1829 const double d2
= (src
.x
- x2
) * (src
.x
- x2
) + (src
.y
- y1
) * (src
.y
- y1
);
1830 const double d3
= (src
.x
- x2
) * (src
.x
- x2
) + (src
.y
- y2
) * (src
.y
- y2
);
1831 const double d4
= (src
.x
- x1
) * (src
.x
- x1
) + (src
.y
- y2
) * (src
.y
- y2
);
1833 // Now interpolate as a weighted average of the four surrounding
1834 // points, where the weights are the distances to each of those points
1836 // If the point is exactly at one point of the grid of the source
1837 // image, then don't interpolate -- just assign the pixel
1839 if (d1
< gs_Epsilon
) // d1,d2,d3,d4 are positive -- no need for abs()
1841 unsigned char *p
= data
[y1
] + (3 * x1
);
1848 unsigned char *p
= alpha
[y1
] + x1
;
1849 *(alpha_dst
++) = *p
;
1852 else if (d2
< gs_Epsilon
)
1854 unsigned char *p
= data
[y1
] + (3 * x2
);
1861 unsigned char *p
= alpha
[y1
] + x2
;
1862 *(alpha_dst
++) = *p
;
1865 else if (d3
< gs_Epsilon
)
1867 unsigned char *p
= data
[y2
] + (3 * x2
);
1874 unsigned char *p
= alpha
[y2
] + x2
;
1875 *(alpha_dst
++) = *p
;
1878 else if (d4
< gs_Epsilon
)
1880 unsigned char *p
= data
[y2
] + (3 * x1
);
1887 unsigned char *p
= alpha
[y2
] + x1
;
1888 *(alpha_dst
++) = *p
;
1893 // weights for the weighted average are proportional to the inverse of the distance
1894 unsigned char *v1
= data
[y1
] + (3 * x1
);
1895 unsigned char *v2
= data
[y1
] + (3 * x2
);
1896 unsigned char *v3
= data
[y2
] + (3 * x2
);
1897 unsigned char *v4
= data
[y2
] + (3 * x1
);
1899 const double w1
= 1/d1
, w2
= 1/d2
, w3
= 1/d3
, w4
= 1/d4
;
1903 *(dst
++) = (unsigned char)
1904 ( (w1
* *(v1
++) + w2
* *(v2
++) +
1905 w3
* *(v3
++) + w4
* *(v4
++)) /
1906 (w1
+ w2
+ w3
+ w4
) );
1907 *(dst
++) = (unsigned char)
1908 ( (w1
* *(v1
++) + w2
* *(v2
++) +
1909 w3
* *(v3
++) + w4
* *(v4
++)) /
1910 (w1
+ w2
+ w3
+ w4
) );
1911 *(dst
++) = (unsigned char)
1912 ( (w1
* *v1
+ w2
* *v2
+
1913 w3
* *v3
+ w4
* *v4
) /
1914 (w1
+ w2
+ w3
+ w4
) );
1918 unsigned char *v1
= alpha
[y1
] + (x1
);
1919 unsigned char *v2
= alpha
[y1
] + (x2
);
1920 unsigned char *v3
= alpha
[y2
] + (x2
);
1921 unsigned char *v4
= alpha
[y2
] + (x1
);
1923 *(alpha_dst
++) = (unsigned char)
1924 ( (w1
* *v1
+ w2
* *v2
+
1925 w3
* *v3
+ w4
* *v4
) /
1926 (w1
+ w2
+ w3
+ w4
) );
1942 else // not interpolating
1944 for (int y
= 0; y
< rotated
.GetHeight(); y
++)
1946 for (x
= 0; x
< rotated
.GetWidth(); x
++)
1948 wxRealPoint src
= rotated_point (x
+ x1
, y
+ y1
, cos_angle
, -sin_angle
, p0
);
1950 const int xs
= wxCint (src
.x
); // wxCint rounds to the
1951 const int ys
= wxCint (src
.y
); // closest integer
1953 if (0 <= xs
&& xs
< GetWidth() &&
1954 0 <= ys
&& ys
< GetHeight())
1956 unsigned char *p
= data
[ys
] + (3 * xs
);
1963 unsigned char *p
= alpha
[ys
] + (xs
);
1964 *(alpha_dst
++) = *p
;
1974 *(alpha_dst
++) = 255;
1992 // A module to allow wxImage initialization/cleanup
1993 // without calling these functions from app.cpp or from
1994 // the user's application.
1996 class wxImageModule
: public wxModule
1998 DECLARE_DYNAMIC_CLASS(wxImageModule
)
2001 bool OnInit() { wxImage::InitStandardHandlers(); return true; };
2002 void OnExit() { wxImage::CleanUpHandlers(); };
2005 IMPLEMENT_DYNAMIC_CLASS(wxImageModule
, wxModule
)
2008 #endif // wxUSE_IMAGE