1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/image.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
26 #include "wx/module.h"
27 #include "wx/palette.h"
29 #include "wx/colour.h"
32 #include "wx/wfstream.h"
33 #include "wx/xpmdecod.h"
38 // make the code compile with either wxFile*Stream or wxFFile*Stream:
39 #define HAS_FILE_STREAMS (wxUSE_STREAMS && (wxUSE_FILE || wxUSE_FFILE))
43 typedef wxFFileInputStream wxImageFileInputStream
;
44 typedef wxFFileOutputStream wxImageFileOutputStream
;
46 typedef wxFileInputStream wxImageFileInputStream
;
47 typedef wxFileOutputStream wxImageFileOutputStream
;
48 #endif // wxUSE_FILE/wxUSE_FFILE
49 #endif // HAS_FILE_STREAMS
52 IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(wxImage
,WXDLLEXPORT
)
55 //-----------------------------------------------------------------------------
57 //-----------------------------------------------------------------------------
59 wxList
wxImage::sm_handlers
;
62 //-----------------------------------------------------------------------------
64 //-----------------------------------------------------------------------------
66 class wxImageRefData
: public wxObjectRefData
70 virtual ~wxImageRefData();
75 unsigned char *m_data
;
78 unsigned char m_maskRed
,m_maskGreen
,m_maskBlue
;
80 // alpha channel data, may be NULL for the formats without alpha support
81 unsigned char *m_alpha
;
85 // if true, m_data is pointer to static data and shouldn't be freed
88 // same as m_static but for m_alpha
93 #endif // wxUSE_PALETTE
95 wxArrayString m_optionNames
;
96 wxArrayString m_optionValues
;
98 wxDECLARE_NO_COPY_CLASS(wxImageRefData
);
101 wxImageRefData::wxImageRefData()
105 m_type
= wxBITMAP_TYPE_INVALID
;
107 m_alpha
= (unsigned char *) NULL
;
116 m_staticAlpha
= false;
119 wxImageRefData::~wxImageRefData()
123 if ( !m_staticAlpha
)
128 //-----------------------------------------------------------------------------
130 //-----------------------------------------------------------------------------
132 #define M_IMGDATA static_cast<wxImageRefData*>(m_refData)
134 IMPLEMENT_DYNAMIC_CLASS(wxImage
, wxObject
)
136 bool wxImage::Create(const char* const* xpmData
)
141 wxXPMDecoder decoder
;
142 (*this) = decoder
.ReadData(xpmData
);
145 wxUnusedVar(xpmData
);
150 bool wxImage::Create( int width
, int height
, bool clear
)
154 m_refData
= new wxImageRefData();
156 M_IMGDATA
->m_data
= (unsigned char *) malloc( width
*height
*3 );
157 if (!M_IMGDATA
->m_data
)
163 M_IMGDATA
->m_width
= width
;
164 M_IMGDATA
->m_height
= height
;
165 M_IMGDATA
->m_ok
= true;
175 bool wxImage::Create( int width
, int height
, unsigned char* data
, bool static_data
)
179 wxCHECK_MSG( data
, false, wxT("NULL data in wxImage::Create") );
181 m_refData
= new wxImageRefData();
183 M_IMGDATA
->m_data
= data
;
184 M_IMGDATA
->m_width
= width
;
185 M_IMGDATA
->m_height
= height
;
186 M_IMGDATA
->m_ok
= true;
187 M_IMGDATA
->m_static
= static_data
;
192 bool wxImage::Create( int width
, int height
, unsigned char* data
, unsigned char* alpha
, bool static_data
)
196 wxCHECK_MSG( data
, false, wxT("NULL data in wxImage::Create") );
198 m_refData
= new wxImageRefData();
200 M_IMGDATA
->m_data
= data
;
201 M_IMGDATA
->m_alpha
= alpha
;
202 M_IMGDATA
->m_width
= width
;
203 M_IMGDATA
->m_height
= height
;
204 M_IMGDATA
->m_ok
= true;
205 M_IMGDATA
->m_static
= static_data
;
206 M_IMGDATA
->m_staticAlpha
= static_data
;
211 void wxImage::Destroy()
216 void wxImage::Clear(unsigned char value
)
218 memset(M_IMGDATA
->m_data
, value
, M_IMGDATA
->m_width
*M_IMGDATA
->m_height
*3);
221 wxObjectRefData
* wxImage::CreateRefData() const
223 return new wxImageRefData
;
226 wxObjectRefData
* wxImage::CloneRefData(const wxObjectRefData
* that
) const
228 const wxImageRefData
* refData
= static_cast<const wxImageRefData
*>(that
);
229 wxCHECK_MSG(refData
->m_ok
, NULL
, wxT("invalid image") );
231 wxImageRefData
* refData_new
= new wxImageRefData
;
232 refData_new
->m_width
= refData
->m_width
;
233 refData_new
->m_height
= refData
->m_height
;
234 refData_new
->m_maskRed
= refData
->m_maskRed
;
235 refData_new
->m_maskGreen
= refData
->m_maskGreen
;
236 refData_new
->m_maskBlue
= refData
->m_maskBlue
;
237 refData_new
->m_hasMask
= refData
->m_hasMask
;
238 refData_new
->m_ok
= true;
239 unsigned size
= unsigned(refData
->m_width
) * unsigned(refData
->m_height
);
240 if (refData
->m_alpha
!= NULL
)
242 refData_new
->m_alpha
= (unsigned char*)malloc(size
);
243 memcpy(refData_new
->m_alpha
, refData
->m_alpha
, size
);
246 refData_new
->m_data
= (unsigned char*)malloc(size
);
247 memcpy(refData_new
->m_data
, refData
->m_data
, size
);
249 refData_new
->m_palette
= refData
->m_palette
;
251 refData_new
->m_optionNames
= refData
->m_optionNames
;
252 refData_new
->m_optionValues
= refData
->m_optionValues
;
256 // returns a new image with the same dimensions, alpha, and mask as *this
257 // if on_its_side is true, width and height are swapped
258 wxImage
wxImage::MakeEmptyClone(int flags
) const
262 wxCHECK_MSG( IsOk(), image
, wxS("invalid image") );
264 long height
= M_IMGDATA
->m_height
;
265 long width
= M_IMGDATA
->m_width
;
267 if ( flags
& Clone_SwapOrientation
)
268 wxSwap( width
, height
);
270 if ( !image
.Create( width
, height
, false ) )
272 wxFAIL_MSG( wxS("unable to create image") );
276 if ( M_IMGDATA
->m_alpha
)
279 wxCHECK2_MSG( image
.GetAlpha(), return wxImage(),
280 wxS("unable to create alpha channel") );
283 if ( M_IMGDATA
->m_hasMask
)
285 image
.SetMaskColour( M_IMGDATA
->m_maskRed
,
286 M_IMGDATA
->m_maskGreen
,
287 M_IMGDATA
->m_maskBlue
);
293 wxImage
wxImage::Copy() const
297 wxCHECK_MSG( IsOk(), image
, wxT("invalid image") );
299 image
.m_refData
= CloneRefData(m_refData
);
304 wxImage
wxImage::ShrinkBy( int xFactor
, int yFactor
) const
306 if( xFactor
== 1 && yFactor
== 1 )
311 wxCHECK_MSG( IsOk(), image
, wxT("invalid image") );
313 // can't scale to/from 0 size
314 wxCHECK_MSG( (xFactor
> 0) && (yFactor
> 0), image
,
315 wxT("invalid new image size") );
317 long old_height
= M_IMGDATA
->m_height
,
318 old_width
= M_IMGDATA
->m_width
;
320 wxCHECK_MSG( (old_height
> 0) && (old_width
> 0), image
,
321 wxT("invalid old image size") );
323 long width
= old_width
/ xFactor
;
324 long height
= old_height
/ yFactor
;
326 image
.Create( width
, height
, false );
328 char unsigned *data
= image
.GetData();
330 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
332 bool hasMask
= false ;
333 unsigned char maskRed
= 0;
334 unsigned char maskGreen
= 0;
335 unsigned char maskBlue
= 0 ;
337 const unsigned char *source_data
= M_IMGDATA
->m_data
;
338 unsigned char *target_data
= data
;
339 const unsigned char *source_alpha
= 0 ;
340 unsigned char *target_alpha
= 0 ;
341 if (M_IMGDATA
->m_hasMask
)
344 maskRed
= M_IMGDATA
->m_maskRed
;
345 maskGreen
= M_IMGDATA
->m_maskGreen
;
346 maskBlue
=M_IMGDATA
->m_maskBlue
;
348 image
.SetMaskColour( M_IMGDATA
->m_maskRed
,
349 M_IMGDATA
->m_maskGreen
,
350 M_IMGDATA
->m_maskBlue
);
354 source_alpha
= M_IMGDATA
->m_alpha
;
358 target_alpha
= image
.GetAlpha() ;
362 for (long y
= 0; y
< height
; y
++)
364 for (long x
= 0; x
< width
; x
++)
366 unsigned long avgRed
= 0 ;
367 unsigned long avgGreen
= 0;
368 unsigned long avgBlue
= 0;
369 unsigned long avgAlpha
= 0 ;
370 unsigned long counter
= 0 ;
372 for ( int y1
= 0 ; y1
< yFactor
; ++y1
)
374 long y_offset
= (y
* yFactor
+ y1
) * old_width
;
375 for ( int x1
= 0 ; x1
< xFactor
; ++x1
)
377 const unsigned char *pixel
= source_data
+ 3 * ( y_offset
+ x
* xFactor
+ x1
) ;
378 unsigned char red
= pixel
[0] ;
379 unsigned char green
= pixel
[1] ;
380 unsigned char blue
= pixel
[2] ;
381 unsigned char alpha
= 255 ;
383 alpha
= *(source_alpha
+ y_offset
+ x
* xFactor
+ x1
) ;
384 if ( !hasMask
|| red
!= maskRed
|| green
!= maskGreen
|| blue
!= maskBlue
)
399 *(target_data
++) = M_IMGDATA
->m_maskRed
;
400 *(target_data
++) = M_IMGDATA
->m_maskGreen
;
401 *(target_data
++) = M_IMGDATA
->m_maskBlue
;
406 *(target_alpha
++) = (unsigned char)(avgAlpha
/ counter
) ;
407 *(target_data
++) = (unsigned char)(avgRed
/ counter
);
408 *(target_data
++) = (unsigned char)(avgGreen
/ counter
);
409 *(target_data
++) = (unsigned char)(avgBlue
/ counter
);
414 // In case this is a cursor, make sure the hotspot is scaled accordingly:
415 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
416 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
417 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
))/xFactor
);
418 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
419 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
420 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
))/yFactor
);
426 wxImage::Scale( int width
, int height
, wxImageResizeQuality quality
) const
430 wxCHECK_MSG( IsOk(), image
, wxT("invalid image") );
432 // can't scale to/from 0 size
433 wxCHECK_MSG( (width
> 0) && (height
> 0), image
,
434 wxT("invalid new image size") );
436 long old_height
= M_IMGDATA
->m_height
,
437 old_width
= M_IMGDATA
->m_width
;
438 wxCHECK_MSG( (old_height
> 0) && (old_width
> 0), image
,
439 wxT("invalid old image size") );
441 // If the image's new width and height are the same as the original, no
442 // need to waste time or CPU cycles
443 if ( old_width
== width
&& old_height
== height
)
446 if (quality
== wxIMAGE_QUALITY_HIGH
)
448 quality
= (width
< old_width
&& height
< old_height
)
449 ? wxIMAGE_QUALITY_BOX_AVERAGE
450 : wxIMAGE_QUALITY_BICUBIC
;
453 // Resample the image using the method as specified.
456 case wxIMAGE_QUALITY_NEAREST
:
457 if ( old_width
% width
== 0 && old_width
>= width
&&
458 old_height
% height
== 0 && old_height
>= height
)
460 return ShrinkBy( old_width
/ width
, old_height
/ height
);
463 image
= ResampleNearest(width
, height
);
466 case wxIMAGE_QUALITY_BILINEAR
:
467 image
= ResampleBilinear(width
, height
);
470 case wxIMAGE_QUALITY_BICUBIC
:
471 image
= ResampleBicubic(width
, height
);
474 case wxIMAGE_QUALITY_BOX_AVERAGE
:
475 image
= ResampleBox(width
, height
);
479 // If the original image has a mask, apply the mask to the new image
480 if (M_IMGDATA
->m_hasMask
)
482 image
.SetMaskColour( M_IMGDATA
->m_maskRed
,
483 M_IMGDATA
->m_maskGreen
,
484 M_IMGDATA
->m_maskBlue
);
487 // In case this is a cursor, make sure the hotspot is scaled accordingly:
488 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
489 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
490 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
)*width
)/old_width
);
491 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
492 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
493 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
)*height
)/old_height
);
498 wxImage
wxImage::ResampleNearest(int width
, int height
) const
501 image
.Create( width
, height
, false );
503 unsigned char *data
= image
.GetData();
505 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
507 const unsigned char *source_data
= M_IMGDATA
->m_data
;
508 unsigned char *target_data
= data
;
509 const unsigned char *source_alpha
= 0 ;
510 unsigned char *target_alpha
= 0 ;
512 if ( !M_IMGDATA
->m_hasMask
)
514 source_alpha
= M_IMGDATA
->m_alpha
;
518 target_alpha
= image
.GetAlpha() ;
522 long old_height
= M_IMGDATA
->m_height
,
523 old_width
= M_IMGDATA
->m_width
;
524 long x_delta
= (old_width
<<16) / width
;
525 long y_delta
= (old_height
<<16) / height
;
527 unsigned char* dest_pixel
= target_data
;
530 for ( long j
= 0; j
< height
; j
++ )
532 const unsigned char* src_line
= &source_data
[(y
>>16)*old_width
*3];
533 const unsigned char* src_alpha_line
= source_alpha
? &source_alpha
[(y
>>16)*old_width
] : 0 ;
536 for ( long i
= 0; i
< width
; i
++ )
538 const unsigned char* src_pixel
= &src_line
[(x
>>16)*3];
539 const unsigned char* src_alpha_pixel
= source_alpha
? &src_alpha_line
[(x
>>16)] : 0 ;
540 dest_pixel
[0] = src_pixel
[0];
541 dest_pixel
[1] = src_pixel
[1];
542 dest_pixel
[2] = src_pixel
[2];
545 *(target_alpha
++) = *src_alpha_pixel
;
555 wxImage
wxImage::ResampleBox(int width
, int height
) const
557 // This function implements a simple pre-blur/box averaging method for
558 // downsampling that gives reasonably smooth results To scale the image
559 // down we will need to gather a grid of pixels of the size of the scale
560 // factor in each direction and then do an averaging of the pixels.
562 wxImage
ret_image(width
, height
, false);
564 const double scale_factor_x
= double(M_IMGDATA
->m_width
) / width
;
565 const double scale_factor_y
= double(M_IMGDATA
->m_height
) / height
;
567 const int scale_factor_x_2
= (int)(scale_factor_x
/ 2);
568 const int scale_factor_y_2
= (int)(scale_factor_y
/ 2);
570 const unsigned char* src_data
= M_IMGDATA
->m_data
;
571 const unsigned char* src_alpha
= M_IMGDATA
->m_alpha
;
572 unsigned char* dst_data
= ret_image
.GetData();
573 unsigned char* dst_alpha
= NULL
;
577 ret_image
.SetAlpha();
578 dst_alpha
= ret_image
.GetAlpha();
581 int averaged_pixels
, src_pixel_index
;
582 double sum_r
, sum_g
, sum_b
, sum_a
;
584 for ( int y
= 0; y
< height
; y
++ ) // Destination image - Y direction
586 // Source pixel in the Y direction
587 int src_y
= (int)(y
* scale_factor_y
);
589 for ( int x
= 0; x
< width
; x
++ ) // Destination image - X direction
591 // Source pixel in the X direction
592 int src_x
= (int)(x
* scale_factor_x
);
594 // Box of pixels to average
596 sum_r
= sum_g
= sum_b
= sum_a
= 0.0;
598 for ( int j
= int(src_y
- scale_factor_y
/2.0 + 1), k
= j
;
599 j
<= int(src_y
+ scale_factor_y_2
) || j
< k
+ 2;
602 // We don't care to average pixels that don't exist (edges)
603 if ( j
< 0 || j
> M_IMGDATA
->m_height
- 1 )
606 for ( int i
= int(src_x
- scale_factor_x
/2.0 + 1), e
= i
;
607 i
<= src_x
+ scale_factor_x_2
|| i
< e
+ 2;
610 // Don't average edge pixels
611 if ( i
< 0 || i
> M_IMGDATA
->m_width
- 1 )
614 // Calculate the actual index in our source pixels
615 src_pixel_index
= j
* M_IMGDATA
->m_width
+ i
;
617 sum_r
+= src_data
[src_pixel_index
* 3 + 0];
618 sum_g
+= src_data
[src_pixel_index
* 3 + 1];
619 sum_b
+= src_data
[src_pixel_index
* 3 + 2];
621 sum_a
+= src_alpha
[src_pixel_index
];
627 // Calculate the average from the sum and number of averaged pixels
628 dst_data
[0] = (unsigned char)(sum_r
/ averaged_pixels
);
629 dst_data
[1] = (unsigned char)(sum_g
/ averaged_pixels
);
630 dst_data
[2] = (unsigned char)(sum_b
/ averaged_pixels
);
633 *dst_alpha
++ = (unsigned char)(sum_a
/ averaged_pixels
);
640 wxImage
wxImage::ResampleBilinear(int width
, int height
) const
642 // This function implements a Bilinear algorithm for resampling.
643 wxImage
ret_image(width
, height
, false);
644 const unsigned char* src_data
= M_IMGDATA
->m_data
;
645 const unsigned char* src_alpha
= M_IMGDATA
->m_alpha
;
646 unsigned char* dst_data
= ret_image
.GetData();
647 unsigned char* dst_alpha
= NULL
;
651 ret_image
.SetAlpha();
652 dst_alpha
= ret_image
.GetAlpha();
654 double HFactor
= double(M_IMGDATA
->m_height
) / height
;
655 double WFactor
= double(M_IMGDATA
->m_width
) / width
;
657 int srcpixymax
= M_IMGDATA
->m_height
- 1;
658 int srcpixxmax
= M_IMGDATA
->m_width
- 1;
660 double srcpixy
, srcpixy1
, srcpixy2
, dy
, dy1
;
661 double srcpixx
, srcpixx1
, srcpixx2
, dx
, dx1
;
663 // initialize alpha values to avoid g++ warnings about possibly
664 // uninitialized variables
665 double r1
, g1
, b1
, a1
= 0;
666 double r2
, g2
, b2
, a2
= 0;
668 for ( int dsty
= 0; dsty
< height
; dsty
++ )
670 // We need to calculate the source pixel to interpolate from - Y-axis
671 srcpixy
= double(dsty
) * HFactor
;
672 srcpixy1
= int(srcpixy
);
673 srcpixy2
= ( srcpixy1
== srcpixymax
) ? srcpixy1
: srcpixy1
+ 1.0;
674 dy
= srcpixy
- (int)srcpixy
;
678 for ( int dstx
= 0; dstx
< width
; dstx
++ )
680 // X-axis of pixel to interpolate from
681 srcpixx
= double(dstx
) * WFactor
;
682 srcpixx1
= int(srcpixx
);
683 srcpixx2
= ( srcpixx1
== srcpixxmax
) ? srcpixx1
: srcpixx1
+ 1.0;
684 dx
= srcpixx
- (int)srcpixx
;
687 int x_offset1
= srcpixx1
< 0.0 ? 0 : srcpixx1
> srcpixxmax
? srcpixxmax
: (int)srcpixx1
;
688 int x_offset2
= srcpixx2
< 0.0 ? 0 : srcpixx2
> srcpixxmax
? srcpixxmax
: (int)srcpixx2
;
689 int y_offset1
= srcpixy1
< 0.0 ? 0 : srcpixy1
> srcpixymax
? srcpixymax
: (int)srcpixy1
;
690 int y_offset2
= srcpixy2
< 0.0 ? 0 : srcpixy2
> srcpixymax
? srcpixymax
: (int)srcpixy2
;
692 int src_pixel_index00
= y_offset1
* M_IMGDATA
->m_width
+ x_offset1
;
693 int src_pixel_index01
= y_offset1
* M_IMGDATA
->m_width
+ x_offset2
;
694 int src_pixel_index10
= y_offset2
* M_IMGDATA
->m_width
+ x_offset1
;
695 int src_pixel_index11
= y_offset2
* M_IMGDATA
->m_width
+ x_offset2
;
698 r1
= src_data
[src_pixel_index00
* 3 + 0] * dx1
+ src_data
[src_pixel_index01
* 3 + 0] * dx
;
699 g1
= src_data
[src_pixel_index00
* 3 + 1] * dx1
+ src_data
[src_pixel_index01
* 3 + 1] * dx
;
700 b1
= src_data
[src_pixel_index00
* 3 + 2] * dx1
+ src_data
[src_pixel_index01
* 3 + 2] * dx
;
702 a1
= src_alpha
[src_pixel_index00
] * dx1
+ src_alpha
[src_pixel_index01
] * dx
;
705 r2
= src_data
[src_pixel_index10
* 3 + 0] * dx1
+ src_data
[src_pixel_index11
* 3 + 0] * dx
;
706 g2
= src_data
[src_pixel_index10
* 3 + 1] * dx1
+ src_data
[src_pixel_index11
* 3 + 1] * dx
;
707 b2
= src_data
[src_pixel_index10
* 3 + 2] * dx1
+ src_data
[src_pixel_index11
* 3 + 2] * dx
;
709 a2
= src_alpha
[src_pixel_index10
] * dx1
+ src_alpha
[src_pixel_index11
] * dx
;
713 dst_data
[0] = static_cast<unsigned char>(r1
* dy1
+ r2
* dy
);
714 dst_data
[1] = static_cast<unsigned char>(g1
* dy1
+ g2
* dy
);
715 dst_data
[2] = static_cast<unsigned char>(b1
* dy1
+ b2
* dy
);
719 *dst_alpha
++ = static_cast<unsigned char>(a1
* dy1
+ a2
* dy
);
726 // The following two local functions are for the B-spline weighting of the
727 // bicubic sampling algorithm
728 static inline double spline_cube(double value
)
730 return value
<= 0.0 ? 0.0 : value
* value
* value
;
733 static inline double spline_weight(double value
)
735 return (spline_cube(value
+ 2) -
736 4 * spline_cube(value
+ 1) +
737 6 * spline_cube(value
) -
738 4 * spline_cube(value
- 1)) / 6;
741 // This is the bicubic resampling algorithm
742 wxImage
wxImage::ResampleBicubic(int width
, int height
) const
744 // This function implements a Bicubic B-Spline algorithm for resampling.
745 // This method is certainly a little slower than wxImage's default pixel
746 // replication method, however for most reasonably sized images not being
747 // upsampled too much on a fairly average CPU this difference is hardly
748 // noticeable and the results are far more pleasing to look at.
750 // This particular bicubic algorithm does pixel weighting according to a
751 // B-Spline that basically implements a Gaussian bell-like weighting
752 // kernel. Because of this method the results may appear a bit blurry when
753 // upsampling by large factors. This is basically because a slight
754 // gaussian blur is being performed to get the smooth look of the upsampled
757 // Edge pixels: 3-4 possible solutions
758 // - (Wrap/tile) Wrap the image, take the color value from the opposite
759 // side of the image.
760 // - (Mirror) Duplicate edge pixels, so that pixel at coordinate (2, n),
761 // where n is nonpositive, will have the value of (2, 1).
762 // - (Ignore) Simply ignore the edge pixels and apply the kernel only to
763 // pixels which do have all neighbours.
764 // - (Clamp) Choose the nearest pixel along the border. This takes the
765 // border pixels and extends them out to infinity.
767 // NOTE: below the y_offset and x_offset variables are being set for edge
768 // pixels using the "Mirror" method mentioned above
772 ret_image
.Create(width
, height
, false);
774 const unsigned char* src_data
= M_IMGDATA
->m_data
;
775 const unsigned char* src_alpha
= M_IMGDATA
->m_alpha
;
776 unsigned char* dst_data
= ret_image
.GetData();
777 unsigned char* dst_alpha
= NULL
;
781 ret_image
.SetAlpha();
782 dst_alpha
= ret_image
.GetAlpha();
785 for ( int dsty
= 0; dsty
< height
; dsty
++ )
787 // We need to calculate the source pixel to interpolate from - Y-axis
788 double srcpixy
= double(dsty
* M_IMGDATA
->m_height
) / height
;
789 double dy
= srcpixy
- (int)srcpixy
;
791 for ( int dstx
= 0; dstx
< width
; dstx
++ )
793 // X-axis of pixel to interpolate from
794 double srcpixx
= double(dstx
* M_IMGDATA
->m_width
) / width
;
795 double dx
= srcpixx
- (int)srcpixx
;
797 // Sums for each color channel
798 double sum_r
= 0, sum_g
= 0, sum_b
= 0, sum_a
= 0;
800 // Here we actually determine the RGBA values for the destination pixel
801 for ( int k
= -1; k
<= 2; k
++ )
804 int y_offset
= srcpixy
+ k
< 0.0
806 : srcpixy
+ k
>= M_IMGDATA
->m_height
807 ? M_IMGDATA
->m_height
- 1
808 : (int)(srcpixy
+ k
);
810 // Loop across the X axis
811 for ( int i
= -1; i
<= 2; i
++ )
814 int x_offset
= srcpixx
+ i
< 0.0
816 : srcpixx
+ i
>= M_IMGDATA
->m_width
817 ? M_IMGDATA
->m_width
- 1
818 : (int)(srcpixx
+ i
);
820 // Calculate the exact position where the source data
821 // should be pulled from based on the x_offset and y_offset
822 int src_pixel_index
= y_offset
*M_IMGDATA
->m_width
+ x_offset
;
824 // Calculate the weight for the specified pixel according
825 // to the bicubic b-spline kernel we're using for
828 pixel_weight
= spline_weight(i
- dx
)*spline_weight(k
- dy
);
830 // Create a sum of all velues for each color channel
831 // adjusted for the pixel's calculated weight
832 sum_r
+= src_data
[src_pixel_index
* 3 + 0] * pixel_weight
;
833 sum_g
+= src_data
[src_pixel_index
* 3 + 1] * pixel_weight
;
834 sum_b
+= src_data
[src_pixel_index
* 3 + 2] * pixel_weight
;
836 sum_a
+= src_alpha
[src_pixel_index
] * pixel_weight
;
840 // Put the data into the destination image. The summed values are
841 // of double data type and are rounded here for accuracy
842 dst_data
[0] = (unsigned char)(sum_r
+ 0.5);
843 dst_data
[1] = (unsigned char)(sum_g
+ 0.5);
844 dst_data
[2] = (unsigned char)(sum_b
+ 0.5);
848 *dst_alpha
++ = (unsigned char)sum_a
;
855 // Blur in the horizontal direction
856 wxImage
wxImage::BlurHorizontal(int blurRadius
) const
858 wxImage
ret_image(MakeEmptyClone());
860 wxCHECK( ret_image
.IsOk(), ret_image
);
862 const unsigned char* src_data
= M_IMGDATA
->m_data
;
863 unsigned char* dst_data
= ret_image
.GetData();
864 const unsigned char* src_alpha
= M_IMGDATA
->m_alpha
;
865 unsigned char* dst_alpha
= ret_image
.GetAlpha();
867 // number of pixels we average over
868 const int blurArea
= blurRadius
*2 + 1;
870 // Horizontal blurring algorithm - average all pixels in the specified blur
871 // radius in the X or horizontal direction
872 for ( int y
= 0; y
< M_IMGDATA
->m_height
; y
++ )
874 // Variables used in the blurring algorithm
881 const unsigned char *src
;
884 // Calculate the average of all pixels in the blur radius for the first
886 for ( int kernel_x
= -blurRadius
; kernel_x
<= blurRadius
; kernel_x
++ )
888 // To deal with the pixels at the start of a row so it's not
889 // grabbing GOK values from memory at negative indices of the
890 // image's data or grabbing from the previous row
892 pixel_idx
= y
* M_IMGDATA
->m_width
;
894 pixel_idx
= kernel_x
+ y
* M_IMGDATA
->m_width
;
896 src
= src_data
+ pixel_idx
*3;
901 sum_a
+= src_alpha
[pixel_idx
];
904 dst
= dst_data
+ y
* M_IMGDATA
->m_width
*3;
905 dst
[0] = (unsigned char)(sum_r
/ blurArea
);
906 dst
[1] = (unsigned char)(sum_g
/ blurArea
);
907 dst
[2] = (unsigned char)(sum_b
/ blurArea
);
909 dst_alpha
[y
* M_IMGDATA
->m_width
] = (unsigned char)(sum_a
/ blurArea
);
911 // Now average the values of the rest of the pixels by just moving the
912 // blur radius box along the row
913 for ( int x
= 1; x
< M_IMGDATA
->m_width
; x
++ )
915 // Take care of edge pixels on the left edge by essentially
916 // duplicating the edge pixel
917 if ( x
- blurRadius
- 1 < 0 )
918 pixel_idx
= y
* M_IMGDATA
->m_width
;
920 pixel_idx
= (x
- blurRadius
- 1) + y
* M_IMGDATA
->m_width
;
922 // Subtract the value of the pixel at the left side of the blur
924 src
= src_data
+ pixel_idx
*3;
929 sum_a
-= src_alpha
[pixel_idx
];
931 // Take care of edge pixels on the right edge
932 if ( x
+ blurRadius
> M_IMGDATA
->m_width
- 1 )
933 pixel_idx
= M_IMGDATA
->m_width
- 1 + y
* M_IMGDATA
->m_width
;
935 pixel_idx
= x
+ blurRadius
+ y
* M_IMGDATA
->m_width
;
937 // Add the value of the pixel being added to the end of our box
938 src
= src_data
+ pixel_idx
*3;
943 sum_a
+= src_alpha
[pixel_idx
];
945 // Save off the averaged data
946 dst
= dst_data
+ x
*3 + y
*M_IMGDATA
->m_width
*3;
947 dst
[0] = (unsigned char)(sum_r
/ blurArea
);
948 dst
[1] = (unsigned char)(sum_g
/ blurArea
);
949 dst
[2] = (unsigned char)(sum_b
/ blurArea
);
951 dst_alpha
[x
+ y
* M_IMGDATA
->m_width
] = (unsigned char)(sum_a
/ blurArea
);
958 // Blur in the vertical direction
959 wxImage
wxImage::BlurVertical(int blurRadius
) const
961 wxImage
ret_image(MakeEmptyClone());
963 wxCHECK( ret_image
.IsOk(), ret_image
);
965 const unsigned char* src_data
= M_IMGDATA
->m_data
;
966 unsigned char* dst_data
= ret_image
.GetData();
967 const unsigned char* src_alpha
= M_IMGDATA
->m_alpha
;
968 unsigned char* dst_alpha
= ret_image
.GetAlpha();
970 // number of pixels we average over
971 const int blurArea
= blurRadius
*2 + 1;
973 // Vertical blurring algorithm - same as horizontal but switched the
974 // opposite direction
975 for ( int x
= 0; x
< M_IMGDATA
->m_width
; x
++ )
977 // Variables used in the blurring algorithm
984 const unsigned char *src
;
987 // Calculate the average of all pixels in our blur radius box for the
988 // first pixel of the column
989 for ( int kernel_y
= -blurRadius
; kernel_y
<= blurRadius
; kernel_y
++ )
991 // To deal with the pixels at the start of a column so it's not
992 // grabbing GOK values from memory at negative indices of the
993 // image's data or grabbing from the previous column
997 pixel_idx
= x
+ kernel_y
* M_IMGDATA
->m_width
;
999 src
= src_data
+ pixel_idx
*3;
1004 sum_a
+= src_alpha
[pixel_idx
];
1007 dst
= dst_data
+ x
*3;
1008 dst
[0] = (unsigned char)(sum_r
/ blurArea
);
1009 dst
[1] = (unsigned char)(sum_g
/ blurArea
);
1010 dst
[2] = (unsigned char)(sum_b
/ blurArea
);
1012 dst_alpha
[x
] = (unsigned char)(sum_a
/ blurArea
);
1014 // Now average the values of the rest of the pixels by just moving the
1015 // box along the column from top to bottom
1016 for ( int y
= 1; y
< M_IMGDATA
->m_height
; y
++ )
1018 // Take care of pixels that would be beyond the top edge by
1019 // duplicating the top edge pixel for the column
1020 if ( y
- blurRadius
- 1 < 0 )
1023 pixel_idx
= x
+ (y
- blurRadius
- 1) * M_IMGDATA
->m_width
;
1025 // Subtract the value of the pixel at the top of our blur radius box
1026 src
= src_data
+ pixel_idx
*3;
1031 sum_a
-= src_alpha
[pixel_idx
];
1033 // Take care of the pixels that would be beyond the bottom edge of
1034 // the image similar to the top edge
1035 if ( y
+ blurRadius
> M_IMGDATA
->m_height
- 1 )
1036 pixel_idx
= x
+ (M_IMGDATA
->m_height
- 1) * M_IMGDATA
->m_width
;
1038 pixel_idx
= x
+ (blurRadius
+ y
) * M_IMGDATA
->m_width
;
1040 // Add the value of the pixel being added to the end of our box
1041 src
= src_data
+ pixel_idx
*3;
1046 sum_a
+= src_alpha
[pixel_idx
];
1048 // Save off the averaged data
1049 dst
= dst_data
+ (x
+ y
* M_IMGDATA
->m_width
) * 3;
1050 dst
[0] = (unsigned char)(sum_r
/ blurArea
);
1051 dst
[1] = (unsigned char)(sum_g
/ blurArea
);
1052 dst
[2] = (unsigned char)(sum_b
/ blurArea
);
1054 dst_alpha
[x
+ y
* M_IMGDATA
->m_width
] = (unsigned char)(sum_a
/ blurArea
);
1061 // The new blur function
1062 wxImage
wxImage::Blur(int blurRadius
) const
1065 ret_image
.Create(M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false);
1067 // Blur the image in each direction
1068 ret_image
= BlurHorizontal(blurRadius
);
1069 ret_image
= ret_image
.BlurVertical(blurRadius
);
1074 wxImage
wxImage::Rotate90( bool clockwise
) const
1076 wxImage
image(MakeEmptyClone(Clone_SwapOrientation
));
1078 wxCHECK( image
.IsOk(), image
);
1080 long height
= M_IMGDATA
->m_height
;
1081 long width
= M_IMGDATA
->m_width
;
1083 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
1085 int hot_x
= GetOptionInt( wxIMAGE_OPTION_CUR_HOTSPOT_X
);
1086 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
1087 clockwise
? hot_x
: width
- 1 - hot_x
);
1090 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
1092 int hot_y
= GetOptionInt( wxIMAGE_OPTION_CUR_HOTSPOT_Y
);
1093 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
1094 clockwise
? height
- 1 - hot_y
: hot_y
);
1097 unsigned char *data
= image
.GetData();
1098 unsigned char *target_data
;
1100 // we rotate the image in 21-pixel (63-byte) wide strips
1101 // to make better use of cpu cache - memory transfers
1102 // (note: while much better than single-pixel "strips",
1103 // our vertical strips will still generally straddle 64-byte cachelines)
1104 for (long ii
= 0; ii
< width
; )
1106 long next_ii
= wxMin(ii
+ 21, width
);
1108 for (long j
= 0; j
< height
; j
++)
1110 const unsigned char *source_data
1111 = M_IMGDATA
->m_data
+ (j
*width
+ ii
)*3;
1113 for (long i
= ii
; i
< next_ii
; i
++)
1117 target_data
= data
+ ((i
+ 1)*height
- j
- 1)*3;
1121 target_data
= data
+ (height
*(width
- 1 - i
) + j
)*3;
1123 memcpy( target_data
, source_data
, 3 );
1131 const unsigned char *source_alpha
= M_IMGDATA
->m_alpha
;
1135 unsigned char *alpha_data
= image
.GetAlpha();
1136 unsigned char *target_alpha
= 0 ;
1138 for (long ii
= 0; ii
< width
; )
1140 long next_ii
= wxMin(ii
+ 64, width
);
1142 for (long j
= 0; j
< height
; j
++)
1144 source_alpha
= M_IMGDATA
->m_alpha
+ j
*width
+ ii
;
1146 for (long i
= ii
; i
< next_ii
; i
++)
1150 target_alpha
= alpha_data
+ (i
+1)*height
- j
- 1;
1154 target_alpha
= alpha_data
+ height
*(width
- i
- 1) + j
;
1157 *target_alpha
= *source_alpha
++;
1168 wxImage
wxImage::Rotate180() const
1170 wxImage
image(MakeEmptyClone());
1172 wxCHECK( image
.IsOk(), image
);
1174 long height
= M_IMGDATA
->m_height
;
1175 long width
= M_IMGDATA
->m_width
;
1177 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
1179 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
1180 width
- 1 - GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
));
1183 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
1185 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
1186 height
- 1 - GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
));
1189 unsigned char *data
= image
.GetData();
1190 unsigned char *alpha
= image
.GetAlpha();
1191 const unsigned char *source_data
= M_IMGDATA
->m_data
;
1192 unsigned char *target_data
= data
+ width
* height
* 3;
1194 for (long j
= 0; j
< height
; j
++)
1196 for (long i
= 0; i
< width
; i
++)
1199 memcpy( target_data
, source_data
, 3 );
1206 const unsigned char *src_alpha
= M_IMGDATA
->m_alpha
;
1207 unsigned char *dest_alpha
= alpha
+ width
* height
;
1209 for (long j
= 0; j
< height
; ++j
)
1211 for (long i
= 0; i
< width
; ++i
)
1213 *(--dest_alpha
) = *(src_alpha
++);
1221 wxImage
wxImage::Mirror( bool horizontally
) const
1223 wxImage
image(MakeEmptyClone());
1225 wxCHECK( image
.IsOk(), image
);
1227 long height
= M_IMGDATA
->m_height
;
1228 long width
= M_IMGDATA
->m_width
;
1230 unsigned char *data
= image
.GetData();
1231 unsigned char *alpha
= image
.GetAlpha();
1232 const unsigned char *source_data
= M_IMGDATA
->m_data
;
1233 unsigned char *target_data
;
1237 for (long j
= 0; j
< height
; j
++)
1240 target_data
= data
-3;
1241 for (long i
= 0; i
< width
; i
++)
1243 memcpy( target_data
, source_data
, 3 );
1251 // src_alpha starts at the first pixel and increases by 1 after each step
1252 // (a step here is the copy of the alpha value of one pixel)
1253 const unsigned char *src_alpha
= M_IMGDATA
->m_alpha
;
1254 // dest_alpha starts just beyond the first line, decreases before each step,
1255 // and after each line is finished, increases by 2 widths (skipping the line
1256 // just copied and the line that will be copied next)
1257 unsigned char *dest_alpha
= alpha
+ width
;
1259 for (long jj
= 0; jj
< height
; ++jj
)
1261 for (long i
= 0; i
< width
; ++i
) {
1262 *(--dest_alpha
) = *(src_alpha
++); // copy one pixel
1264 dest_alpha
+= 2 * width
; // advance beyond the end of the next line
1270 for (long i
= 0; i
< height
; i
++)
1272 target_data
= data
+ 3*width
*(height
-1-i
);
1273 memcpy( target_data
, source_data
, (size_t)3*width
);
1274 source_data
+= 3*width
;
1279 // src_alpha starts at the first pixel and increases by 1 width after each step
1280 // (a step here is the copy of the alpha channel of an entire line)
1281 const unsigned char *src_alpha
= M_IMGDATA
->m_alpha
;
1282 // dest_alpha starts just beyond the last line (beyond the whole image)
1283 // and decreases by 1 width before each step
1284 unsigned char *dest_alpha
= alpha
+ width
* height
;
1286 for (long jj
= 0; jj
< height
; ++jj
)
1288 dest_alpha
-= width
;
1289 memcpy( dest_alpha
, src_alpha
, (size_t)width
);
1298 wxImage
wxImage::GetSubImage( const wxRect
&rect
) const
1302 wxCHECK_MSG( IsOk(), image
, wxT("invalid image") );
1304 wxCHECK_MSG( (rect
.GetLeft()>=0) && (rect
.GetTop()>=0) &&
1305 (rect
.GetRight()<=GetWidth()) && (rect
.GetBottom()<=GetHeight()),
1306 image
, wxT("invalid subimage size") );
1308 const int subwidth
= rect
.GetWidth();
1309 const int subheight
= rect
.GetHeight();
1311 image
.Create( subwidth
, subheight
, false );
1313 const unsigned char *src_data
= GetData();
1314 const unsigned char *src_alpha
= M_IMGDATA
->m_alpha
;
1315 unsigned char *subdata
= image
.GetData();
1316 unsigned char *subalpha
= NULL
;
1318 wxCHECK_MSG( subdata
, image
, wxT("unable to create image") );
1322 subalpha
= image
.GetAlpha();
1323 wxCHECK_MSG( subalpha
, image
, wxT("unable to create alpha channel"));
1326 if (M_IMGDATA
->m_hasMask
)
1327 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
1329 const int width
= GetWidth();
1330 const int pixsoff
= rect
.GetLeft() + width
* rect
.GetTop();
1332 src_data
+= 3 * pixsoff
;
1333 src_alpha
+= pixsoff
; // won't be used if was NULL, so this is ok
1335 for (long j
= 0; j
< subheight
; ++j
)
1337 memcpy( subdata
, src_data
, 3 * subwidth
);
1338 subdata
+= 3 * subwidth
;
1339 src_data
+= 3 * width
;
1340 if (subalpha
!= NULL
) {
1341 memcpy( subalpha
, src_alpha
, subwidth
);
1342 subalpha
+= subwidth
;
1350 wxImage
wxImage::Size( const wxSize
& size
, const wxPoint
& pos
,
1351 int r_
, int g_
, int b_
) const
1355 wxCHECK_MSG( IsOk(), image
, wxT("invalid image") );
1356 wxCHECK_MSG( (size
.GetWidth() > 0) && (size
.GetHeight() > 0), image
, wxT("invalid size") );
1358 int width
= GetWidth(), height
= GetHeight();
1359 image
.Create(size
.GetWidth(), size
.GetHeight(), false);
1361 unsigned char r
= (unsigned char)r_
;
1362 unsigned char g
= (unsigned char)g_
;
1363 unsigned char b
= (unsigned char)b_
;
1364 if ((r_
== -1) && (g_
== -1) && (b_
== -1))
1366 GetOrFindMaskColour( &r
, &g
, &b
);
1367 image
.SetMaskColour(r
, g
, b
);
1370 image
.SetRGB(wxRect(), r
, g
, b
);
1372 // we have two coordinate systems:
1373 // source: starting at 0,0 of source image
1374 // destination starting at 0,0 of destination image
1375 // Documentation says:
1376 // "The image is pasted into a new image [...] at the position pos relative
1377 // to the upper left of the new image." this means the transition rule is:
1378 // "dest coord" = "source coord" + pos;
1380 // calculate the intersection using source coordinates:
1381 wxRect
srcRect(0, 0, width
, height
);
1382 wxRect
dstRect(-pos
, size
);
1384 srcRect
.Intersect(dstRect
);
1386 if (!srcRect
.IsEmpty())
1388 // insertion point is needed in destination coordinates.
1389 // NB: it is not always "pos"!
1390 wxPoint ptInsert
= srcRect
.GetTopLeft() + pos
;
1392 if ((srcRect
.GetWidth() == width
) && (srcRect
.GetHeight() == height
))
1393 image
.Paste(*this, ptInsert
.x
, ptInsert
.y
);
1395 image
.Paste(GetSubImage(srcRect
), ptInsert
.x
, ptInsert
.y
);
1401 void wxImage::Paste( const wxImage
&image
, int x
, int y
)
1403 wxCHECK_RET( IsOk(), wxT("invalid image") );
1404 wxCHECK_RET( image
.IsOk(), wxT("invalid image") );
1410 int width
= image
.GetWidth();
1411 int height
= image
.GetHeight();
1424 if ((x
+xx
)+width
> M_IMGDATA
->m_width
)
1425 width
= M_IMGDATA
->m_width
- (x
+xx
);
1426 if ((y
+yy
)+height
> M_IMGDATA
->m_height
)
1427 height
= M_IMGDATA
->m_height
- (y
+yy
);
1429 if (width
< 1) return;
1430 if (height
< 1) return;
1432 // If we can, copy the data using memcpy() as this is the fastest way. But
1433 // for this the image being pasted must have "compatible" mask with this
1434 // one meaning that either it must not have one at all or it must use the
1435 // same masked colour.
1436 if ( !image
.HasMask() ||
1438 (GetMaskRed()==image
.GetMaskRed()) &&
1439 (GetMaskGreen()==image
.GetMaskGreen()) &&
1440 (GetMaskBlue()==image
.GetMaskBlue()))) )
1442 const unsigned char* source_data
= image
.GetData() + 3*(xx
+ yy
*image
.GetWidth());
1443 int source_step
= image
.GetWidth()*3;
1445 unsigned char* target_data
= GetData() + 3*((x
+xx
) + (y
+yy
)*M_IMGDATA
->m_width
);
1446 int target_step
= M_IMGDATA
->m_width
*3;
1447 for (int j
= 0; j
< height
; j
++)
1449 memcpy( target_data
, source_data
, width
*3 );
1450 source_data
+= source_step
;
1451 target_data
+= target_step
;
1455 // Copy over the alpha channel from the original image
1456 if ( image
.HasAlpha() )
1461 const unsigned char* source_data
= image
.GetAlpha() + xx
+ yy
*image
.GetWidth();
1462 int source_step
= image
.GetWidth();
1464 unsigned char* target_data
= GetAlpha() + (x
+xx
) + (y
+yy
)*M_IMGDATA
->m_width
;
1465 int target_step
= M_IMGDATA
->m_width
;
1467 for (int j
= 0; j
< height
; j
++,
1468 source_data
+= source_step
,
1469 target_data
+= target_step
)
1471 memcpy( target_data
, source_data
, width
);
1475 if (!HasMask() && image
.HasMask())
1477 unsigned char r
= image
.GetMaskRed();
1478 unsigned char g
= image
.GetMaskGreen();
1479 unsigned char b
= image
.GetMaskBlue();
1481 const unsigned char* source_data
= image
.GetData() + 3*(xx
+ yy
*image
.GetWidth());
1482 int source_step
= image
.GetWidth()*3;
1484 unsigned char* target_data
= GetData() + 3*((x
+xx
) + (y
+yy
)*M_IMGDATA
->m_width
);
1485 int target_step
= M_IMGDATA
->m_width
*3;
1487 for (int j
= 0; j
< height
; j
++)
1489 for (int i
= 0; i
< width
*3; i
+=3)
1491 if ((source_data
[i
] != r
) ||
1492 (source_data
[i
+1] != g
) ||
1493 (source_data
[i
+2] != b
))
1495 memcpy( target_data
+i
, source_data
+i
, 3 );
1498 source_data
+= source_step
;
1499 target_data
+= target_step
;
1504 void wxImage::Replace( unsigned char r1
, unsigned char g1
, unsigned char b1
,
1505 unsigned char r2
, unsigned char g2
, unsigned char b2
)
1507 wxCHECK_RET( IsOk(), wxT("invalid image") );
1511 unsigned char *data
= GetData();
1513 const int w
= GetWidth();
1514 const int h
= GetHeight();
1516 for (int j
= 0; j
< h
; j
++)
1517 for (int i
= 0; i
< w
; i
++)
1519 if ((data
[0] == r1
) && (data
[1] == g1
) && (data
[2] == b1
))
1529 wxImage
wxImage::ConvertToGreyscale(void) const
1531 return ConvertToGreyscale(0.299, 0.587, 0.114);
1534 wxImage
wxImage::ConvertToGreyscale(double weight_r
, double weight_g
, double weight_b
) const
1536 wxImage
image(MakeEmptyClone());
1538 wxCHECK( image
.IsOk(), image
);
1540 const unsigned char *src
= M_IMGDATA
->m_data
;
1541 unsigned char *dest
= image
.GetData();
1543 const bool hasMask
= M_IMGDATA
->m_hasMask
;
1544 const unsigned char maskRed
= M_IMGDATA
->m_maskRed
;
1545 const unsigned char maskGreen
= M_IMGDATA
->m_maskGreen
;
1546 const unsigned char maskBlue
= M_IMGDATA
->m_maskBlue
;
1548 const long size
= M_IMGDATA
->m_width
* M_IMGDATA
->m_height
;
1549 for ( long i
= 0; i
< size
; i
++, src
+= 3, dest
+= 3 )
1551 memcpy(dest
, src
, 3);
1552 // only modify non-masked pixels
1553 if ( !hasMask
|| src
[0] != maskRed
|| src
[1] != maskGreen
|| src
[2] != maskBlue
)
1555 wxColour::MakeGrey(dest
+ 0, dest
+ 1, dest
+ 2, weight_r
, weight_g
, weight_b
);
1559 // copy the alpha channel, if any
1560 if ( image
.HasAlpha() )
1562 memcpy( image
.GetAlpha(), GetAlpha(), GetWidth() * GetHeight() );
1568 wxImage
wxImage::ConvertToMono( unsigned char r
, unsigned char g
, unsigned char b
) const
1572 wxCHECK_MSG( IsOk(), image
, wxT("invalid image") );
1574 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false );
1576 unsigned char *data
= image
.GetData();
1578 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
1580 if (M_IMGDATA
->m_hasMask
)
1582 if (M_IMGDATA
->m_maskRed
== r
&& M_IMGDATA
->m_maskGreen
== g
&&
1583 M_IMGDATA
->m_maskBlue
== b
)
1584 image
.SetMaskColour( 255, 255, 255 );
1586 image
.SetMaskColour( 0, 0, 0 );
1589 long size
= M_IMGDATA
->m_height
* M_IMGDATA
->m_width
;
1591 unsigned char *srcd
= M_IMGDATA
->m_data
;
1592 unsigned char *tard
= image
.GetData();
1594 for ( long i
= 0; i
< size
; i
++, srcd
+= 3, tard
+= 3 )
1596 bool on
= (srcd
[0] == r
) && (srcd
[1] == g
) && (srcd
[2] == b
);
1597 wxColourBase::MakeMono(tard
+ 0, tard
+ 1, tard
+ 2, on
);
1603 wxImage
wxImage::ConvertToDisabled(unsigned char brightness
) const
1605 wxImage image
= *this;
1607 unsigned char mr
= image
.GetMaskRed();
1608 unsigned char mg
= image
.GetMaskGreen();
1609 unsigned char mb
= image
.GetMaskBlue();
1611 int width
= image
.GetWidth();
1612 int height
= image
.GetHeight();
1613 bool has_mask
= image
.HasMask();
1615 for (int y
= height
-1; y
>= 0; --y
)
1617 for (int x
= width
-1; x
>= 0; --x
)
1619 unsigned char* data
= image
.GetData() + (y
*(width
*3))+(x
*3);
1620 unsigned char* r
= data
;
1621 unsigned char* g
= data
+1;
1622 unsigned char* b
= data
+2;
1624 if (has_mask
&& (*r
== mr
) && (*g
== mg
) && (*b
== mb
))
1627 wxColour::MakeDisabled(r
, g
, b
, brightness
);
1633 int wxImage::GetWidth() const
1635 wxCHECK_MSG( IsOk(), 0, wxT("invalid image") );
1637 return M_IMGDATA
->m_width
;
1640 int wxImage::GetHeight() const
1642 wxCHECK_MSG( IsOk(), 0, wxT("invalid image") );
1644 return M_IMGDATA
->m_height
;
1647 wxBitmapType
wxImage::GetType() const
1649 wxCHECK_MSG( IsOk(), wxBITMAP_TYPE_INVALID
, wxT("invalid image") );
1651 return M_IMGDATA
->m_type
;
1654 void wxImage::SetType(wxBitmapType type
)
1656 wxCHECK_RET( IsOk(), "must create the image before setting its type");
1658 // type can be wxBITMAP_TYPE_INVALID to reset the image type to default
1659 wxASSERT_MSG( type
!= wxBITMAP_TYPE_MAX
, "invalid bitmap type" );
1661 M_IMGDATA
->m_type
= type
;
1664 long wxImage::XYToIndex(int x
, int y
) const
1668 x
< M_IMGDATA
->m_width
&& y
< M_IMGDATA
->m_height
)
1670 return y
*M_IMGDATA
->m_width
+ x
;
1676 void wxImage::SetRGB( int x
, int y
, unsigned char r
, unsigned char g
, unsigned char b
)
1678 long pos
= XYToIndex(x
, y
);
1679 wxCHECK_RET( pos
!= -1, wxT("invalid image coordinates") );
1685 M_IMGDATA
->m_data
[ pos
] = r
;
1686 M_IMGDATA
->m_data
[ pos
+1 ] = g
;
1687 M_IMGDATA
->m_data
[ pos
+2 ] = b
;
1690 void wxImage::SetRGB( const wxRect
& rect_
, unsigned char r
, unsigned char g
, unsigned char b
)
1692 wxCHECK_RET( IsOk(), wxT("invalid image") );
1697 wxRect
imageRect(0, 0, GetWidth(), GetHeight());
1698 if ( rect
== wxRect() )
1704 wxCHECK_RET( imageRect
.Contains(rect
.GetTopLeft()) &&
1705 imageRect
.Contains(rect
.GetBottomRight()),
1706 wxT("invalid bounding rectangle") );
1709 int x1
= rect
.GetLeft(),
1711 x2
= rect
.GetRight() + 1,
1712 y2
= rect
.GetBottom() + 1;
1714 unsigned char *data
wxDUMMY_INITIALIZE(NULL
);
1715 int x
, y
, width
= GetWidth();
1716 for (y
= y1
; y
< y2
; y
++)
1718 data
= M_IMGDATA
->m_data
+ (y
*width
+ x1
)*3;
1719 for (x
= x1
; x
< x2
; x
++)
1728 unsigned char wxImage::GetRed( int x
, int y
) const
1730 long pos
= XYToIndex(x
, y
);
1731 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
1735 return M_IMGDATA
->m_data
[pos
];
1738 unsigned char wxImage::GetGreen( int x
, int y
) const
1740 long pos
= XYToIndex(x
, y
);
1741 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
1745 return M_IMGDATA
->m_data
[pos
+1];
1748 unsigned char wxImage::GetBlue( int x
, int y
) const
1750 long pos
= XYToIndex(x
, y
);
1751 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
1755 return M_IMGDATA
->m_data
[pos
+2];
1758 bool wxImage::IsOk() const
1760 // image of 0 width or height can't be considered ok - at least because it
1761 // causes crashes in ConvertToBitmap() if we don't catch it in time
1762 wxImageRefData
*data
= M_IMGDATA
;
1763 return data
&& data
->m_ok
&& data
->m_width
&& data
->m_height
;
1766 unsigned char *wxImage::GetData() const
1768 wxCHECK_MSG( IsOk(), (unsigned char *)NULL
, wxT("invalid image") );
1770 return M_IMGDATA
->m_data
;
1773 void wxImage::SetData( unsigned char *data
, bool static_data
)
1775 wxCHECK_RET( IsOk(), wxT("invalid image") );
1777 wxImageRefData
*newRefData
= new wxImageRefData();
1779 newRefData
->m_width
= M_IMGDATA
->m_width
;
1780 newRefData
->m_height
= M_IMGDATA
->m_height
;
1781 newRefData
->m_data
= data
;
1782 newRefData
->m_ok
= true;
1783 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
1784 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
1785 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
1786 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
1787 newRefData
->m_static
= static_data
;
1791 m_refData
= newRefData
;
1794 void wxImage::SetData( unsigned char *data
, int new_width
, int new_height
, bool static_data
)
1796 wxImageRefData
*newRefData
= new wxImageRefData();
1800 newRefData
->m_width
= new_width
;
1801 newRefData
->m_height
= new_height
;
1802 newRefData
->m_data
= data
;
1803 newRefData
->m_ok
= true;
1804 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
1805 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
1806 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
1807 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
1811 newRefData
->m_width
= new_width
;
1812 newRefData
->m_height
= new_height
;
1813 newRefData
->m_data
= data
;
1814 newRefData
->m_ok
= true;
1816 newRefData
->m_static
= static_data
;
1820 m_refData
= newRefData
;
1823 // ----------------------------------------------------------------------------
1824 // alpha channel support
1825 // ----------------------------------------------------------------------------
1827 void wxImage::SetAlpha(int x
, int y
, unsigned char alpha
)
1829 wxCHECK_RET( HasAlpha(), wxT("no alpha channel") );
1831 long pos
= XYToIndex(x
, y
);
1832 wxCHECK_RET( pos
!= -1, wxT("invalid image coordinates") );
1836 M_IMGDATA
->m_alpha
[pos
] = alpha
;
1839 unsigned char wxImage::GetAlpha(int x
, int y
) const
1841 wxCHECK_MSG( HasAlpha(), 0, wxT("no alpha channel") );
1843 long pos
= XYToIndex(x
, y
);
1844 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
1846 return M_IMGDATA
->m_alpha
[pos
];
1850 wxImage::ConvertColourToAlpha(unsigned char r
, unsigned char g
, unsigned char b
)
1854 const int w
= M_IMGDATA
->m_width
;
1855 const int h
= M_IMGDATA
->m_height
;
1857 unsigned char *alpha
= GetAlpha();
1858 unsigned char *data
= GetData();
1860 for ( int y
= 0; y
< h
; y
++ )
1862 for ( int x
= 0; x
< w
; x
++ )
1874 void wxImage::SetAlpha( unsigned char *alpha
, bool static_data
)
1876 wxCHECK_RET( IsOk(), wxT("invalid image") );
1882 alpha
= (unsigned char *)malloc(M_IMGDATA
->m_width
*M_IMGDATA
->m_height
);
1885 if( !M_IMGDATA
->m_staticAlpha
)
1886 free(M_IMGDATA
->m_alpha
);
1888 M_IMGDATA
->m_alpha
= alpha
;
1889 M_IMGDATA
->m_staticAlpha
= static_data
;
1892 unsigned char *wxImage::GetAlpha() const
1894 wxCHECK_MSG( IsOk(), (unsigned char *)NULL
, wxT("invalid image") );
1896 return M_IMGDATA
->m_alpha
;
1899 void wxImage::InitAlpha()
1901 wxCHECK_RET( !HasAlpha(), wxT("image already has an alpha channel") );
1903 // initialize memory for alpha channel
1906 unsigned char *alpha
= M_IMGDATA
->m_alpha
;
1907 const size_t lenAlpha
= M_IMGDATA
->m_width
* M_IMGDATA
->m_height
;
1911 // use the mask to initialize the alpha channel.
1912 const unsigned char * const alphaEnd
= alpha
+ lenAlpha
;
1914 const unsigned char mr
= M_IMGDATA
->m_maskRed
;
1915 const unsigned char mg
= M_IMGDATA
->m_maskGreen
;
1916 const unsigned char mb
= M_IMGDATA
->m_maskBlue
;
1917 for ( unsigned char *src
= M_IMGDATA
->m_data
;
1921 *alpha
= (src
[0] == mr
&& src
[1] == mg
&& src
[2] == mb
)
1922 ? wxIMAGE_ALPHA_TRANSPARENT
1923 : wxIMAGE_ALPHA_OPAQUE
;
1926 M_IMGDATA
->m_hasMask
= false;
1930 // make the image fully opaque
1931 memset(alpha
, wxIMAGE_ALPHA_OPAQUE
, lenAlpha
);
1935 void wxImage::ClearAlpha()
1937 wxCHECK_RET( HasAlpha(), wxT("image already doesn't have an alpha channel") );
1939 if ( !M_IMGDATA
->m_staticAlpha
)
1940 free( M_IMGDATA
->m_alpha
);
1942 M_IMGDATA
->m_alpha
= NULL
;
1946 // ----------------------------------------------------------------------------
1948 // ----------------------------------------------------------------------------
1950 void wxImage::SetMaskColour( unsigned char r
, unsigned char g
, unsigned char b
)
1952 wxCHECK_RET( IsOk(), wxT("invalid image") );
1956 M_IMGDATA
->m_maskRed
= r
;
1957 M_IMGDATA
->m_maskGreen
= g
;
1958 M_IMGDATA
->m_maskBlue
= b
;
1959 M_IMGDATA
->m_hasMask
= true;
1962 bool wxImage::GetOrFindMaskColour( unsigned char *r
, unsigned char *g
, unsigned char *b
) const
1964 wxCHECK_MSG( IsOk(), false, wxT("invalid image") );
1966 if (M_IMGDATA
->m_hasMask
)
1968 if (r
) *r
= M_IMGDATA
->m_maskRed
;
1969 if (g
) *g
= M_IMGDATA
->m_maskGreen
;
1970 if (b
) *b
= M_IMGDATA
->m_maskBlue
;
1975 FindFirstUnusedColour(r
, g
, b
);
1980 unsigned char wxImage::GetMaskRed() const
1982 wxCHECK_MSG( IsOk(), 0, wxT("invalid image") );
1984 return M_IMGDATA
->m_maskRed
;
1987 unsigned char wxImage::GetMaskGreen() const
1989 wxCHECK_MSG( IsOk(), 0, wxT("invalid image") );
1991 return M_IMGDATA
->m_maskGreen
;
1994 unsigned char wxImage::GetMaskBlue() const
1996 wxCHECK_MSG( IsOk(), 0, wxT("invalid image") );
1998 return M_IMGDATA
->m_maskBlue
;
2001 void wxImage::SetMask( bool mask
)
2003 wxCHECK_RET( IsOk(), wxT("invalid image") );
2007 M_IMGDATA
->m_hasMask
= mask
;
2010 bool wxImage::HasMask() const
2012 wxCHECK_MSG( IsOk(), false, wxT("invalid image") );
2014 return M_IMGDATA
->m_hasMask
;
2017 bool wxImage::IsTransparent(int x
, int y
, unsigned char threshold
) const
2019 long pos
= XYToIndex(x
, y
);
2020 wxCHECK_MSG( pos
!= -1, false, wxT("invalid image coordinates") );
2023 if ( M_IMGDATA
->m_hasMask
)
2025 const unsigned char *p
= M_IMGDATA
->m_data
+ 3*pos
;
2026 if ( p
[0] == M_IMGDATA
->m_maskRed
&&
2027 p
[1] == M_IMGDATA
->m_maskGreen
&&
2028 p
[2] == M_IMGDATA
->m_maskBlue
)
2035 if ( M_IMGDATA
->m_alpha
)
2037 if ( M_IMGDATA
->m_alpha
[pos
] < threshold
)
2039 // transparent enough
2048 bool wxImage::SetMaskFromImage(const wxImage
& mask
,
2049 unsigned char mr
, unsigned char mg
, unsigned char mb
)
2051 // check that the images are the same size
2052 if ( (M_IMGDATA
->m_height
!= mask
.GetHeight() ) || (M_IMGDATA
->m_width
!= mask
.GetWidth () ) )
2054 wxLogError( _("Image and mask have different sizes.") );
2058 // find unused colour
2059 unsigned char r
,g
,b
;
2060 if (!FindFirstUnusedColour(&r
, &g
, &b
))
2062 wxLogError( _("No unused colour in image being masked.") );
2068 unsigned char *imgdata
= GetData();
2069 unsigned char *maskdata
= mask
.GetData();
2071 const int w
= GetWidth();
2072 const int h
= GetHeight();
2074 for (int j
= 0; j
< h
; j
++)
2076 for (int i
= 0; i
< w
; i
++)
2078 if ((maskdata
[0] == mr
) && (maskdata
[1] == mg
) && (maskdata
[2] == mb
))
2089 SetMaskColour(r
, g
, b
);
2095 bool wxImage::ConvertAlphaToMask(unsigned char threshold
)
2100 unsigned char mr
, mg
, mb
;
2101 if ( !FindFirstUnusedColour(&mr
, &mg
, &mb
) )
2103 wxLogError( _("No unused colour in image being masked.") );
2107 return ConvertAlphaToMask(mr
, mg
, mb
, threshold
);
2110 bool wxImage::ConvertAlphaToMask(unsigned char mr
,
2113 unsigned char threshold
)
2121 SetMaskColour(mr
, mg
, mb
);
2123 unsigned char *imgdata
= GetData();
2124 unsigned char *alphadata
= GetAlpha();
2127 int h
= GetHeight();
2129 for (int y
= 0; y
< h
; y
++)
2131 for (int x
= 0; x
< w
; x
++, imgdata
+= 3, alphadata
++)
2133 if (*alphadata
< threshold
)
2142 if ( !M_IMGDATA
->m_staticAlpha
)
2143 free(M_IMGDATA
->m_alpha
);
2145 M_IMGDATA
->m_alpha
= NULL
;
2146 M_IMGDATA
->m_staticAlpha
= false;
2151 // ----------------------------------------------------------------------------
2152 // Palette functions
2153 // ----------------------------------------------------------------------------
2157 bool wxImage::HasPalette() const
2162 return M_IMGDATA
->m_palette
.IsOk();
2165 const wxPalette
& wxImage::GetPalette() const
2167 wxCHECK_MSG( IsOk(), wxNullPalette
, wxT("invalid image") );
2169 return M_IMGDATA
->m_palette
;
2172 void wxImage::SetPalette(const wxPalette
& palette
)
2174 wxCHECK_RET( IsOk(), wxT("invalid image") );
2178 M_IMGDATA
->m_palette
= palette
;
2181 #endif // wxUSE_PALETTE
2183 // ----------------------------------------------------------------------------
2184 // Option functions (arbitrary name/value mapping)
2185 // ----------------------------------------------------------------------------
2187 void wxImage::SetOption(const wxString
& name
, const wxString
& value
)
2191 int idx
= M_IMGDATA
->m_optionNames
.Index(name
, false);
2192 if ( idx
== wxNOT_FOUND
)
2194 M_IMGDATA
->m_optionNames
.Add(name
);
2195 M_IMGDATA
->m_optionValues
.Add(value
);
2199 M_IMGDATA
->m_optionNames
[idx
] = name
;
2200 M_IMGDATA
->m_optionValues
[idx
] = value
;
2204 void wxImage::SetOption(const wxString
& name
, int value
)
2207 valStr
.Printf(wxT("%d"), value
);
2208 SetOption(name
, valStr
);
2211 wxString
wxImage::GetOption(const wxString
& name
) const
2214 return wxEmptyString
;
2216 int idx
= M_IMGDATA
->m_optionNames
.Index(name
, false);
2217 if ( idx
== wxNOT_FOUND
)
2218 return wxEmptyString
;
2220 return M_IMGDATA
->m_optionValues
[idx
];
2223 int wxImage::GetOptionInt(const wxString
& name
) const
2225 return wxAtoi(GetOption(name
));
2228 bool wxImage::HasOption(const wxString
& name
) const
2230 return M_IMGDATA
? M_IMGDATA
->m_optionNames
.Index(name
, false) != wxNOT_FOUND
2234 // ----------------------------------------------------------------------------
2236 // ----------------------------------------------------------------------------
2238 // Under Windows we can load wxImage not only from files but also from
2240 #if defined(__WINDOWS__) && wxUSE_WXDIB && wxUSE_IMAGE
2241 #define HAS_LOAD_FROM_RESOURCE
2244 #ifdef HAS_LOAD_FROM_RESOURCE
2246 #include "wx/msw/dib.h"
2247 #include "wx/msw/private.h"
2249 static wxImage
LoadImageFromResource(const wxString
&name
, wxBitmapType type
)
2255 if ( type
== wxBITMAP_TYPE_BMP_RESOURCE
)
2257 hBitmap
.Init( ::LoadBitmap(wxGetInstance(), name
.t_str()) );
2261 wxLogError(_("Failed to load bitmap \"%s\" from resources."), name
);
2264 else if ( type
== wxBITMAP_TYPE_ICO_RESOURCE
)
2266 const HICON hIcon
= ::LoadIcon(wxGetInstance(), name
.t_str());
2270 wxLogError(_("Failed to load icon \"%s\" from resources."), name
);
2275 if ( !::GetIconInfo(hIcon
, &info
) )
2277 wxLogLastError(wxT("GetIconInfo"));
2281 hBitmap
.Init(info
.hbmColor
);
2282 hMask
.Init(info
.hbmMask
);
2285 else if ( type
== wxBITMAP_TYPE_CUR_RESOURCE
)
2287 wxLogDebug(wxS("Loading cursors from resources is not implemented."));
2291 wxFAIL_MSG(wxS("Invalid bitmap resource type."));
2297 wxImage image
= wxDIB(hBitmap
).ConvertToImage();
2300 const wxImage mask
= wxDIB(hMask
).ConvertToImage();
2301 image
.SetMaskFromImage(mask
, 255, 255, 255);
2305 // Light gray colour is a default mask
2306 image
.SetMaskColour(0xc0, 0xc0, 0xc0);
2309 // We could have already loaded alpha from the resources, but if not,
2310 // initialize it now using the mask.
2311 if ( !image
.HasAlpha() )
2317 #endif // HAS_LOAD_FROM_RESOURCE
2319 bool wxImage::LoadFile( const wxString
& filename
,
2321 int WXUNUSED_UNLESS_STREAMS(index
) )
2323 #ifdef HAS_LOAD_FROM_RESOURCE
2324 if ( type
== wxBITMAP_TYPE_BMP_RESOURCE
2325 || type
== wxBITMAP_TYPE_ICO_RESOURCE
2326 || type
== wxBITMAP_TYPE_CUR_RESOURCE
)
2328 const wxImage image
= ::LoadImageFromResource(filename
, type
);
2335 #endif // HAS_LOAD_FROM_RESOURCE
2337 #if HAS_FILE_STREAMS
2338 wxImageFileInputStream
stream(filename
);
2339 if ( stream
.IsOk() )
2341 wxBufferedInputStream
bstream( stream
);
2342 if ( LoadFile(bstream
, type
, index
) )
2346 wxLogError(_("Failed to load image from file \"%s\"."), filename
);
2347 #endif // HAS_FILE_STREAMS
2352 bool wxImage::LoadFile( const wxString
& WXUNUSED_UNLESS_STREAMS(filename
),
2353 const wxString
& WXUNUSED_UNLESS_STREAMS(mimetype
),
2354 int WXUNUSED_UNLESS_STREAMS(index
) )
2356 #if HAS_FILE_STREAMS
2357 wxImageFileInputStream
stream(filename
);
2358 if ( stream
.IsOk() )
2360 wxBufferedInputStream
bstream( stream
);
2361 if ( LoadFile(bstream
, mimetype
, index
) )
2365 wxLogError(_("Failed to load image from file \"%s\"."), filename
);
2366 #endif // HAS_FILE_STREAMS
2372 bool wxImage::SaveFile( const wxString
& filename
) const
2374 wxString ext
= filename
.AfterLast('.').Lower();
2376 wxImageHandler
*handler
= FindHandler(ext
, wxBITMAP_TYPE_ANY
);
2379 wxLogError(_("Can't save image to file '%s': unknown extension."),
2384 return SaveFile(filename
, handler
->GetType());
2387 bool wxImage::SaveFile( const wxString
& WXUNUSED_UNLESS_STREAMS(filename
),
2388 wxBitmapType
WXUNUSED_UNLESS_STREAMS(type
) ) const
2390 #if HAS_FILE_STREAMS
2391 wxCHECK_MSG( IsOk(), false, wxT("invalid image") );
2393 ((wxImage
*)this)->SetOption(wxIMAGE_OPTION_FILENAME
, filename
);
2395 wxImageFileOutputStream
stream(filename
);
2397 if ( stream
.IsOk() )
2399 wxBufferedOutputStream
bstream( stream
);
2400 return SaveFile(bstream
, type
);
2402 #endif // HAS_FILE_STREAMS
2407 bool wxImage::SaveFile( const wxString
& WXUNUSED_UNLESS_STREAMS(filename
),
2408 const wxString
& WXUNUSED_UNLESS_STREAMS(mimetype
) ) const
2410 #if HAS_FILE_STREAMS
2411 wxCHECK_MSG( IsOk(), false, wxT("invalid image") );
2413 ((wxImage
*)this)->SetOption(wxIMAGE_OPTION_FILENAME
, filename
);
2415 wxImageFileOutputStream
stream(filename
);
2417 if ( stream
.IsOk() )
2419 wxBufferedOutputStream
bstream( stream
);
2420 return SaveFile(bstream
, mimetype
);
2422 #endif // HAS_FILE_STREAMS
2427 bool wxImage::CanRead( const wxString
& WXUNUSED_UNLESS_STREAMS(name
) )
2429 #if HAS_FILE_STREAMS
2430 wxImageFileInputStream
stream(name
);
2431 return CanRead(stream
);
2437 int wxImage::GetImageCount( const wxString
& WXUNUSED_UNLESS_STREAMS(name
),
2438 wxBitmapType
WXUNUSED_UNLESS_STREAMS(type
) )
2440 #if HAS_FILE_STREAMS
2441 wxImageFileInputStream
stream(name
);
2443 return GetImageCount(stream
, type
);
2451 bool wxImage::CanRead( wxInputStream
&stream
)
2453 const wxList
& list
= GetHandlers();
2455 for ( wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext() )
2457 wxImageHandler
*handler
=(wxImageHandler
*)node
->GetData();
2458 if (handler
->CanRead( stream
))
2465 int wxImage::GetImageCount( wxInputStream
&stream
, wxBitmapType type
)
2467 wxImageHandler
*handler
;
2469 if ( type
== wxBITMAP_TYPE_ANY
)
2471 const wxList
& list
= GetHandlers();
2473 for ( wxList::compatibility_iterator node
= list
.GetFirst();
2475 node
= node
->GetNext() )
2477 handler
= (wxImageHandler
*)node
->GetData();
2478 if ( handler
->CanRead(stream
) )
2480 const int count
= handler
->GetImageCount(stream
);
2487 wxLogWarning(_("No handler found for image type."));
2491 handler
= FindHandler(type
);
2495 wxLogWarning(_("No image handler for type %d defined."), type
);
2499 if ( handler
->CanRead(stream
) )
2501 return handler
->GetImageCount(stream
);
2505 wxLogError(_("Image file is not of type %d."), type
);
2510 bool wxImage::DoLoad(wxImageHandler
& handler
, wxInputStream
& stream
, int index
)
2512 // save the options values which can be clobbered by the handler (e.g. many
2513 // of them call Destroy() before trying to load the file)
2514 const unsigned maxWidth
= GetOptionInt(wxIMAGE_OPTION_MAX_WIDTH
),
2515 maxHeight
= GetOptionInt(wxIMAGE_OPTION_MAX_HEIGHT
);
2517 // Preserve the original stream position if possible to rewind back to it
2518 // if we failed to load the file -- maybe the next handler that we try can
2519 // succeed after us then.
2520 wxFileOffset posOld
= wxInvalidOffset
;
2521 if ( stream
.IsSeekable() )
2522 posOld
= stream
.TellI();
2524 if ( !handler
.LoadFile(this, stream
, true/*verbose*/, index
) )
2526 if ( posOld
!= wxInvalidOffset
)
2527 stream
.SeekI(posOld
);
2532 // rescale the image to the specified size if needed
2533 if ( maxWidth
|| maxHeight
)
2535 const unsigned widthOrig
= GetWidth(),
2536 heightOrig
= GetHeight();
2538 // this uses the same (trivial) algorithm as the JPEG handler
2539 unsigned width
= widthOrig
,
2540 height
= heightOrig
;
2541 while ( (maxWidth
&& width
> maxWidth
) ||
2542 (maxHeight
&& height
> maxHeight
) )
2548 if ( width
!= widthOrig
|| height
!= heightOrig
)
2550 // get the original size if it was set by the image handler
2551 // but also in order to restore it after Rescale
2552 int widthOrigOption
= GetOptionInt(wxIMAGE_OPTION_ORIGINAL_WIDTH
),
2553 heightOrigOption
= GetOptionInt(wxIMAGE_OPTION_ORIGINAL_HEIGHT
);
2555 Rescale(width
, height
, wxIMAGE_QUALITY_HIGH
);
2557 SetOption(wxIMAGE_OPTION_ORIGINAL_WIDTH
, widthOrigOption
? widthOrigOption
: widthOrig
);
2558 SetOption(wxIMAGE_OPTION_ORIGINAL_HEIGHT
, heightOrigOption
? heightOrigOption
: heightOrig
);
2562 // Set this after Rescale, which currently does not preserve it
2563 M_IMGDATA
->m_type
= handler
.GetType();
2568 bool wxImage::LoadFile( wxInputStream
& stream
, wxBitmapType type
, int index
)
2572 wxImageHandler
*handler
;
2574 if ( type
== wxBITMAP_TYPE_ANY
)
2576 if ( !stream
.IsSeekable() )
2578 // The error message about image data format being unknown below
2579 // would be misleading in this case as we are not even going to try
2580 // any handlers because CanRead() never does anything for not
2581 // seekable stream, so try to be more precise here.
2582 wxLogError(_("Can't automatically determine the image format "
2583 "for non-seekable input."));
2587 const wxList
& list
= GetHandlers();
2588 for ( wxList::compatibility_iterator node
= list
.GetFirst();
2590 node
= node
->GetNext() )
2592 handler
= (wxImageHandler
*)node
->GetData();
2593 if ( handler
->CanRead(stream
) && DoLoad(*handler
, stream
, index
) )
2597 wxLogWarning( _("Unknown image data format.") );
2601 //else: have specific type
2603 handler
= FindHandler(type
);
2606 wxLogWarning( _("No image handler for type %d defined."), type
);
2610 if ( stream
.IsSeekable() && !handler
->CanRead(stream
) )
2612 wxLogError(_("This is not a %s."), handler
->GetName());
2616 return DoLoad(*handler
, stream
, index
);
2619 bool wxImage::LoadFile( wxInputStream
& stream
, const wxString
& mimetype
, int index
)
2623 m_refData
= new wxImageRefData
;
2625 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
2629 wxLogWarning( _("No image handler for type %s defined."), mimetype
.GetData() );
2633 if ( stream
.IsSeekable() && !handler
->CanRead(stream
) )
2635 wxLogError(_("Image is not of type %s."), mimetype
);
2639 return DoLoad(*handler
, stream
, index
);
2642 bool wxImage::DoSave(wxImageHandler
& handler
, wxOutputStream
& stream
) const
2644 wxImage
* const self
= const_cast<wxImage
*>(this);
2645 if ( !handler
.SaveFile(self
, stream
) )
2648 M_IMGDATA
->m_type
= handler
.GetType();
2652 bool wxImage::SaveFile( wxOutputStream
& stream
, wxBitmapType type
) const
2654 wxCHECK_MSG( IsOk(), false, wxT("invalid image") );
2656 wxImageHandler
*handler
= FindHandler(type
);
2659 wxLogWarning( _("No image handler for type %d defined."), type
);
2663 return DoSave(*handler
, stream
);
2666 bool wxImage::SaveFile( wxOutputStream
& stream
, const wxString
& mimetype
) const
2668 wxCHECK_MSG( IsOk(), false, wxT("invalid image") );
2670 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
2673 wxLogWarning( _("No image handler for type %s defined."), mimetype
.GetData() );
2677 return DoSave(*handler
, stream
);
2680 #endif // wxUSE_STREAMS
2682 // ----------------------------------------------------------------------------
2683 // image I/O handlers
2684 // ----------------------------------------------------------------------------
2686 void wxImage::AddHandler( wxImageHandler
*handler
)
2688 // Check for an existing handler of the type being added.
2689 if (FindHandler( handler
->GetType() ) == 0)
2691 sm_handlers
.Append( handler
);
2695 // This is not documented behaviour, merely the simplest 'fix'
2696 // for preventing duplicate additions. If someone ever has
2697 // a good reason to add and remove duplicate handlers (and they
2698 // may) we should probably refcount the duplicates.
2699 // also an issue in InsertHandler below.
2701 wxLogDebug( wxT("Adding duplicate image handler for '%s'"),
2702 handler
->GetName().c_str() );
2707 void wxImage::InsertHandler( wxImageHandler
*handler
)
2709 // Check for an existing handler of the type being added.
2710 if (FindHandler( handler
->GetType() ) == 0)
2712 sm_handlers
.Insert( handler
);
2716 // see AddHandler for additional comments.
2717 wxLogDebug( wxT("Inserting duplicate image handler for '%s'"),
2718 handler
->GetName().c_str() );
2723 bool wxImage::RemoveHandler( const wxString
& name
)
2725 wxImageHandler
*handler
= FindHandler(name
);
2728 sm_handlers
.DeleteObject(handler
);
2736 wxImageHandler
*wxImage::FindHandler( const wxString
& name
)
2738 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
2741 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
2742 if (handler
->GetName().Cmp(name
) == 0) return handler
;
2744 node
= node
->GetNext();
2749 wxImageHandler
*wxImage::FindHandler( const wxString
& extension
, wxBitmapType bitmapType
)
2751 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
2754 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
2755 if ((bitmapType
== wxBITMAP_TYPE_ANY
) || (handler
->GetType() == bitmapType
))
2757 if (handler
->GetExtension() == extension
)
2759 if (handler
->GetAltExtensions().Index(extension
, false) != wxNOT_FOUND
)
2762 node
= node
->GetNext();
2767 wxImageHandler
*wxImage::FindHandler(wxBitmapType bitmapType
)
2769 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
2772 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
2773 if (handler
->GetType() == bitmapType
) return handler
;
2774 node
= node
->GetNext();
2779 wxImageHandler
*wxImage::FindHandlerMime( const wxString
& mimetype
)
2781 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
2784 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
2785 if (handler
->GetMimeType().IsSameAs(mimetype
, false)) return handler
;
2786 node
= node
->GetNext();
2791 void wxImage::InitStandardHandlers()
2794 AddHandler(new wxBMPHandler
);
2795 #endif // wxUSE_STREAMS
2798 void wxImage::CleanUpHandlers()
2800 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
2803 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
2804 wxList::compatibility_iterator next
= node
->GetNext();
2809 sm_handlers
.Clear();
2812 wxString
wxImage::GetImageExtWildcard()
2816 wxList
& Handlers
= wxImage::GetHandlers();
2817 wxList::compatibility_iterator Node
= Handlers
.GetFirst();
2820 wxImageHandler
* Handler
= (wxImageHandler
*)Node
->GetData();
2821 fmts
+= wxT("*.") + Handler
->GetExtension();
2822 for (size_t i
= 0; i
< Handler
->GetAltExtensions().size(); i
++)
2823 fmts
+= wxT(";*.") + Handler
->GetAltExtensions()[i
];
2824 Node
= Node
->GetNext();
2825 if ( Node
) fmts
+= wxT(";");
2828 return wxT("(") + fmts
+ wxT(")|") + fmts
;
2831 wxImage::HSVValue
wxImage::RGBtoHSV(const RGBValue
& rgb
)
2833 const double red
= rgb
.red
/ 255.0,
2834 green
= rgb
.green
/ 255.0,
2835 blue
= rgb
.blue
/ 255.0;
2837 // find the min and max intensity (and remember which one was it for the
2839 double minimumRGB
= red
;
2840 if ( green
< minimumRGB
)
2842 if ( blue
< minimumRGB
)
2845 enum { RED
, GREEN
, BLUE
} chMax
= RED
;
2846 double maximumRGB
= red
;
2847 if ( green
> maximumRGB
)
2852 if ( blue
> maximumRGB
)
2858 const double value
= maximumRGB
;
2860 double hue
= 0.0, saturation
;
2861 const double deltaRGB
= maximumRGB
- minimumRGB
;
2862 if ( wxIsNullDouble(deltaRGB
) )
2864 // Gray has no color
2873 hue
= (green
- blue
) / deltaRGB
;
2877 hue
= 2.0 + (blue
- red
) / deltaRGB
;
2881 hue
= 4.0 + (red
- green
) / deltaRGB
;
2890 saturation
= deltaRGB
/ maximumRGB
;
2893 return HSVValue(hue
, saturation
, value
);
2896 wxImage::RGBValue
wxImage::HSVtoRGB(const HSVValue
& hsv
)
2898 double red
, green
, blue
;
2900 if ( wxIsNullDouble(hsv
.saturation
) )
2909 double hue
= hsv
.hue
* 6.0; // sector 0 to 5
2910 int i
= (int)floor(hue
);
2911 double f
= hue
- i
; // fractional part of h
2912 double p
= hsv
.value
* (1.0 - hsv
.saturation
);
2918 green
= hsv
.value
* (1.0 - hsv
.saturation
* (1.0 - f
));
2923 red
= hsv
.value
* (1.0 - hsv
.saturation
* f
);
2931 blue
= hsv
.value
* (1.0 - hsv
.saturation
* (1.0 - f
));
2936 green
= hsv
.value
* (1.0 - hsv
.saturation
* f
);
2941 red
= hsv
.value
* (1.0 - hsv
.saturation
* (1.0 - f
));
2949 blue
= hsv
.value
* (1.0 - hsv
.saturation
* f
);
2954 return RGBValue((unsigned char)(red
* 255.0),
2955 (unsigned char)(green
* 255.0),
2956 (unsigned char)(blue
* 255.0));
2960 * Rotates the hue of each pixel of the image. angle is a double in the range
2961 * -1.0..1.0 where -1.0 is -360 degrees and 1.0 is 360 degrees
2963 void wxImage::RotateHue(double angle
)
2967 unsigned char *srcBytePtr
;
2968 unsigned char *dstBytePtr
;
2969 unsigned long count
;
2970 wxImage::HSVValue hsv
;
2971 wxImage::RGBValue rgb
;
2973 wxASSERT (angle
>= -1.0 && angle
<= 1.0);
2974 count
= M_IMGDATA
->m_width
* M_IMGDATA
->m_height
;
2975 if ( count
> 0 && !wxIsNullDouble(angle
) )
2977 srcBytePtr
= M_IMGDATA
->m_data
;
2978 dstBytePtr
= srcBytePtr
;
2981 rgb
.red
= *srcBytePtr
++;
2982 rgb
.green
= *srcBytePtr
++;
2983 rgb
.blue
= *srcBytePtr
++;
2984 hsv
= RGBtoHSV(rgb
);
2986 hsv
.hue
= hsv
.hue
+ angle
;
2988 hsv
.hue
= hsv
.hue
- 1.0;
2989 else if (hsv
.hue
< 0.0)
2990 hsv
.hue
= hsv
.hue
+ 1.0;
2992 rgb
= HSVtoRGB(hsv
);
2993 *dstBytePtr
++ = rgb
.red
;
2994 *dstBytePtr
++ = rgb
.green
;
2995 *dstBytePtr
++ = rgb
.blue
;
2996 } while (--count
!= 0);
3000 //-----------------------------------------------------------------------------
3002 //-----------------------------------------------------------------------------
3004 IMPLEMENT_ABSTRACT_CLASS(wxImageHandler
,wxObject
)
3007 int wxImageHandler::GetImageCount( wxInputStream
& stream
)
3009 // NOTE: this code is the same of wxAnimationDecoder::CanRead and
3010 // wxImageHandler::CallDoCanRead
3012 if ( !stream
.IsSeekable() )
3013 return false; // can't test unseekable stream
3015 wxFileOffset posOld
= stream
.TellI();
3016 int n
= DoGetImageCount(stream
);
3018 // restore the old position to be able to test other formats and so on
3019 if ( stream
.SeekI(posOld
) == wxInvalidOffset
)
3021 wxLogDebug(wxT("Failed to rewind the stream in wxImageHandler!"));
3023 // reading would fail anyhow as we're not at the right position
3030 bool wxImageHandler::CanRead( const wxString
& name
)
3032 wxImageFileInputStream
stream(name
);
3033 if ( !stream
.IsOk() )
3035 wxLogError(_("Failed to check format of image file \"%s\"."), name
);
3040 return CanRead(stream
);
3043 bool wxImageHandler::CallDoCanRead(wxInputStream
& stream
)
3045 // NOTE: this code is the same of wxAnimationDecoder::CanRead and
3046 // wxImageHandler::GetImageCount
3048 if ( !stream
.IsSeekable() )
3049 return false; // can't test unseekable stream
3051 wxFileOffset posOld
= stream
.TellI();
3052 bool ok
= DoCanRead(stream
);
3054 // restore the old position to be able to test other formats and so on
3055 if ( stream
.SeekI(posOld
) == wxInvalidOffset
)
3057 wxLogDebug(wxT("Failed to rewind the stream in wxImageHandler!"));
3059 // reading would fail anyhow as we're not at the right position
3066 #endif // wxUSE_STREAMS
3070 wxImageHandler::GetResolutionFromOptions(const wxImage
& image
, int *x
, int *y
)
3072 wxCHECK_MSG( x
&& y
, wxIMAGE_RESOLUTION_NONE
, wxT("NULL pointer") );
3074 if ( image
.HasOption(wxIMAGE_OPTION_RESOLUTIONX
) &&
3075 image
.HasOption(wxIMAGE_OPTION_RESOLUTIONY
) )
3077 *x
= image
.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONX
);
3078 *y
= image
.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONY
);
3080 else if ( image
.HasOption(wxIMAGE_OPTION_RESOLUTION
) )
3083 *y
= image
.GetOptionInt(wxIMAGE_OPTION_RESOLUTION
);
3085 else // no resolution options specified
3090 return wxIMAGE_RESOLUTION_NONE
;
3093 // get the resolution unit too
3094 int resUnit
= image
.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONUNIT
);
3097 // this is the default
3098 resUnit
= wxIMAGE_RESOLUTION_INCHES
;
3101 return (wxImageResolution
)resUnit
;
3104 // ----------------------------------------------------------------------------
3105 // image histogram stuff
3106 // ----------------------------------------------------------------------------
3109 wxImageHistogram::FindFirstUnusedColour(unsigned char *r
,
3114 unsigned char g2
) const
3116 unsigned long key
= MakeKey(r2
, g2
, b2
);
3118 while ( find(key
) != end() )
3120 // color already used
3132 wxLogError(_("No unused colour in image.") );
3138 key
= MakeKey(r2
, g2
, b2
);
3152 wxImage::FindFirstUnusedColour(unsigned char *r
,
3157 unsigned char g2
) const
3159 wxImageHistogram histogram
;
3161 ComputeHistogram(histogram
);
3163 return histogram
.FindFirstUnusedColour(r
, g
, b
, r2
, g2
, b2
);
3169 // Counts and returns the number of different colours. Optionally stops
3170 // when it exceeds 'stopafter' different colours. This is useful, for
3171 // example, to see if the image can be saved as 8-bit (256 colour or
3172 // less, in this case it would be invoked as CountColours(256)). Default
3173 // value for stopafter is -1 (don't care).
3175 unsigned long wxImage::CountColours( unsigned long stopafter
) const
3179 unsigned char r
, g
, b
;
3181 unsigned long size
, nentries
, key
;
3184 size
= GetWidth() * GetHeight();
3187 for (unsigned long j
= 0; (j
< size
) && (nentries
<= stopafter
) ; j
++)
3192 key
= wxImageHistogram::MakeKey(r
, g
, b
);
3194 if (h
.Get(key
) == NULL
)
3205 unsigned long wxImage::ComputeHistogram( wxImageHistogram
&h
) const
3207 unsigned char *p
= GetData();
3208 unsigned long nentries
= 0;
3212 const unsigned long size
= GetWidth() * GetHeight();
3214 unsigned char r
, g
, b
;
3215 for ( unsigned long n
= 0; n
< size
; n
++ )
3221 wxImageHistogramEntry
& entry
= h
[wxImageHistogram::MakeKey(r
, g
, b
)];
3223 if ( entry
.value
++ == 0 )
3224 entry
.index
= nentries
++;
3231 * Rotation code by Carlos Moreno
3234 static const double wxROTATE_EPSILON
= 1e-10;
3236 // Auxiliary function to rotate a point (x,y) with respect to point p0
3237 // make it inline and use a straight return to facilitate optimization
3238 // also, the function receives the sine and cosine of the angle to avoid
3239 // repeating the time-consuming calls to these functions -- sin/cos can
3240 // be computed and stored in the calling function.
3242 static inline wxRealPoint
3243 wxRotatePoint(const wxRealPoint
& p
, double cos_angle
, double sin_angle
,
3244 const wxRealPoint
& p0
)
3246 return wxRealPoint(p0
.x
+ (p
.x
- p0
.x
) * cos_angle
- (p
.y
- p0
.y
) * sin_angle
,
3247 p0
.y
+ (p
.y
- p0
.y
) * cos_angle
+ (p
.x
- p0
.x
) * sin_angle
);
3250 static inline wxRealPoint
3251 wxRotatePoint(double x
, double y
, double cos_angle
, double sin_angle
,
3252 const wxRealPoint
& p0
)
3254 return wxRotatePoint (wxRealPoint(x
,y
), cos_angle
, sin_angle
, p0
);
3257 wxImage
wxImage::Rotate(double angle
,
3258 const wxPoint
& centre_of_rotation
,
3260 wxPoint
*offset_after_rotation
) const
3262 // screen coordinates are a mirror image of "real" coordinates
3265 const bool has_alpha
= HasAlpha();
3267 const int w
= GetWidth();
3268 const int h
= GetHeight();
3272 // Create pointer-based array to accelerate access to wxImage's data
3273 unsigned char ** data
= new unsigned char * [h
];
3274 data
[0] = GetData();
3275 for (i
= 1; i
< h
; i
++)
3276 data
[i
] = data
[i
- 1] + (3 * w
);
3278 // Same for alpha channel
3279 unsigned char ** alpha
= NULL
;
3282 alpha
= new unsigned char * [h
];
3283 alpha
[0] = GetAlpha();
3284 for (i
= 1; i
< h
; i
++)
3285 alpha
[i
] = alpha
[i
- 1] + w
;
3288 // precompute coefficients for rotation formula
3289 const double cos_angle
= cos(angle
);
3290 const double sin_angle
= sin(angle
);
3292 // Create new Image to store the result
3293 // First, find rectangle that covers the rotated image; to do that,
3294 // rotate the four corners
3296 const wxRealPoint
p0(centre_of_rotation
.x
, centre_of_rotation
.y
);
3298 wxRealPoint p1
= wxRotatePoint (0, 0, cos_angle
, sin_angle
, p0
);
3299 wxRealPoint p2
= wxRotatePoint (0, h
, cos_angle
, sin_angle
, p0
);
3300 wxRealPoint p3
= wxRotatePoint (w
, 0, cos_angle
, sin_angle
, p0
);
3301 wxRealPoint p4
= wxRotatePoint (w
, h
, cos_angle
, sin_angle
, p0
);
3303 int x1a
= (int) floor (wxMin (wxMin(p1
.x
, p2
.x
), wxMin(p3
.x
, p4
.x
)));
3304 int y1a
= (int) floor (wxMin (wxMin(p1
.y
, p2
.y
), wxMin(p3
.y
, p4
.y
)));
3305 int x2a
= (int) ceil (wxMax (wxMax(p1
.x
, p2
.x
), wxMax(p3
.x
, p4
.x
)));
3306 int y2a
= (int) ceil (wxMax (wxMax(p1
.y
, p2
.y
), wxMax(p3
.y
, p4
.y
)));
3308 // Create rotated image
3309 wxImage
rotated (x2a
- x1a
+ 1, y2a
- y1a
+ 1, false);
3310 // With alpha channel
3314 if (offset_after_rotation
!= NULL
)
3316 *offset_after_rotation
= wxPoint (x1a
, y1a
);
3319 // the rotated (destination) image is always accessed sequentially via this
3320 // pointer, there is no need for pointer-based arrays here
3321 unsigned char *dst
= rotated
.GetData();
3323 unsigned char *alpha_dst
= has_alpha
? rotated
.GetAlpha() : NULL
;
3325 // if the original image has a mask, use its RGB values as the blank pixel,
3326 // else, fall back to default (black).
3327 unsigned char blank_r
= 0;
3328 unsigned char blank_g
= 0;
3329 unsigned char blank_b
= 0;
3333 blank_r
= GetMaskRed();
3334 blank_g
= GetMaskGreen();
3335 blank_b
= GetMaskBlue();
3336 rotated
.SetMaskColour( blank_r
, blank_g
, blank_b
);
3339 // Now, for each point of the rotated image, find where it came from, by
3340 // performing an inverse rotation (a rotation of -angle) and getting the
3341 // pixel at those coordinates
3343 const int rH
= rotated
.GetHeight();
3344 const int rW
= rotated
.GetWidth();
3346 // do the (interpolating) test outside of the loops, so that it is done
3347 // only once, instead of repeating it for each pixel.
3350 for (int y
= 0; y
< rH
; y
++)
3352 for (int x
= 0; x
< rW
; x
++)
3354 wxRealPoint src
= wxRotatePoint (x
+ x1a
, y
+ y1a
, cos_angle
, -sin_angle
, p0
);
3356 if (-0.25 < src
.x
&& src
.x
< w
- 0.75 &&
3357 -0.25 < src
.y
&& src
.y
< h
- 0.75)
3359 // interpolate using the 4 enclosing grid-points. Those
3360 // points can be obtained using floor and ceiling of the
3361 // exact coordinates of the point
3364 if (0 < src
.x
&& src
.x
< w
- 1)
3366 x1
= wxRound(floor(src
.x
));
3367 x2
= wxRound(ceil(src
.x
));
3369 else // else means that x is near one of the borders (0 or width-1)
3371 x1
= x2
= wxRound (src
.x
);
3374 if (0 < src
.y
&& src
.y
< h
- 1)
3376 y1
= wxRound(floor(src
.y
));
3377 y2
= wxRound(ceil(src
.y
));
3381 y1
= y2
= wxRound (src
.y
);
3384 // get four points and the distances (square of the distance,
3385 // for efficiency reasons) for the interpolation formula
3387 // GRG: Do not calculate the points until they are
3388 // really needed -- this way we can calculate
3389 // just one, instead of four, if d1, d2, d3
3390 // or d4 are < wxROTATE_EPSILON
3392 const double d1
= (src
.x
- x1
) * (src
.x
- x1
) + (src
.y
- y1
) * (src
.y
- y1
);
3393 const double d2
= (src
.x
- x2
) * (src
.x
- x2
) + (src
.y
- y1
) * (src
.y
- y1
);
3394 const double d3
= (src
.x
- x2
) * (src
.x
- x2
) + (src
.y
- y2
) * (src
.y
- y2
);
3395 const double d4
= (src
.x
- x1
) * (src
.x
- x1
) + (src
.y
- y2
) * (src
.y
- y2
);
3397 // Now interpolate as a weighted average of the four surrounding
3398 // points, where the weights are the distances to each of those points
3400 // If the point is exactly at one point of the grid of the source
3401 // image, then don't interpolate -- just assign the pixel
3403 // d1,d2,d3,d4 are positive -- no need for abs()
3404 if (d1
< wxROTATE_EPSILON
)
3406 unsigned char *p
= data
[y1
] + (3 * x1
);
3412 *(alpha_dst
++) = *(alpha
[y1
] + x1
);
3414 else if (d2
< wxROTATE_EPSILON
)
3416 unsigned char *p
= data
[y1
] + (3 * x2
);
3422 *(alpha_dst
++) = *(alpha
[y1
] + x2
);
3424 else if (d3
< wxROTATE_EPSILON
)
3426 unsigned char *p
= data
[y2
] + (3 * x2
);
3432 *(alpha_dst
++) = *(alpha
[y2
] + x2
);
3434 else if (d4
< wxROTATE_EPSILON
)
3436 unsigned char *p
= data
[y2
] + (3 * x1
);
3442 *(alpha_dst
++) = *(alpha
[y2
] + x1
);
3446 // weights for the weighted average are proportional to the inverse of the distance
3447 unsigned char *v1
= data
[y1
] + (3 * x1
);
3448 unsigned char *v2
= data
[y1
] + (3 * x2
);
3449 unsigned char *v3
= data
[y2
] + (3 * x2
);
3450 unsigned char *v4
= data
[y2
] + (3 * x1
);
3452 const double w1
= 1/d1
, w2
= 1/d2
, w3
= 1/d3
, w4
= 1/d4
;
3456 *(dst
++) = (unsigned char)
3457 ( (w1
* *(v1
++) + w2
* *(v2
++) +
3458 w3
* *(v3
++) + w4
* *(v4
++)) /
3459 (w1
+ w2
+ w3
+ w4
) );
3460 *(dst
++) = (unsigned char)
3461 ( (w1
* *(v1
++) + w2
* *(v2
++) +
3462 w3
* *(v3
++) + w4
* *(v4
++)) /
3463 (w1
+ w2
+ w3
+ w4
) );
3464 *(dst
++) = (unsigned char)
3465 ( (w1
* *v1
+ w2
* *v2
+
3466 w3
* *v3
+ w4
* *v4
) /
3467 (w1
+ w2
+ w3
+ w4
) );
3471 v1
= alpha
[y1
] + (x1
);
3472 v2
= alpha
[y1
] + (x2
);
3473 v3
= alpha
[y2
] + (x2
);
3474 v4
= alpha
[y2
] + (x1
);
3476 *(alpha_dst
++) = (unsigned char)
3477 ( (w1
* *v1
+ w2
* *v2
+
3478 w3
* *v3
+ w4
* *v4
) /
3479 (w1
+ w2
+ w3
+ w4
) );
3495 else // not interpolating
3497 for (int y
= 0; y
< rH
; y
++)
3499 for (int x
= 0; x
< rW
; x
++)
3501 wxRealPoint src
= wxRotatePoint (x
+ x1a
, y
+ y1a
, cos_angle
, -sin_angle
, p0
);
3503 const int xs
= wxRound (src
.x
); // wxRound rounds to the
3504 const int ys
= wxRound (src
.y
); // closest integer
3506 if (0 <= xs
&& xs
< w
&& 0 <= ys
&& ys
< h
)
3508 unsigned char *p
= data
[ys
] + (3 * xs
);
3514 *(alpha_dst
++) = *(alpha
[ys
] + (xs
));
3523 *(alpha_dst
++) = 255;
3539 // A module to allow wxImage initialization/cleanup
3540 // without calling these functions from app.cpp or from
3541 // the user's application.
3543 class wxImageModule
: public wxModule
3545 DECLARE_DYNAMIC_CLASS(wxImageModule
)
3548 bool OnInit() { wxImage::InitStandardHandlers(); return true; }
3549 void OnExit() { wxImage::CleanUpHandlers(); }
3552 IMPLEMENT_DYNAMIC_CLASS(wxImageModule
, wxModule
)
3555 #endif // wxUSE_IMAGE