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/filefn.h"
33 #include "wx/wfstream.h"
34 #include "wx/xpmdecod.h"
39 // make the code compile with either wxFile*Stream or wxFFile*Stream:
40 #define HAS_FILE_STREAMS (wxUSE_STREAMS && (wxUSE_FILE || wxUSE_FFILE))
44 typedef wxFFileInputStream wxImageFileInputStream
;
45 typedef wxFFileOutputStream wxImageFileOutputStream
;
47 typedef wxFileInputStream wxImageFileInputStream
;
48 typedef wxFileOutputStream wxImageFileOutputStream
;
49 #endif // wxUSE_FILE/wxUSE_FFILE
50 #endif // HAS_FILE_STREAMS
53 IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(wxImage
,WXDLLEXPORT
)
56 //-----------------------------------------------------------------------------
58 //-----------------------------------------------------------------------------
60 wxList
wxImage::sm_handlers
;
63 //-----------------------------------------------------------------------------
65 //-----------------------------------------------------------------------------
67 class wxImageRefData
: public wxObjectRefData
71 virtual ~wxImageRefData();
76 unsigned char *m_data
;
79 unsigned char m_maskRed
,m_maskGreen
,m_maskBlue
;
81 // alpha channel data, may be NULL for the formats without alpha support
82 unsigned char *m_alpha
;
86 // if true, m_data is pointer to static data and shouldn't be freed
89 // same as m_static but for m_alpha
94 #endif // wxUSE_PALETTE
96 wxArrayString m_optionNames
;
97 wxArrayString m_optionValues
;
99 wxDECLARE_NO_COPY_CLASS(wxImageRefData
);
102 wxImageRefData::wxImageRefData()
106 m_type
= wxBITMAP_TYPE_INVALID
;
108 m_alpha
= (unsigned char *) NULL
;
117 m_staticAlpha
= false;
120 wxImageRefData::~wxImageRefData()
124 if ( !m_staticAlpha
)
129 //-----------------------------------------------------------------------------
131 //-----------------------------------------------------------------------------
133 #define M_IMGDATA static_cast<wxImageRefData*>(m_refData)
135 IMPLEMENT_DYNAMIC_CLASS(wxImage
, wxObject
)
137 bool wxImage::Create(const char* const* xpmData
)
142 wxXPMDecoder decoder
;
143 (*this) = decoder
.ReadData(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 wxImage
wxImage::Copy() const
260 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
262 image
.m_refData
= CloneRefData(m_refData
);
267 wxImage
wxImage::ShrinkBy( int xFactor
, int yFactor
) const
269 if( xFactor
== 1 && yFactor
== 1 )
274 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
276 // can't scale to/from 0 size
277 wxCHECK_MSG( (xFactor
> 0) && (yFactor
> 0), image
,
278 wxT("invalid new image size") );
280 long old_height
= M_IMGDATA
->m_height
,
281 old_width
= M_IMGDATA
->m_width
;
283 wxCHECK_MSG( (old_height
> 0) && (old_width
> 0), image
,
284 wxT("invalid old image size") );
286 long width
= old_width
/ xFactor
;
287 long height
= old_height
/ yFactor
;
289 image
.Create( width
, height
, false );
291 char unsigned *data
= image
.GetData();
293 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
295 bool hasMask
= false ;
296 unsigned char maskRed
= 0;
297 unsigned char maskGreen
= 0;
298 unsigned char maskBlue
=0 ;
300 unsigned char *source_data
= M_IMGDATA
->m_data
;
301 unsigned char *target_data
= data
;
302 unsigned char *source_alpha
= 0 ;
303 unsigned char *target_alpha
= 0 ;
304 if (M_IMGDATA
->m_hasMask
)
307 maskRed
= M_IMGDATA
->m_maskRed
;
308 maskGreen
= M_IMGDATA
->m_maskGreen
;
309 maskBlue
=M_IMGDATA
->m_maskBlue
;
311 image
.SetMaskColour( M_IMGDATA
->m_maskRed
,
312 M_IMGDATA
->m_maskGreen
,
313 M_IMGDATA
->m_maskBlue
);
317 source_alpha
= M_IMGDATA
->m_alpha
;
321 target_alpha
= image
.GetAlpha() ;
325 for (long y
= 0; y
< height
; y
++)
327 for (long x
= 0; x
< width
; x
++)
329 unsigned long avgRed
= 0 ;
330 unsigned long avgGreen
= 0;
331 unsigned long avgBlue
= 0;
332 unsigned long avgAlpha
= 0 ;
333 unsigned long counter
= 0 ;
335 for ( int y1
= 0 ; y1
< yFactor
; ++y1
)
337 long y_offset
= (y
* yFactor
+ y1
) * old_width
;
338 for ( int x1
= 0 ; x1
< xFactor
; ++x1
)
340 unsigned char *pixel
= source_data
+ 3 * ( y_offset
+ x
* xFactor
+ x1
) ;
341 unsigned char red
= pixel
[0] ;
342 unsigned char green
= pixel
[1] ;
343 unsigned char blue
= pixel
[2] ;
344 unsigned char alpha
= 255 ;
346 alpha
= *(source_alpha
+ y_offset
+ x
* xFactor
+ x1
) ;
347 if ( !hasMask
|| red
!= maskRed
|| green
!= maskGreen
|| blue
!= maskBlue
)
362 *(target_data
++) = M_IMGDATA
->m_maskRed
;
363 *(target_data
++) = M_IMGDATA
->m_maskGreen
;
364 *(target_data
++) = M_IMGDATA
->m_maskBlue
;
369 *(target_alpha
++) = (unsigned char)(avgAlpha
/ counter
) ;
370 *(target_data
++) = (unsigned char)(avgRed
/ counter
);
371 *(target_data
++) = (unsigned char)(avgGreen
/ counter
);
372 *(target_data
++) = (unsigned char)(avgBlue
/ counter
);
377 // In case this is a cursor, make sure the hotspot is scaled accordingly:
378 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
379 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
380 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
))/xFactor
);
381 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
382 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
383 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
))/yFactor
);
389 wxImage::Scale( int width
, int height
, wxImageResizeQuality quality
) const
393 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
395 // can't scale to/from 0 size
396 wxCHECK_MSG( (width
> 0) && (height
> 0), image
,
397 wxT("invalid new image size") );
399 long old_height
= M_IMGDATA
->m_height
,
400 old_width
= M_IMGDATA
->m_width
;
401 wxCHECK_MSG( (old_height
> 0) && (old_width
> 0), image
,
402 wxT("invalid old image size") );
404 // If the image's new width and height are the same as the original, no
405 // need to waste time or CPU cycles
406 if ( old_width
== width
&& old_height
== height
)
409 // resample the image using either the nearest neighbourhood, bilinear or
410 // bicubic method as specified
413 case wxIMAGE_QUALITY_BICUBIC
:
414 case wxIMAGE_QUALITY_BILINEAR
:
415 // both of these algorithms should be used for up-sampling the
416 // image only, when down-sampling always use box averaging for best
418 if ( width
< old_width
&& height
< old_height
)
419 image
= ResampleBox(width
, height
);
420 else if ( quality
== wxIMAGE_QUALITY_BILINEAR
)
421 image
= ResampleBilinear(width
, height
);
422 else if ( quality
== wxIMAGE_QUALITY_BICUBIC
)
423 image
= ResampleBicubic(width
, height
);
426 case wxIMAGE_QUALITY_NEAREST
:
427 if ( old_width
% width
== 0 && old_width
>= width
&&
428 old_height
% height
== 0 && old_height
>= height
)
430 return ShrinkBy( old_width
/ width
, old_height
/ height
);
433 image
= ResampleNearest(width
, height
);
437 // If the original image has a mask, apply the mask to the new image
438 if (M_IMGDATA
->m_hasMask
)
440 image
.SetMaskColour( M_IMGDATA
->m_maskRed
,
441 M_IMGDATA
->m_maskGreen
,
442 M_IMGDATA
->m_maskBlue
);
445 // In case this is a cursor, make sure the hotspot is scaled accordingly:
446 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
447 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
448 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
)*width
)/old_width
);
449 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
450 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
451 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
)*height
)/old_height
);
456 wxImage
wxImage::ResampleNearest(int width
, int height
) const
459 image
.Create( width
, height
, false );
461 unsigned char *data
= image
.GetData();
463 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
465 unsigned char *source_data
= M_IMGDATA
->m_data
;
466 unsigned char *target_data
= data
;
467 unsigned char *source_alpha
= 0 ;
468 unsigned char *target_alpha
= 0 ;
470 if ( !M_IMGDATA
->m_hasMask
)
472 source_alpha
= M_IMGDATA
->m_alpha
;
476 target_alpha
= image
.GetAlpha() ;
480 long old_height
= M_IMGDATA
->m_height
,
481 old_width
= M_IMGDATA
->m_width
;
482 long x_delta
= (old_width
<<16) / width
;
483 long y_delta
= (old_height
<<16) / height
;
485 unsigned char* dest_pixel
= target_data
;
488 for ( long j
= 0; j
< height
; j
++ )
490 unsigned char* src_line
= &source_data
[(y
>>16)*old_width
*3];
491 unsigned char* src_alpha_line
= source_alpha
? &source_alpha
[(y
>>16)*old_width
] : 0 ;
494 for ( long i
= 0; i
< width
; i
++ )
496 unsigned char* src_pixel
= &src_line
[(x
>>16)*3];
497 unsigned char* src_alpha_pixel
= source_alpha
? &src_alpha_line
[(x
>>16)] : 0 ;
498 dest_pixel
[0] = src_pixel
[0];
499 dest_pixel
[1] = src_pixel
[1];
500 dest_pixel
[2] = src_pixel
[2];
503 *(target_alpha
++) = *src_alpha_pixel
;
513 wxImage
wxImage::ResampleBox(int width
, int height
) const
515 // This function implements a simple pre-blur/box averaging method for
516 // downsampling that gives reasonably smooth results To scale the image
517 // down we will need to gather a grid of pixels of the size of the scale
518 // factor in each direction and then do an averaging of the pixels.
520 wxImage
ret_image(width
, height
, false);
522 const double scale_factor_x
= double(M_IMGDATA
->m_width
) / width
;
523 const double scale_factor_y
= double(M_IMGDATA
->m_height
) / height
;
525 const int scale_factor_x_2
= (int)(scale_factor_x
/ 2);
526 const int scale_factor_y_2
= (int)(scale_factor_y
/ 2);
528 unsigned char* src_data
= M_IMGDATA
->m_data
;
529 unsigned char* src_alpha
= M_IMGDATA
->m_alpha
;
530 unsigned char* dst_data
= ret_image
.GetData();
531 unsigned char* dst_alpha
= NULL
;
535 ret_image
.SetAlpha();
536 dst_alpha
= ret_image
.GetAlpha();
539 int averaged_pixels
, src_pixel_index
;
540 double sum_r
, sum_g
, sum_b
, sum_a
;
542 for ( int y
= 0; y
< height
; y
++ ) // Destination image - Y direction
544 // Source pixel in the Y direction
545 int src_y
= (int)(y
* scale_factor_y
);
547 for ( int x
= 0; x
< width
; x
++ ) // Destination image - X direction
549 // Source pixel in the X direction
550 int src_x
= (int)(x
* scale_factor_x
);
552 // Box of pixels to average
554 sum_r
= sum_g
= sum_b
= sum_a
= 0.0;
556 for ( int j
= int(src_y
- scale_factor_y
/2.0 + 1);
557 j
<= int(src_y
+ scale_factor_y_2
);
560 // We don't care to average pixels that don't exist (edges)
561 if ( j
< 0 || j
> M_IMGDATA
->m_height
- 1 )
564 for ( int i
= int(src_x
- scale_factor_x
/2.0 + 1);
565 i
<= src_x
+ scale_factor_x_2
;
568 // Don't average edge pixels
569 if ( i
< 0 || i
> M_IMGDATA
->m_width
- 1 )
572 // Calculate the actual index in our source pixels
573 src_pixel_index
= j
* M_IMGDATA
->m_width
+ i
;
575 sum_r
+= src_data
[src_pixel_index
* 3 + 0];
576 sum_g
+= src_data
[src_pixel_index
* 3 + 1];
577 sum_b
+= src_data
[src_pixel_index
* 3 + 2];
579 sum_a
+= src_alpha
[src_pixel_index
];
585 // Calculate the average from the sum and number of averaged pixels
586 dst_data
[0] = (unsigned char)(sum_r
/ averaged_pixels
);
587 dst_data
[1] = (unsigned char)(sum_g
/ averaged_pixels
);
588 dst_data
[2] = (unsigned char)(sum_b
/ averaged_pixels
);
591 *dst_alpha
++ = (unsigned char)(sum_a
/ averaged_pixels
);
598 wxImage
wxImage::ResampleBilinear(int width
, int height
) const
600 // This function implements a Bilinear algorithm for resampling.
601 wxImage
ret_image(width
, height
, false);
602 unsigned char* src_data
= M_IMGDATA
->m_data
;
603 unsigned char* src_alpha
= M_IMGDATA
->m_alpha
;
604 unsigned char* dst_data
= ret_image
.GetData();
605 unsigned char* dst_alpha
= NULL
;
609 ret_image
.SetAlpha();
610 dst_alpha
= ret_image
.GetAlpha();
612 double HFactor
= double(M_IMGDATA
->m_height
) / height
;
613 double WFactor
= double(M_IMGDATA
->m_width
) / width
;
615 int srcpixymax
= M_IMGDATA
->m_height
- 1;
616 int srcpixxmax
= M_IMGDATA
->m_width
- 1;
618 double srcpixy
, srcpixy1
, srcpixy2
, dy
, dy1
;
619 double srcpixx
, srcpixx1
, srcpixx2
, dx
, dx1
;
621 // initialize alpha values to avoid g++ warnings about possibly
622 // uninitialized variables
623 double r1
, g1
, b1
, a1
= 0;
624 double r2
, g2
, b2
, a2
= 0;
626 for ( int dsty
= 0; dsty
< height
; dsty
++ )
628 // We need to calculate the source pixel to interpolate from - Y-axis
629 srcpixy
= double(dsty
) * HFactor
;
630 srcpixy1
= int(srcpixy
);
631 srcpixy2
= ( srcpixy1
== srcpixymax
) ? srcpixy1
: srcpixy1
+ 1.0;
632 dy
= srcpixy
- (int)srcpixy
;
636 for ( int dstx
= 0; dstx
< width
; dstx
++ )
638 // X-axis of pixel to interpolate from
639 srcpixx
= double(dstx
) * WFactor
;
640 srcpixx1
= int(srcpixx
);
641 srcpixx2
= ( srcpixx1
== srcpixxmax
) ? srcpixx1
: srcpixx1
+ 1.0;
642 dx
= srcpixx
- (int)srcpixx
;
645 int x_offset1
= srcpixx1
< 0.0 ? 0 : srcpixx1
> srcpixxmax
? srcpixxmax
: (int)srcpixx1
;
646 int x_offset2
= srcpixx2
< 0.0 ? 0 : srcpixx2
> srcpixxmax
? srcpixxmax
: (int)srcpixx2
;
647 int y_offset1
= srcpixy1
< 0.0 ? 0 : srcpixy1
> srcpixymax
? srcpixymax
: (int)srcpixy1
;
648 int y_offset2
= srcpixy2
< 0.0 ? 0 : srcpixy2
> srcpixymax
? srcpixymax
: (int)srcpixy2
;
650 int src_pixel_index00
= y_offset1
* M_IMGDATA
->m_width
+ x_offset1
;
651 int src_pixel_index01
= y_offset1
* M_IMGDATA
->m_width
+ x_offset2
;
652 int src_pixel_index10
= y_offset2
* M_IMGDATA
->m_width
+ x_offset1
;
653 int src_pixel_index11
= y_offset2
* M_IMGDATA
->m_width
+ x_offset2
;
656 r1
= src_data
[src_pixel_index00
* 3 + 0] * dx1
+ src_data
[src_pixel_index01
* 3 + 0] * dx
;
657 g1
= src_data
[src_pixel_index00
* 3 + 1] * dx1
+ src_data
[src_pixel_index01
* 3 + 1] * dx
;
658 b1
= src_data
[src_pixel_index00
* 3 + 2] * dx1
+ src_data
[src_pixel_index01
* 3 + 2] * dx
;
660 a1
= src_alpha
[src_pixel_index00
] * dx1
+ src_alpha
[src_pixel_index01
] * dx
;
663 r2
= src_data
[src_pixel_index10
* 3 + 0] * dx1
+ src_data
[src_pixel_index11
* 3 + 0] * dx
;
664 g2
= src_data
[src_pixel_index10
* 3 + 1] * dx1
+ src_data
[src_pixel_index11
* 3 + 1] * dx
;
665 b2
= src_data
[src_pixel_index10
* 3 + 2] * dx1
+ src_data
[src_pixel_index11
* 3 + 2] * dx
;
667 a2
= src_alpha
[src_pixel_index10
] * dx1
+ src_alpha
[src_pixel_index11
] * dx
;
671 dst_data
[0] = static_cast<unsigned char>(r1
* dy1
+ r2
* dy
);
672 dst_data
[1] = static_cast<unsigned char>(g1
* dy1
+ g2
* dy
);
673 dst_data
[2] = static_cast<unsigned char>(b1
* dy1
+ b2
* dy
);
677 *dst_alpha
++ = static_cast<unsigned char>(a1
* dy1
+ a2
* dy
);
684 // The following two local functions are for the B-spline weighting of the
685 // bicubic sampling algorithm
686 static inline double spline_cube(double value
)
688 return value
<= 0.0 ? 0.0 : value
* value
* value
;
691 static inline double spline_weight(double value
)
693 return (spline_cube(value
+ 2) -
694 4 * spline_cube(value
+ 1) +
695 6 * spline_cube(value
) -
696 4 * spline_cube(value
- 1)) / 6;
699 // This is the bicubic resampling algorithm
700 wxImage
wxImage::ResampleBicubic(int width
, int height
) const
702 // This function implements a Bicubic B-Spline algorithm for resampling.
703 // This method is certainly a little slower than wxImage's default pixel
704 // replication method, however for most reasonably sized images not being
705 // upsampled too much on a fairly average CPU this difference is hardly
706 // noticeable and the results are far more pleasing to look at.
708 // This particular bicubic algorithm does pixel weighting according to a
709 // B-Spline that basically implements a Gaussian bell-like weighting
710 // kernel. Because of this method the results may appear a bit blurry when
711 // upsampling by large factors. This is basically because a slight
712 // gaussian blur is being performed to get the smooth look of the upsampled
715 // Edge pixels: 3-4 possible solutions
716 // - (Wrap/tile) Wrap the image, take the color value from the opposite
717 // side of the image.
718 // - (Mirror) Duplicate edge pixels, so that pixel at coordinate (2, n),
719 // where n is nonpositive, will have the value of (2, 1).
720 // - (Ignore) Simply ignore the edge pixels and apply the kernel only to
721 // pixels which do have all neighbours.
722 // - (Clamp) Choose the nearest pixel along the border. This takes the
723 // border pixels and extends them out to infinity.
725 // NOTE: below the y_offset and x_offset variables are being set for edge
726 // pixels using the "Mirror" method mentioned above
730 ret_image
.Create(width
, height
, false);
732 unsigned char* src_data
= M_IMGDATA
->m_data
;
733 unsigned char* src_alpha
= M_IMGDATA
->m_alpha
;
734 unsigned char* dst_data
= ret_image
.GetData();
735 unsigned char* dst_alpha
= NULL
;
739 ret_image
.SetAlpha();
740 dst_alpha
= ret_image
.GetAlpha();
743 for ( int dsty
= 0; dsty
< height
; dsty
++ )
745 // We need to calculate the source pixel to interpolate from - Y-axis
746 double srcpixy
= double(dsty
* M_IMGDATA
->m_height
) / height
;
747 double dy
= srcpixy
- (int)srcpixy
;
749 for ( int dstx
= 0; dstx
< width
; dstx
++ )
751 // X-axis of pixel to interpolate from
752 double srcpixx
= double(dstx
* M_IMGDATA
->m_width
) / width
;
753 double dx
= srcpixx
- (int)srcpixx
;
755 // Sums for each color channel
756 double sum_r
= 0, sum_g
= 0, sum_b
= 0, sum_a
= 0;
758 // Here we actually determine the RGBA values for the destination pixel
759 for ( int k
= -1; k
<= 2; k
++ )
762 int y_offset
= srcpixy
+ k
< 0.0
764 : srcpixy
+ k
>= M_IMGDATA
->m_height
765 ? M_IMGDATA
->m_height
- 1
766 : (int)(srcpixy
+ k
);
768 // Loop across the X axis
769 for ( int i
= -1; i
<= 2; i
++ )
772 int x_offset
= srcpixx
+ i
< 0.0
774 : srcpixx
+ i
>= M_IMGDATA
->m_width
775 ? M_IMGDATA
->m_width
- 1
776 : (int)(srcpixx
+ i
);
778 // Calculate the exact position where the source data
779 // should be pulled from based on the x_offset and y_offset
780 int src_pixel_index
= y_offset
*M_IMGDATA
->m_width
+ x_offset
;
782 // Calculate the weight for the specified pixel according
783 // to the bicubic b-spline kernel we're using for
786 pixel_weight
= spline_weight(i
- dx
)*spline_weight(k
- dy
);
788 // Create a sum of all velues for each color channel
789 // adjusted for the pixel's calculated weight
790 sum_r
+= src_data
[src_pixel_index
* 3 + 0] * pixel_weight
;
791 sum_g
+= src_data
[src_pixel_index
* 3 + 1] * pixel_weight
;
792 sum_b
+= src_data
[src_pixel_index
* 3 + 2] * pixel_weight
;
794 sum_a
+= src_alpha
[src_pixel_index
] * pixel_weight
;
798 // Put the data into the destination image. The summed values are
799 // of double data type and are rounded here for accuracy
800 dst_data
[0] = (unsigned char)(sum_r
+ 0.5);
801 dst_data
[1] = (unsigned char)(sum_g
+ 0.5);
802 dst_data
[2] = (unsigned char)(sum_b
+ 0.5);
806 *dst_alpha
++ = (unsigned char)sum_a
;
813 // Blur in the horizontal direction
814 wxImage
wxImage::BlurHorizontal(int blurRadius
) const
817 ret_image
.Create(M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false);
819 unsigned char* src_data
= M_IMGDATA
->m_data
;
820 unsigned char* dst_data
= ret_image
.GetData();
821 unsigned char* src_alpha
= M_IMGDATA
->m_alpha
;
822 unsigned char* dst_alpha
= NULL
;
824 // Check for a mask or alpha
827 ret_image
.SetAlpha();
828 dst_alpha
= ret_image
.GetAlpha();
830 else if ( M_IMGDATA
->m_hasMask
)
832 ret_image
.SetMaskColour(M_IMGDATA
->m_maskRed
,
833 M_IMGDATA
->m_maskGreen
,
834 M_IMGDATA
->m_maskBlue
);
837 // number of pixels we average over
838 const int blurArea
= blurRadius
*2 + 1;
840 // Horizontal blurring algorithm - average all pixels in the specified blur
841 // radius in the X or horizontal direction
842 for ( int y
= 0; y
< M_IMGDATA
->m_height
; y
++ )
844 // Variables used in the blurring algorithm
851 const unsigned char *src
;
854 // Calculate the average of all pixels in the blur radius for the first
856 for ( int kernel_x
= -blurRadius
; kernel_x
<= blurRadius
; kernel_x
++ )
858 // To deal with the pixels at the start of a row so it's not
859 // grabbing GOK values from memory at negative indices of the
860 // image's data or grabbing from the previous row
862 pixel_idx
= y
* M_IMGDATA
->m_width
;
864 pixel_idx
= kernel_x
+ y
* M_IMGDATA
->m_width
;
866 src
= src_data
+ pixel_idx
*3;
871 sum_a
+= src_alpha
[pixel_idx
];
874 dst
= dst_data
+ y
* M_IMGDATA
->m_width
*3;
875 dst
[0] = (unsigned char)(sum_r
/ blurArea
);
876 dst
[1] = (unsigned char)(sum_g
/ blurArea
);
877 dst
[2] = (unsigned char)(sum_b
/ blurArea
);
879 dst_alpha
[y
* M_IMGDATA
->m_width
] = (unsigned char)(sum_a
/ blurArea
);
881 // Now average the values of the rest of the pixels by just moving the
882 // blur radius box along the row
883 for ( int x
= 1; x
< M_IMGDATA
->m_width
; x
++ )
885 // Take care of edge pixels on the left edge by essentially
886 // duplicating the edge pixel
887 if ( x
- blurRadius
- 1 < 0 )
888 pixel_idx
= y
* M_IMGDATA
->m_width
;
890 pixel_idx
= (x
- blurRadius
- 1) + y
* M_IMGDATA
->m_width
;
892 // Subtract the value of the pixel at the left side of the blur
894 src
= src_data
+ pixel_idx
*3;
899 sum_a
-= src_alpha
[pixel_idx
];
901 // Take care of edge pixels on the right edge
902 if ( x
+ blurRadius
> M_IMGDATA
->m_width
- 1 )
903 pixel_idx
= M_IMGDATA
->m_width
- 1 + y
* M_IMGDATA
->m_width
;
905 pixel_idx
= x
+ blurRadius
+ y
* M_IMGDATA
->m_width
;
907 // Add the value of the pixel being added to the end of our box
908 src
= src_data
+ pixel_idx
*3;
913 sum_a
+= src_alpha
[pixel_idx
];
915 // Save off the averaged data
916 dst
= dst_data
+ x
*3 + y
*M_IMGDATA
->m_width
*3;
917 dst
[0] = (unsigned char)(sum_r
/ blurArea
);
918 dst
[1] = (unsigned char)(sum_g
/ blurArea
);
919 dst
[2] = (unsigned char)(sum_b
/ blurArea
);
921 dst_alpha
[x
+ y
* M_IMGDATA
->m_width
] = (unsigned char)(sum_a
/ blurArea
);
928 // Blur in the vertical direction
929 wxImage
wxImage::BlurVertical(int blurRadius
) const
932 ret_image
.Create(M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false);
934 unsigned char* src_data
= M_IMGDATA
->m_data
;
935 unsigned char* dst_data
= ret_image
.GetData();
936 unsigned char* src_alpha
= M_IMGDATA
->m_alpha
;
937 unsigned char* dst_alpha
= NULL
;
939 // Check for a mask or alpha
942 ret_image
.SetAlpha();
943 dst_alpha
= ret_image
.GetAlpha();
945 else if ( M_IMGDATA
->m_hasMask
)
947 ret_image
.SetMaskColour(M_IMGDATA
->m_maskRed
,
948 M_IMGDATA
->m_maskGreen
,
949 M_IMGDATA
->m_maskBlue
);
952 // number of pixels we average over
953 const int blurArea
= blurRadius
*2 + 1;
955 // Vertical blurring algorithm - same as horizontal but switched the
956 // opposite direction
957 for ( int x
= 0; x
< M_IMGDATA
->m_width
; x
++ )
959 // Variables used in the blurring algorithm
966 const unsigned char *src
;
969 // Calculate the average of all pixels in our blur radius box for the
970 // first pixel of the column
971 for ( int kernel_y
= -blurRadius
; kernel_y
<= blurRadius
; kernel_y
++ )
973 // To deal with the pixels at the start of a column so it's not
974 // grabbing GOK values from memory at negative indices of the
975 // image's data or grabbing from the previous column
979 pixel_idx
= x
+ kernel_y
* M_IMGDATA
->m_width
;
981 src
= src_data
+ pixel_idx
*3;
986 sum_a
+= src_alpha
[pixel_idx
];
989 dst
= dst_data
+ x
*3;
990 dst
[0] = (unsigned char)(sum_r
/ blurArea
);
991 dst
[1] = (unsigned char)(sum_g
/ blurArea
);
992 dst
[2] = (unsigned char)(sum_b
/ blurArea
);
994 dst_alpha
[x
] = (unsigned char)(sum_a
/ blurArea
);
996 // Now average the values of the rest of the pixels by just moving the
997 // box along the column from top to bottom
998 for ( int y
= 1; y
< M_IMGDATA
->m_height
; y
++ )
1000 // Take care of pixels that would be beyond the top edge by
1001 // duplicating the top edge pixel for the column
1002 if ( y
- blurRadius
- 1 < 0 )
1005 pixel_idx
= x
+ (y
- blurRadius
- 1) * M_IMGDATA
->m_width
;
1007 // Subtract the value of the pixel at the top of our blur radius box
1008 src
= src_data
+ pixel_idx
*3;
1013 sum_a
-= src_alpha
[pixel_idx
];
1015 // Take care of the pixels that would be beyond the bottom edge of
1016 // the image similar to the top edge
1017 if ( y
+ blurRadius
> M_IMGDATA
->m_height
- 1 )
1018 pixel_idx
= x
+ (M_IMGDATA
->m_height
- 1) * M_IMGDATA
->m_width
;
1020 pixel_idx
= x
+ (blurRadius
+ y
) * M_IMGDATA
->m_width
;
1022 // Add the value of the pixel being added to the end of our box
1023 src
= src_data
+ pixel_idx
*3;
1028 sum_a
+= src_alpha
[pixel_idx
];
1030 // Save off the averaged data
1031 dst
= dst_data
+ (x
+ y
* M_IMGDATA
->m_width
) * 3;
1032 dst
[0] = (unsigned char)(sum_r
/ blurArea
);
1033 dst
[1] = (unsigned char)(sum_g
/ blurArea
);
1034 dst
[2] = (unsigned char)(sum_b
/ blurArea
);
1036 dst_alpha
[x
+ y
* M_IMGDATA
->m_width
] = (unsigned char)(sum_a
/ blurArea
);
1043 // The new blur function
1044 wxImage
wxImage::Blur(int blurRadius
) const
1047 ret_image
.Create(M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false);
1049 // Blur the image in each direction
1050 ret_image
= BlurHorizontal(blurRadius
);
1051 ret_image
= ret_image
.BlurVertical(blurRadius
);
1056 wxImage
wxImage::Rotate90( bool clockwise
) const
1060 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
1062 image
.Create( M_IMGDATA
->m_height
, M_IMGDATA
->m_width
, false );
1064 unsigned char *data
= image
.GetData();
1066 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
1068 unsigned char *source_data
= M_IMGDATA
->m_data
;
1069 unsigned char *target_data
;
1070 unsigned char *alpha_data
= 0 ;
1071 unsigned char *source_alpha
= M_IMGDATA
->m_alpha
;
1072 unsigned char *target_alpha
= 0 ;
1077 alpha_data
= image
.GetAlpha();
1078 wxCHECK_MSG( alpha_data
, image
, wxS("unable to create alpha channel") );
1081 if ( M_IMGDATA
->m_hasMask
)
1082 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
1084 long height
= M_IMGDATA
->m_height
;
1085 long width
= M_IMGDATA
->m_width
;
1087 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
1089 int hot_x
= GetOptionInt( wxIMAGE_OPTION_CUR_HOTSPOT_X
);
1090 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
1091 clockwise
? hot_x
: width
- 1 - hot_x
);
1094 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
1096 int hot_y
= GetOptionInt( wxIMAGE_OPTION_CUR_HOTSPOT_Y
);
1097 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
1098 clockwise
? height
- 1 - hot_y
: hot_y
);
1101 for (long j
= 0; j
< height
; j
++)
1103 for (long i
= 0; i
< width
; i
++)
1107 target_data
= data
+ (((i
+1)*height
) - j
- 1)*3;
1109 target_alpha
= alpha_data
+ (((i
+1)*height
) - j
- 1);
1113 target_data
= data
+ ((height
*(width
-1)) + j
- (i
*height
))*3;
1115 target_alpha
= alpha_data
+ ((height
*(width
-1)) + j
- (i
*height
));
1117 memcpy( target_data
, source_data
, 3 );
1122 memcpy( target_alpha
, source_alpha
, 1 );
1131 wxImage
wxImage::Rotate180() const
1135 wxCHECK_MSG( Ok(), image
, wxS("invalid image") );
1137 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false );
1139 unsigned char *data
= image
.GetData();
1140 unsigned char *alpha
= NULL
;
1142 wxCHECK_MSG( data
, image
, wxS("unable to create image") );
1144 if ( M_IMGDATA
->m_alpha
!= NULL
)
1147 alpha
= image
.GetAlpha();
1148 wxCHECK_MSG( alpha
, image
, wxS("unable to create alpha channel") );
1151 if ( M_IMGDATA
->m_hasMask
)
1152 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
1154 long height
= M_IMGDATA
->m_height
;
1155 long width
= M_IMGDATA
->m_width
;
1157 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
1159 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
1160 width
- 1 - GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
));
1163 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
1165 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
1166 height
- 1 - GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
));
1169 const unsigned char *source_data
= M_IMGDATA
->m_data
;
1170 unsigned char *target_data
= data
+ width
* height
* 3;
1172 for (long j
= 0; j
< height
; j
++)
1174 for (long i
= 0; i
< width
; i
++)
1177 memcpy( target_data
, source_data
, 3 );
1184 const unsigned char *src_alpha
= M_IMGDATA
->m_alpha
;
1185 unsigned char *dest_alpha
= alpha
+ width
* height
;
1187 for (long j
= 0; j
< height
; ++j
)
1189 for (long i
= 0; i
< width
; ++i
)
1191 *(--dest_alpha
) = *(src_alpha
++);
1199 wxImage
wxImage::Mirror( bool horizontally
) const
1203 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
1205 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false );
1207 unsigned char *data
= image
.GetData();
1208 unsigned char *alpha
= NULL
;
1210 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
1212 if (M_IMGDATA
->m_alpha
!= NULL
) {
1214 alpha
= image
.GetAlpha();
1215 wxCHECK_MSG( alpha
, image
, wxT("unable to create alpha channel") );
1218 if (M_IMGDATA
->m_hasMask
)
1219 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
1221 long height
= M_IMGDATA
->m_height
;
1222 long width
= M_IMGDATA
->m_width
;
1224 unsigned char *source_data
= M_IMGDATA
->m_data
;
1225 unsigned char *target_data
;
1229 for (long j
= 0; j
< height
; j
++)
1232 target_data
= data
-3;
1233 for (long i
= 0; i
< width
; i
++)
1235 memcpy( target_data
, source_data
, 3 );
1243 // src_alpha starts at the first pixel and increases by 1 after each step
1244 // (a step here is the copy of the alpha value of one pixel)
1245 const unsigned char *src_alpha
= M_IMGDATA
->m_alpha
;
1246 // dest_alpha starts just beyond the first line, decreases before each step,
1247 // and after each line is finished, increases by 2 widths (skipping the line
1248 // just copied and the line that will be copied next)
1249 unsigned char *dest_alpha
= alpha
+ width
;
1251 for (long jj
= 0; jj
< height
; ++jj
)
1253 for (long i
= 0; i
< width
; ++i
) {
1254 *(--dest_alpha
) = *(src_alpha
++); // copy one pixel
1256 dest_alpha
+= 2 * width
; // advance beyond the end of the next line
1262 for (long i
= 0; i
< height
; i
++)
1264 target_data
= data
+ 3*width
*(height
-1-i
);
1265 memcpy( target_data
, source_data
, (size_t)3*width
);
1266 source_data
+= 3*width
;
1271 // src_alpha starts at the first pixel and increases by 1 width after each step
1272 // (a step here is the copy of the alpha channel of an entire line)
1273 const unsigned char *src_alpha
= M_IMGDATA
->m_alpha
;
1274 // dest_alpha starts just beyond the last line (beyond the whole image)
1275 // and decreases by 1 width before each step
1276 unsigned char *dest_alpha
= alpha
+ width
* height
;
1278 for (long jj
= 0; jj
< height
; ++jj
)
1280 dest_alpha
-= width
;
1281 memcpy( dest_alpha
, src_alpha
, (size_t)width
);
1290 wxImage
wxImage::GetSubImage( const wxRect
&rect
) const
1294 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
1296 wxCHECK_MSG( (rect
.GetLeft()>=0) && (rect
.GetTop()>=0) &&
1297 (rect
.GetRight()<=GetWidth()) && (rect
.GetBottom()<=GetHeight()),
1298 image
, wxT("invalid subimage size") );
1300 const int subwidth
= rect
.GetWidth();
1301 const int subheight
= rect
.GetHeight();
1303 image
.Create( subwidth
, subheight
, false );
1305 const unsigned char *src_data
= GetData();
1306 const unsigned char *src_alpha
= M_IMGDATA
->m_alpha
;
1307 unsigned char *subdata
= image
.GetData();
1308 unsigned char *subalpha
= NULL
;
1310 wxCHECK_MSG( subdata
, image
, wxT("unable to create image") );
1312 if (src_alpha
!= NULL
) {
1314 subalpha
= image
.GetAlpha();
1315 wxCHECK_MSG( subalpha
, image
, wxT("unable to create alpha channel"));
1318 if (M_IMGDATA
->m_hasMask
)
1319 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
1321 const int width
= GetWidth();
1322 const int pixsoff
= rect
.GetLeft() + width
* rect
.GetTop();
1324 src_data
+= 3 * pixsoff
;
1325 src_alpha
+= pixsoff
; // won't be used if was NULL, so this is ok
1327 for (long j
= 0; j
< subheight
; ++j
)
1329 memcpy( subdata
, src_data
, 3 * subwidth
);
1330 subdata
+= 3 * subwidth
;
1331 src_data
+= 3 * width
;
1332 if (subalpha
!= NULL
) {
1333 memcpy( subalpha
, src_alpha
, subwidth
);
1334 subalpha
+= subwidth
;
1342 wxImage
wxImage::Size( const wxSize
& size
, const wxPoint
& pos
,
1343 int r_
, int g_
, int b_
) const
1347 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
1348 wxCHECK_MSG( (size
.GetWidth() > 0) && (size
.GetHeight() > 0), image
, wxT("invalid size") );
1350 int width
= GetWidth(), height
= GetHeight();
1351 image
.Create(size
.GetWidth(), size
.GetHeight(), false);
1353 unsigned char r
= (unsigned char)r_
;
1354 unsigned char g
= (unsigned char)g_
;
1355 unsigned char b
= (unsigned char)b_
;
1356 if ((r_
== -1) && (g_
== -1) && (b_
== -1))
1358 GetOrFindMaskColour( &r
, &g
, &b
);
1359 image
.SetMaskColour(r
, g
, b
);
1362 image
.SetRGB(wxRect(), r
, g
, b
);
1364 // we have two coordinate systems:
1365 // source: starting at 0,0 of source image
1366 // destination starting at 0,0 of destination image
1367 // Documentation says:
1368 // "The image is pasted into a new image [...] at the position pos relative
1369 // to the upper left of the new image." this means the transition rule is:
1370 // "dest coord" = "source coord" + pos;
1372 // calculate the intersection using source coordinates:
1373 wxRect
srcRect(0, 0, width
, height
);
1374 wxRect
dstRect(-pos
, size
);
1376 srcRect
.Intersect(dstRect
);
1378 if (!srcRect
.IsEmpty())
1380 // insertion point is needed in destination coordinates.
1381 // NB: it is not always "pos"!
1382 wxPoint ptInsert
= srcRect
.GetTopLeft() + pos
;
1384 if ((srcRect
.GetWidth() == width
) && (srcRect
.GetHeight() == height
))
1385 image
.Paste(*this, ptInsert
.x
, ptInsert
.y
);
1387 image
.Paste(GetSubImage(srcRect
), ptInsert
.x
, ptInsert
.y
);
1393 void wxImage::Paste( const wxImage
&image
, int x
, int y
)
1395 wxCHECK_RET( Ok(), wxT("invalid image") );
1396 wxCHECK_RET( image
.Ok(), wxT("invalid image") );
1402 int width
= image
.GetWidth();
1403 int height
= image
.GetHeight();
1416 if ((x
+xx
)+width
> M_IMGDATA
->m_width
)
1417 width
= M_IMGDATA
->m_width
- (x
+xx
);
1418 if ((y
+yy
)+height
> M_IMGDATA
->m_height
)
1419 height
= M_IMGDATA
->m_height
- (y
+yy
);
1421 if (width
< 1) return;
1422 if (height
< 1) return;
1424 if ((!HasMask() && !image
.HasMask()) ||
1425 (HasMask() && !image
.HasMask()) ||
1426 ((HasMask() && image
.HasMask() &&
1427 (GetMaskRed()==image
.GetMaskRed()) &&
1428 (GetMaskGreen()==image
.GetMaskGreen()) &&
1429 (GetMaskBlue()==image
.GetMaskBlue()))))
1431 unsigned char* source_data
= image
.GetData() + xx
*3 + yy
*3*image
.GetWidth();
1432 int source_step
= image
.GetWidth()*3;
1434 unsigned char* target_data
= GetData() + (x
+xx
)*3 + (y
+yy
)*3*M_IMGDATA
->m_width
;
1435 int target_step
= M_IMGDATA
->m_width
*3;
1436 for (int j
= 0; j
< height
; j
++)
1438 memcpy( target_data
, source_data
, width
*3 );
1439 source_data
+= source_step
;
1440 target_data
+= target_step
;
1444 // Copy over the alpha channel from the original image
1445 if ( image
.HasAlpha() )
1450 unsigned char* source_data
= image
.GetAlpha() + xx
+ yy
*image
.GetWidth();
1451 int source_step
= image
.GetWidth();
1453 unsigned char* target_data
= GetAlpha() + (x
+xx
) + (y
+yy
)*M_IMGDATA
->m_width
;
1454 int target_step
= M_IMGDATA
->m_width
;
1456 for (int j
= 0; j
< height
; j
++,
1457 source_data
+= source_step
,
1458 target_data
+= target_step
)
1460 memcpy( target_data
, source_data
, width
);
1464 if (!HasMask() && image
.HasMask())
1466 unsigned char r
= image
.GetMaskRed();
1467 unsigned char g
= image
.GetMaskGreen();
1468 unsigned char b
= image
.GetMaskBlue();
1470 unsigned char* source_data
= image
.GetData() + xx
*3 + yy
*3*image
.GetWidth();
1471 int source_step
= image
.GetWidth()*3;
1473 unsigned char* target_data
= GetData() + (x
+xx
)*3 + (y
+yy
)*3*M_IMGDATA
->m_width
;
1474 int target_step
= M_IMGDATA
->m_width
*3;
1476 for (int j
= 0; j
< height
; j
++)
1478 for (int i
= 0; i
< width
*3; i
+=3)
1480 if ((source_data
[i
] != r
) ||
1481 (source_data
[i
+1] != g
) ||
1482 (source_data
[i
+2] != b
))
1484 memcpy( target_data
+i
, source_data
+i
, 3 );
1487 source_data
+= source_step
;
1488 target_data
+= target_step
;
1493 void wxImage::Replace( unsigned char r1
, unsigned char g1
, unsigned char b1
,
1494 unsigned char r2
, unsigned char g2
, unsigned char b2
)
1496 wxCHECK_RET( Ok(), wxT("invalid image") );
1500 unsigned char *data
= GetData();
1502 const int w
= GetWidth();
1503 const int h
= GetHeight();
1505 for (int j
= 0; j
< h
; j
++)
1506 for (int i
= 0; i
< w
; i
++)
1508 if ((data
[0] == r1
) && (data
[1] == g1
) && (data
[2] == b1
))
1518 wxImage
wxImage::ConvertToGreyscale(void) const
1520 return ConvertToGreyscale(0.299, 0.587, 0.114);
1523 wxImage
wxImage::ConvertToGreyscale(double weight_r
, double weight_g
, double weight_b
) const
1527 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
1529 image
.Create(M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false);
1531 unsigned char *dest
= image
.GetData();
1533 wxCHECK_MSG( dest
, image
, wxT("unable to create image") );
1535 unsigned char *src
= M_IMGDATA
->m_data
;
1536 bool hasMask
= M_IMGDATA
->m_hasMask
;
1537 unsigned char maskRed
= M_IMGDATA
->m_maskRed
;
1538 unsigned char maskGreen
= M_IMGDATA
->m_maskGreen
;
1539 unsigned char maskBlue
= M_IMGDATA
->m_maskBlue
;
1542 image
.SetMaskColour(maskRed
, maskGreen
, maskBlue
);
1544 const long size
= M_IMGDATA
->m_width
* M_IMGDATA
->m_height
;
1545 for ( long i
= 0; i
< size
; i
++, src
+= 3, dest
+= 3 )
1547 memcpy(dest
, src
, 3);
1548 // don't modify the mask
1549 if ( hasMask
&& src
[0] == maskRed
&& src
[1] == maskGreen
&& src
[2] == maskBlue
)
1554 wxColour::MakeGrey(dest
+ 0, dest
+ 1, dest
+ 2, weight_r
, weight_g
, weight_b
);
1558 // copy the alpha channel, if any
1561 const size_t alphaSize
= GetWidth() * GetHeight();
1562 unsigned char *alpha
= (unsigned char*)malloc(alphaSize
);
1563 memcpy(alpha
, GetAlpha(), alphaSize
);
1565 image
.SetAlpha(alpha
);
1571 wxImage
wxImage::ConvertToMono( unsigned char r
, unsigned char g
, unsigned char b
) const
1575 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
1577 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
, false );
1579 unsigned char *data
= image
.GetData();
1581 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
1583 if (M_IMGDATA
->m_hasMask
)
1585 if (M_IMGDATA
->m_maskRed
== r
&& M_IMGDATA
->m_maskGreen
== g
&&
1586 M_IMGDATA
->m_maskBlue
== b
)
1587 image
.SetMaskColour( 255, 255, 255 );
1589 image
.SetMaskColour( 0, 0, 0 );
1592 long size
= M_IMGDATA
->m_height
* M_IMGDATA
->m_width
;
1594 unsigned char *srcd
= M_IMGDATA
->m_data
;
1595 unsigned char *tard
= image
.GetData();
1597 for ( long i
= 0; i
< size
; i
++, srcd
+= 3, tard
+= 3 )
1599 bool on
= (srcd
[0] == r
) && (srcd
[1] == g
) && (srcd
[2] == b
);
1600 wxColourBase::MakeMono(tard
+ 0, tard
+ 1, tard
+ 2, on
);
1606 wxImage
wxImage::ConvertToDisabled(unsigned char brightness
) const
1608 wxImage image
= *this;
1610 unsigned char mr
= image
.GetMaskRed();
1611 unsigned char mg
= image
.GetMaskGreen();
1612 unsigned char mb
= image
.GetMaskBlue();
1614 int width
= image
.GetWidth();
1615 int height
= image
.GetHeight();
1616 bool has_mask
= image
.HasMask();
1618 for (int y
= height
-1; y
>= 0; --y
)
1620 for (int x
= width
-1; x
>= 0; --x
)
1622 unsigned char* data
= image
.GetData() + (y
*(width
*3))+(x
*3);
1623 unsigned char* r
= data
;
1624 unsigned char* g
= data
+1;
1625 unsigned char* b
= data
+2;
1627 if (has_mask
&& (*r
== mr
) && (*g
== mg
) && (*b
== mb
))
1630 wxColour::MakeDisabled(r
, g
, b
, brightness
);
1636 int wxImage::GetWidth() const
1638 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1640 return M_IMGDATA
->m_width
;
1643 int wxImage::GetHeight() const
1645 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1647 return M_IMGDATA
->m_height
;
1650 wxBitmapType
wxImage::GetType() const
1652 wxCHECK_MSG( IsOk(), wxBITMAP_TYPE_INVALID
, wxT("invalid image") );
1654 return M_IMGDATA
->m_type
;
1657 void wxImage::SetType(wxBitmapType type
)
1659 wxCHECK_RET( IsOk(), "must create the image before setting its type");
1661 // type can be wxBITMAP_TYPE_INVALID to reset the image type to default
1662 wxASSERT_MSG( type
!= wxBITMAP_TYPE_MAX
, "invalid bitmap type" );
1664 M_IMGDATA
->m_type
= type
;
1667 long wxImage::XYToIndex(int x
, int y
) const
1671 x
< M_IMGDATA
->m_width
&& y
< M_IMGDATA
->m_height
)
1673 return y
*M_IMGDATA
->m_width
+ x
;
1679 void wxImage::SetRGB( int x
, int y
, unsigned char r
, unsigned char g
, unsigned char b
)
1681 long pos
= XYToIndex(x
, y
);
1682 wxCHECK_RET( pos
!= -1, wxT("invalid image coordinates") );
1688 M_IMGDATA
->m_data
[ pos
] = r
;
1689 M_IMGDATA
->m_data
[ pos
+1 ] = g
;
1690 M_IMGDATA
->m_data
[ pos
+2 ] = b
;
1693 void wxImage::SetRGB( const wxRect
& rect_
, unsigned char r
, unsigned char g
, unsigned char b
)
1695 wxCHECK_RET( Ok(), wxT("invalid image") );
1700 wxRect
imageRect(0, 0, GetWidth(), GetHeight());
1701 if ( rect
== wxRect() )
1707 wxCHECK_RET( imageRect
.Contains(rect
.GetTopLeft()) &&
1708 imageRect
.Contains(rect
.GetBottomRight()),
1709 wxT("invalid bounding rectangle") );
1712 int x1
= rect
.GetLeft(),
1714 x2
= rect
.GetRight() + 1,
1715 y2
= rect
.GetBottom() + 1;
1717 unsigned char *data
wxDUMMY_INITIALIZE(NULL
);
1718 int x
, y
, width
= GetWidth();
1719 for (y
= y1
; y
< y2
; y
++)
1721 data
= M_IMGDATA
->m_data
+ (y
*width
+ x1
)*3;
1722 for (x
= x1
; x
< x2
; x
++)
1731 unsigned char wxImage::GetRed( int x
, int y
) const
1733 long pos
= XYToIndex(x
, y
);
1734 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
1738 return M_IMGDATA
->m_data
[pos
];
1741 unsigned char wxImage::GetGreen( int x
, int y
) const
1743 long pos
= XYToIndex(x
, y
);
1744 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
1748 return M_IMGDATA
->m_data
[pos
+1];
1751 unsigned char wxImage::GetBlue( int x
, int y
) const
1753 long pos
= XYToIndex(x
, y
);
1754 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
1758 return M_IMGDATA
->m_data
[pos
+2];
1761 bool wxImage::IsOk() const
1763 // image of 0 width or height can't be considered ok - at least because it
1764 // causes crashes in ConvertToBitmap() if we don't catch it in time
1765 wxImageRefData
*data
= M_IMGDATA
;
1766 return data
&& data
->m_ok
&& data
->m_width
&& data
->m_height
;
1769 unsigned char *wxImage::GetData() const
1771 wxCHECK_MSG( Ok(), (unsigned char *)NULL
, wxT("invalid image") );
1773 return M_IMGDATA
->m_data
;
1776 void wxImage::SetData( unsigned char *data
, bool static_data
)
1778 wxCHECK_RET( Ok(), wxT("invalid image") );
1780 wxImageRefData
*newRefData
= new wxImageRefData();
1782 newRefData
->m_width
= M_IMGDATA
->m_width
;
1783 newRefData
->m_height
= M_IMGDATA
->m_height
;
1784 newRefData
->m_data
= data
;
1785 newRefData
->m_ok
= true;
1786 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
1787 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
1788 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
1789 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
1790 newRefData
->m_static
= static_data
;
1794 m_refData
= newRefData
;
1797 void wxImage::SetData( unsigned char *data
, int new_width
, int new_height
, bool static_data
)
1799 wxImageRefData
*newRefData
= new wxImageRefData();
1803 newRefData
->m_width
= new_width
;
1804 newRefData
->m_height
= new_height
;
1805 newRefData
->m_data
= data
;
1806 newRefData
->m_ok
= true;
1807 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
1808 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
1809 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
1810 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
1814 newRefData
->m_width
= new_width
;
1815 newRefData
->m_height
= new_height
;
1816 newRefData
->m_data
= data
;
1817 newRefData
->m_ok
= true;
1819 newRefData
->m_static
= static_data
;
1823 m_refData
= newRefData
;
1826 // ----------------------------------------------------------------------------
1827 // alpha channel support
1828 // ----------------------------------------------------------------------------
1830 void wxImage::SetAlpha(int x
, int y
, unsigned char alpha
)
1832 wxCHECK_RET( HasAlpha(), wxT("no alpha channel") );
1834 long pos
= XYToIndex(x
, y
);
1835 wxCHECK_RET( pos
!= -1, wxT("invalid image coordinates") );
1839 M_IMGDATA
->m_alpha
[pos
] = alpha
;
1842 unsigned char wxImage::GetAlpha(int x
, int y
) const
1844 wxCHECK_MSG( HasAlpha(), 0, wxT("no alpha channel") );
1846 long pos
= XYToIndex(x
, y
);
1847 wxCHECK_MSG( pos
!= -1, 0, wxT("invalid image coordinates") );
1849 return M_IMGDATA
->m_alpha
[pos
];
1853 wxImage::ConvertColourToAlpha(unsigned char r
, unsigned char g
, unsigned char b
)
1857 const int w
= M_IMGDATA
->m_width
;
1858 const int h
= M_IMGDATA
->m_height
;
1860 unsigned char *alpha
= GetAlpha();
1861 unsigned char *data
= GetData();
1863 for ( int y
= 0; y
< h
; y
++ )
1865 for ( int x
= 0; x
< w
; x
++ )
1877 void wxImage::SetAlpha( unsigned char *alpha
, bool static_data
)
1879 wxCHECK_RET( Ok(), wxT("invalid image") );
1885 alpha
= (unsigned char *)malloc(M_IMGDATA
->m_width
*M_IMGDATA
->m_height
);
1888 if( !M_IMGDATA
->m_staticAlpha
)
1889 free(M_IMGDATA
->m_alpha
);
1891 M_IMGDATA
->m_alpha
= alpha
;
1892 M_IMGDATA
->m_staticAlpha
= static_data
;
1895 unsigned char *wxImage::GetAlpha() const
1897 wxCHECK_MSG( Ok(), (unsigned char *)NULL
, wxT("invalid image") );
1899 return M_IMGDATA
->m_alpha
;
1902 void wxImage::InitAlpha()
1904 wxCHECK_RET( !HasAlpha(), wxT("image already has an alpha channel") );
1906 // initialize memory for alpha channel
1909 unsigned char *alpha
= M_IMGDATA
->m_alpha
;
1910 const size_t lenAlpha
= M_IMGDATA
->m_width
* M_IMGDATA
->m_height
;
1914 // use the mask to initialize the alpha channel.
1915 const unsigned char * const alphaEnd
= alpha
+ lenAlpha
;
1917 const unsigned char mr
= M_IMGDATA
->m_maskRed
;
1918 const unsigned char mg
= M_IMGDATA
->m_maskGreen
;
1919 const unsigned char mb
= M_IMGDATA
->m_maskBlue
;
1920 for ( unsigned char *src
= M_IMGDATA
->m_data
;
1924 *alpha
= (src
[0] == mr
&& src
[1] == mg
&& src
[2] == mb
)
1925 ? wxIMAGE_ALPHA_TRANSPARENT
1926 : wxIMAGE_ALPHA_OPAQUE
;
1929 M_IMGDATA
->m_hasMask
= false;
1933 // make the image fully opaque
1934 memset(alpha
, wxIMAGE_ALPHA_OPAQUE
, lenAlpha
);
1938 void wxImage::ClearAlpha()
1940 wxCHECK_RET( HasAlpha(), wxT("image already doesn't have an alpha channel") );
1942 if ( !M_IMGDATA
->m_staticAlpha
)
1943 free( M_IMGDATA
->m_alpha
);
1945 M_IMGDATA
->m_alpha
= NULL
;
1949 // ----------------------------------------------------------------------------
1951 // ----------------------------------------------------------------------------
1953 void wxImage::SetMaskColour( unsigned char r
, unsigned char g
, unsigned char b
)
1955 wxCHECK_RET( Ok(), wxT("invalid image") );
1959 M_IMGDATA
->m_maskRed
= r
;
1960 M_IMGDATA
->m_maskGreen
= g
;
1961 M_IMGDATA
->m_maskBlue
= b
;
1962 M_IMGDATA
->m_hasMask
= true;
1965 bool wxImage::GetOrFindMaskColour( unsigned char *r
, unsigned char *g
, unsigned char *b
) const
1967 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1969 if (M_IMGDATA
->m_hasMask
)
1971 if (r
) *r
= M_IMGDATA
->m_maskRed
;
1972 if (g
) *g
= M_IMGDATA
->m_maskGreen
;
1973 if (b
) *b
= M_IMGDATA
->m_maskBlue
;
1978 FindFirstUnusedColour(r
, g
, b
);
1983 unsigned char wxImage::GetMaskRed() const
1985 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1987 return M_IMGDATA
->m_maskRed
;
1990 unsigned char wxImage::GetMaskGreen() const
1992 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1994 return M_IMGDATA
->m_maskGreen
;
1997 unsigned char wxImage::GetMaskBlue() const
1999 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
2001 return M_IMGDATA
->m_maskBlue
;
2004 void wxImage::SetMask( bool mask
)
2006 wxCHECK_RET( Ok(), wxT("invalid image") );
2010 M_IMGDATA
->m_hasMask
= mask
;
2013 bool wxImage::HasMask() const
2015 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
2017 return M_IMGDATA
->m_hasMask
;
2020 bool wxImage::IsTransparent(int x
, int y
, unsigned char threshold
) const
2022 long pos
= XYToIndex(x
, y
);
2023 wxCHECK_MSG( pos
!= -1, false, wxT("invalid image coordinates") );
2026 if ( M_IMGDATA
->m_hasMask
)
2028 const unsigned char *p
= M_IMGDATA
->m_data
+ 3*pos
;
2029 if ( p
[0] == M_IMGDATA
->m_maskRed
&&
2030 p
[1] == M_IMGDATA
->m_maskGreen
&&
2031 p
[2] == M_IMGDATA
->m_maskBlue
)
2038 if ( M_IMGDATA
->m_alpha
)
2040 if ( M_IMGDATA
->m_alpha
[pos
] < threshold
)
2042 // transparent enough
2051 bool wxImage::SetMaskFromImage(const wxImage
& mask
,
2052 unsigned char mr
, unsigned char mg
, unsigned char mb
)
2054 // check that the images are the same size
2055 if ( (M_IMGDATA
->m_height
!= mask
.GetHeight() ) || (M_IMGDATA
->m_width
!= mask
.GetWidth () ) )
2057 wxLogError( _("Image and mask have different sizes.") );
2061 // find unused colour
2062 unsigned char r
,g
,b
;
2063 if (!FindFirstUnusedColour(&r
, &g
, &b
))
2065 wxLogError( _("No unused colour in image being masked.") );
2071 unsigned char *imgdata
= GetData();
2072 unsigned char *maskdata
= mask
.GetData();
2074 const int w
= GetWidth();
2075 const int h
= GetHeight();
2077 for (int j
= 0; j
< h
; j
++)
2079 for (int i
= 0; i
< w
; i
++)
2081 if ((maskdata
[0] == mr
) && (maskdata
[1] == mg
) && (maskdata
[2] == mb
))
2092 SetMaskColour(r
, g
, b
);
2098 bool wxImage::ConvertAlphaToMask(unsigned char threshold
)
2103 unsigned char mr
, mg
, mb
;
2104 if ( !FindFirstUnusedColour(&mr
, &mg
, &mb
) )
2106 wxLogError( _("No unused colour in image being masked.") );
2110 return ConvertAlphaToMask(mr
, mg
, mb
, threshold
);
2113 bool wxImage::ConvertAlphaToMask(unsigned char mr
,
2116 unsigned char threshold
)
2124 SetMaskColour(mr
, mg
, mb
);
2126 unsigned char *imgdata
= GetData();
2127 unsigned char *alphadata
= GetAlpha();
2130 int h
= GetHeight();
2132 for (int y
= 0; y
< h
; y
++)
2134 for (int x
= 0; x
< w
; x
++, imgdata
+= 3, alphadata
++)
2136 if (*alphadata
< threshold
)
2145 if ( !M_IMGDATA
->m_staticAlpha
)
2146 free(M_IMGDATA
->m_alpha
);
2148 M_IMGDATA
->m_alpha
= NULL
;
2149 M_IMGDATA
->m_staticAlpha
= false;
2154 // ----------------------------------------------------------------------------
2155 // Palette functions
2156 // ----------------------------------------------------------------------------
2160 bool wxImage::HasPalette() const
2165 return M_IMGDATA
->m_palette
.Ok();
2168 const wxPalette
& wxImage::GetPalette() const
2170 wxCHECK_MSG( Ok(), wxNullPalette
, wxT("invalid image") );
2172 return M_IMGDATA
->m_palette
;
2175 void wxImage::SetPalette(const wxPalette
& palette
)
2177 wxCHECK_RET( Ok(), wxT("invalid image") );
2181 M_IMGDATA
->m_palette
= palette
;
2184 #endif // wxUSE_PALETTE
2186 // ----------------------------------------------------------------------------
2187 // Option functions (arbitrary name/value mapping)
2188 // ----------------------------------------------------------------------------
2190 void wxImage::SetOption(const wxString
& name
, const wxString
& value
)
2194 int idx
= M_IMGDATA
->m_optionNames
.Index(name
, false);
2195 if ( idx
== wxNOT_FOUND
)
2197 M_IMGDATA
->m_optionNames
.Add(name
);
2198 M_IMGDATA
->m_optionValues
.Add(value
);
2202 M_IMGDATA
->m_optionNames
[idx
] = name
;
2203 M_IMGDATA
->m_optionValues
[idx
] = value
;
2207 void wxImage::SetOption(const wxString
& name
, int value
)
2210 valStr
.Printf(wxT("%d"), value
);
2211 SetOption(name
, valStr
);
2214 wxString
wxImage::GetOption(const wxString
& name
) const
2217 return wxEmptyString
;
2219 int idx
= M_IMGDATA
->m_optionNames
.Index(name
, false);
2220 if ( idx
== wxNOT_FOUND
)
2221 return wxEmptyString
;
2223 return M_IMGDATA
->m_optionValues
[idx
];
2226 int wxImage::GetOptionInt(const wxString
& name
) const
2228 return wxAtoi(GetOption(name
));
2231 bool wxImage::HasOption(const wxString
& name
) const
2233 return M_IMGDATA
? M_IMGDATA
->m_optionNames
.Index(name
, false) != wxNOT_FOUND
2237 // ----------------------------------------------------------------------------
2239 // ----------------------------------------------------------------------------
2241 bool wxImage::LoadFile( const wxString
& WXUNUSED_UNLESS_STREAMS(filename
),
2242 wxBitmapType
WXUNUSED_UNLESS_STREAMS(type
),
2243 int WXUNUSED_UNLESS_STREAMS(index
) )
2245 #if HAS_FILE_STREAMS
2246 if (wxFileExists(filename
))
2248 wxImageFileInputStream
stream(filename
);
2249 wxBufferedInputStream
bstream( stream
);
2250 return LoadFile(bstream
, type
, index
);
2254 wxLogError( _("Can't load image from file '%s': file does not exist."), filename
.c_str() );
2258 #else // !HAS_FILE_STREAMS
2260 #endif // HAS_FILE_STREAMS
2263 bool wxImage::LoadFile( const wxString
& WXUNUSED_UNLESS_STREAMS(filename
),
2264 const wxString
& WXUNUSED_UNLESS_STREAMS(mimetype
),
2265 int WXUNUSED_UNLESS_STREAMS(index
) )
2267 #if HAS_FILE_STREAMS
2268 if (wxFileExists(filename
))
2270 wxImageFileInputStream
stream(filename
);
2271 wxBufferedInputStream
bstream( stream
);
2272 return LoadFile(bstream
, mimetype
, index
);
2276 wxLogError( _("Can't load image from file '%s': file does not exist."), filename
.c_str() );
2280 #else // !HAS_FILE_STREAMS
2282 #endif // HAS_FILE_STREAMS
2286 bool wxImage::SaveFile( const wxString
& filename
) const
2288 wxString ext
= filename
.AfterLast('.').Lower();
2290 wxImageHandler
*handler
= FindHandler(ext
, wxBITMAP_TYPE_ANY
);
2293 wxLogError(_("Can't save image to file '%s': unknown extension."),
2298 return SaveFile(filename
, handler
->GetType());
2301 bool wxImage::SaveFile( const wxString
& WXUNUSED_UNLESS_STREAMS(filename
),
2302 wxBitmapType
WXUNUSED_UNLESS_STREAMS(type
) ) const
2304 #if HAS_FILE_STREAMS
2305 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
2307 ((wxImage
*)this)->SetOption(wxIMAGE_OPTION_FILENAME
, filename
);
2309 wxImageFileOutputStream
stream(filename
);
2311 if ( stream
.IsOk() )
2313 wxBufferedOutputStream
bstream( stream
);
2314 return SaveFile(bstream
, type
);
2316 #endif // HAS_FILE_STREAMS
2321 bool wxImage::SaveFile( const wxString
& WXUNUSED_UNLESS_STREAMS(filename
),
2322 const wxString
& WXUNUSED_UNLESS_STREAMS(mimetype
) ) const
2324 #if HAS_FILE_STREAMS
2325 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
2327 ((wxImage
*)this)->SetOption(wxIMAGE_OPTION_FILENAME
, filename
);
2329 wxImageFileOutputStream
stream(filename
);
2331 if ( stream
.IsOk() )
2333 wxBufferedOutputStream
bstream( stream
);
2334 return SaveFile(bstream
, mimetype
);
2336 #endif // HAS_FILE_STREAMS
2341 bool wxImage::CanRead( const wxString
& WXUNUSED_UNLESS_STREAMS(name
) )
2343 #if HAS_FILE_STREAMS
2344 wxImageFileInputStream
stream(name
);
2345 return CanRead(stream
);
2351 int wxImage::GetImageCount( const wxString
& WXUNUSED_UNLESS_STREAMS(name
),
2352 wxBitmapType
WXUNUSED_UNLESS_STREAMS(type
) )
2354 #if HAS_FILE_STREAMS
2355 wxImageFileInputStream
stream(name
);
2357 return GetImageCount(stream
, type
);
2365 bool wxImage::CanRead( wxInputStream
&stream
)
2367 const wxList
& list
= GetHandlers();
2369 for ( wxList::compatibility_iterator node
= list
.GetFirst(); node
; node
= node
->GetNext() )
2371 wxImageHandler
*handler
=(wxImageHandler
*)node
->GetData();
2372 if (handler
->CanRead( stream
))
2379 int wxImage::GetImageCount( wxInputStream
&stream
, wxBitmapType type
)
2381 wxImageHandler
*handler
;
2383 if ( type
== wxBITMAP_TYPE_ANY
)
2385 const wxList
& list
= GetHandlers();
2387 for ( wxList::compatibility_iterator node
= list
.GetFirst();
2389 node
= node
->GetNext() )
2391 handler
= (wxImageHandler
*)node
->GetData();
2392 if ( handler
->CanRead(stream
) )
2394 const int count
= handler
->GetImageCount(stream
);
2401 wxLogWarning(_("No handler found for image type."));
2405 handler
= FindHandler(type
);
2409 wxLogWarning(_("No image handler for type %d defined."), type
);
2413 if ( handler
->CanRead(stream
) )
2415 return handler
->GetImageCount(stream
);
2419 wxLogError(_("Image file is not of type %d."), type
);
2424 bool wxImage::DoLoad(wxImageHandler
& handler
, wxInputStream
& stream
, int index
)
2426 // save the options values which can be clobbered by the handler (e.g. many
2427 // of them call Destroy() before trying to load the file)
2428 const unsigned maxWidth
= GetOptionInt(wxIMAGE_OPTION_MAX_WIDTH
),
2429 maxHeight
= GetOptionInt(wxIMAGE_OPTION_MAX_HEIGHT
);
2431 if ( !handler
.LoadFile(this, stream
, true/*verbose*/, index
) )
2434 // rescale the image to the specified size if needed
2435 if ( maxWidth
|| maxHeight
)
2437 const unsigned widthOrig
= GetWidth(),
2438 heightOrig
= GetHeight();
2440 // this uses the same (trivial) algorithm as the JPEG handler
2441 unsigned width
= widthOrig
,
2442 height
= heightOrig
;
2443 while ( (maxWidth
&& width
> maxWidth
) ||
2444 (maxHeight
&& height
> maxHeight
) )
2450 if ( width
!= widthOrig
|| height
!= heightOrig
)
2451 Rescale(width
, height
, wxIMAGE_QUALITY_HIGH
);
2454 // Set this after Rescale, which currently does not preserve it
2455 M_IMGDATA
->m_type
= handler
.GetType();
2460 bool wxImage::LoadFile( wxInputStream
& stream
, wxBitmapType type
, int index
)
2464 wxImageHandler
*handler
;
2466 if ( type
== wxBITMAP_TYPE_ANY
)
2468 const wxList
& list
= GetHandlers();
2469 for ( wxList::compatibility_iterator node
= list
.GetFirst();
2471 node
= node
->GetNext() )
2473 handler
= (wxImageHandler
*)node
->GetData();
2474 if ( handler
->CanRead(stream
) && DoLoad(*handler
, stream
, index
) )
2478 wxLogWarning( _("No handler found for image type.") );
2482 //else: have specific type
2484 handler
= FindHandler(type
);
2487 wxLogWarning( _("No image handler for type %d defined."), type
);
2491 if ( stream
.IsSeekable() && !handler
->CanRead(stream
) )
2493 wxLogError(_("Image file is not of type %d."), type
);
2497 return DoLoad(*handler
, stream
, index
);
2500 bool wxImage::LoadFile( wxInputStream
& stream
, const wxString
& mimetype
, int index
)
2504 m_refData
= new wxImageRefData
;
2506 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
2510 wxLogWarning( _("No image handler for type %s defined."), mimetype
.GetData() );
2514 if ( stream
.IsSeekable() && !handler
->CanRead(stream
) )
2516 wxLogError(_("Image file is not of type %s."), mimetype
);
2520 return DoLoad(*handler
, stream
, index
);
2523 bool wxImage::DoSave(wxImageHandler
& handler
, wxOutputStream
& stream
) const
2525 wxImage
* const self
= const_cast<wxImage
*>(this);
2526 if ( !handler
.SaveFile(self
, stream
) )
2529 M_IMGDATA
->m_type
= handler
.GetType();
2533 bool wxImage::SaveFile( wxOutputStream
& stream
, wxBitmapType type
) const
2535 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
2537 wxImageHandler
*handler
= FindHandler(type
);
2540 wxLogWarning( _("No image handler for type %d defined."), type
);
2544 return DoSave(*handler
, stream
);
2547 bool wxImage::SaveFile( wxOutputStream
& stream
, const wxString
& mimetype
) const
2549 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
2551 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
2554 wxLogWarning( _("No image handler for type %s defined."), mimetype
.GetData() );
2557 return DoSave(*handler
, stream
);
2560 #endif // wxUSE_STREAMS
2562 // ----------------------------------------------------------------------------
2563 // image I/O handlers
2564 // ----------------------------------------------------------------------------
2566 void wxImage::AddHandler( wxImageHandler
*handler
)
2568 // Check for an existing handler of the type being added.
2569 if (FindHandler( handler
->GetType() ) == 0)
2571 sm_handlers
.Append( handler
);
2575 // This is not documented behaviour, merely the simplest 'fix'
2576 // for preventing duplicate additions. If someone ever has
2577 // a good reason to add and remove duplicate handlers (and they
2578 // may) we should probably refcount the duplicates.
2579 // also an issue in InsertHandler below.
2581 wxLogDebug( wxT("Adding duplicate image handler for '%s'"),
2582 handler
->GetName().c_str() );
2587 void wxImage::InsertHandler( wxImageHandler
*handler
)
2589 // Check for an existing handler of the type being added.
2590 if (FindHandler( handler
->GetType() ) == 0)
2592 sm_handlers
.Insert( handler
);
2596 // see AddHandler for additional comments.
2597 wxLogDebug( wxT("Inserting duplicate image handler for '%s'"),
2598 handler
->GetName().c_str() );
2603 bool wxImage::RemoveHandler( const wxString
& name
)
2605 wxImageHandler
*handler
= FindHandler(name
);
2608 sm_handlers
.DeleteObject(handler
);
2616 wxImageHandler
*wxImage::FindHandler( const wxString
& name
)
2618 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
2621 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
2622 if (handler
->GetName().Cmp(name
) == 0) return handler
;
2624 node
= node
->GetNext();
2629 wxImageHandler
*wxImage::FindHandler( const wxString
& extension
, wxBitmapType bitmapType
)
2631 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
2634 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
2635 if ((bitmapType
== wxBITMAP_TYPE_ANY
) || (handler
->GetType() == bitmapType
))
2637 if (handler
->GetExtension() == extension
)
2639 if (handler
->GetAltExtensions().Index(extension
, false) != wxNOT_FOUND
)
2642 node
= node
->GetNext();
2647 wxImageHandler
*wxImage::FindHandler(wxBitmapType bitmapType
)
2649 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
2652 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
2653 if (handler
->GetType() == bitmapType
) return handler
;
2654 node
= node
->GetNext();
2659 wxImageHandler
*wxImage::FindHandlerMime( const wxString
& mimetype
)
2661 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
2664 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
2665 if (handler
->GetMimeType().IsSameAs(mimetype
, false)) return handler
;
2666 node
= node
->GetNext();
2671 void wxImage::InitStandardHandlers()
2674 AddHandler(new wxBMPHandler
);
2675 #endif // wxUSE_STREAMS
2678 void wxImage::CleanUpHandlers()
2680 wxList::compatibility_iterator node
= sm_handlers
.GetFirst();
2683 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
2684 wxList::compatibility_iterator next
= node
->GetNext();
2689 sm_handlers
.Clear();
2692 wxString
wxImage::GetImageExtWildcard()
2696 wxList
& Handlers
= wxImage::GetHandlers();
2697 wxList::compatibility_iterator Node
= Handlers
.GetFirst();
2700 wxImageHandler
* Handler
= (wxImageHandler
*)Node
->GetData();
2701 fmts
+= wxT("*.") + Handler
->GetExtension();
2702 for (size_t i
= 0; i
< Handler
->GetAltExtensions().size(); i
++)
2703 fmts
+= wxT(";*.") + Handler
->GetAltExtensions()[i
];
2704 Node
= Node
->GetNext();
2705 if ( Node
) fmts
+= wxT(";");
2708 return wxT("(") + fmts
+ wxT(")|") + fmts
;
2711 wxImage::HSVValue
wxImage::RGBtoHSV(const RGBValue
& rgb
)
2713 const double red
= rgb
.red
/ 255.0,
2714 green
= rgb
.green
/ 255.0,
2715 blue
= rgb
.blue
/ 255.0;
2717 // find the min and max intensity (and remember which one was it for the
2719 double minimumRGB
= red
;
2720 if ( green
< minimumRGB
)
2722 if ( blue
< minimumRGB
)
2725 enum { RED
, GREEN
, BLUE
} chMax
= RED
;
2726 double maximumRGB
= red
;
2727 if ( green
> maximumRGB
)
2732 if ( blue
> maximumRGB
)
2738 const double value
= maximumRGB
;
2740 double hue
= 0.0, saturation
;
2741 const double deltaRGB
= maximumRGB
- minimumRGB
;
2742 if ( wxIsNullDouble(deltaRGB
) )
2744 // Gray has no color
2753 hue
= (green
- blue
) / deltaRGB
;
2757 hue
= 2.0 + (blue
- red
) / deltaRGB
;
2761 hue
= 4.0 + (red
- green
) / deltaRGB
;
2765 wxFAIL_MSG(wxT("hue not specified"));
2774 saturation
= deltaRGB
/ maximumRGB
;
2777 return HSVValue(hue
, saturation
, value
);
2780 wxImage::RGBValue
wxImage::HSVtoRGB(const HSVValue
& hsv
)
2782 double red
, green
, blue
;
2784 if ( wxIsNullDouble(hsv
.saturation
) )
2793 double hue
= hsv
.hue
* 6.0; // sector 0 to 5
2794 int i
= (int)floor(hue
);
2795 double f
= hue
- i
; // fractional part of h
2796 double p
= hsv
.value
* (1.0 - hsv
.saturation
);
2802 green
= hsv
.value
* (1.0 - hsv
.saturation
* (1.0 - f
));
2807 red
= hsv
.value
* (1.0 - hsv
.saturation
* f
);
2815 blue
= hsv
.value
* (1.0 - hsv
.saturation
* (1.0 - f
));
2820 green
= hsv
.value
* (1.0 - hsv
.saturation
* f
);
2825 red
= hsv
.value
* (1.0 - hsv
.saturation
* (1.0 - f
));
2833 blue
= hsv
.value
* (1.0 - hsv
.saturation
* f
);
2838 return RGBValue((unsigned char)(red
* 255.0),
2839 (unsigned char)(green
* 255.0),
2840 (unsigned char)(blue
* 255.0));
2844 * Rotates the hue of each pixel of the image. angle is a double in the range
2845 * -1.0..1.0 where -1.0 is -360 degrees and 1.0 is 360 degrees
2847 void wxImage::RotateHue(double angle
)
2851 unsigned char *srcBytePtr
;
2852 unsigned char *dstBytePtr
;
2853 unsigned long count
;
2854 wxImage::HSVValue hsv
;
2855 wxImage::RGBValue rgb
;
2857 wxASSERT (angle
>= -1.0 && angle
<= 1.0);
2858 count
= M_IMGDATA
->m_width
* M_IMGDATA
->m_height
;
2859 if ( count
> 0 && !wxIsNullDouble(angle
) )
2861 srcBytePtr
= M_IMGDATA
->m_data
;
2862 dstBytePtr
= srcBytePtr
;
2865 rgb
.red
= *srcBytePtr
++;
2866 rgb
.green
= *srcBytePtr
++;
2867 rgb
.blue
= *srcBytePtr
++;
2868 hsv
= RGBtoHSV(rgb
);
2870 hsv
.hue
= hsv
.hue
+ angle
;
2872 hsv
.hue
= hsv
.hue
- 1.0;
2873 else if (hsv
.hue
< 0.0)
2874 hsv
.hue
= hsv
.hue
+ 1.0;
2876 rgb
= HSVtoRGB(hsv
);
2877 *dstBytePtr
++ = rgb
.red
;
2878 *dstBytePtr
++ = rgb
.green
;
2879 *dstBytePtr
++ = rgb
.blue
;
2880 } while (--count
!= 0);
2884 //-----------------------------------------------------------------------------
2886 //-----------------------------------------------------------------------------
2888 IMPLEMENT_ABSTRACT_CLASS(wxImageHandler
,wxObject
)
2891 int wxImageHandler::GetImageCount( wxInputStream
& stream
)
2893 // NOTE: this code is the same of wxAnimationDecoder::CanRead and
2894 // wxImageHandler::CallDoCanRead
2896 if ( !stream
.IsSeekable() )
2897 return false; // can't test unseekable stream
2899 wxFileOffset posOld
= stream
.TellI();
2900 int n
= DoGetImageCount(stream
);
2902 // restore the old position to be able to test other formats and so on
2903 if ( stream
.SeekI(posOld
) == wxInvalidOffset
)
2905 wxLogDebug(wxT("Failed to rewind the stream in wxImageHandler!"));
2907 // reading would fail anyhow as we're not at the right position
2914 bool wxImageHandler::CanRead( const wxString
& name
)
2916 if (wxFileExists(name
))
2918 wxImageFileInputStream
stream(name
);
2919 return CanRead(stream
);
2922 wxLogError( _("Can't check image format of file '%s': file does not exist."), name
.c_str() );
2927 bool wxImageHandler::CallDoCanRead(wxInputStream
& stream
)
2929 // NOTE: this code is the same of wxAnimationDecoder::CanRead and
2930 // wxImageHandler::GetImageCount
2932 if ( !stream
.IsSeekable() )
2933 return false; // can't test unseekable stream
2935 wxFileOffset posOld
= stream
.TellI();
2936 bool ok
= DoCanRead(stream
);
2938 // restore the old position to be able to test other formats and so on
2939 if ( stream
.SeekI(posOld
) == wxInvalidOffset
)
2941 wxLogDebug(wxT("Failed to rewind the stream in wxImageHandler!"));
2943 // reading would fail anyhow as we're not at the right position
2950 #endif // wxUSE_STREAMS
2954 wxImageHandler::GetResolutionFromOptions(const wxImage
& image
, int *x
, int *y
)
2956 wxCHECK_MSG( x
&& y
, wxIMAGE_RESOLUTION_NONE
, wxT("NULL pointer") );
2958 if ( image
.HasOption(wxIMAGE_OPTION_RESOLUTIONX
) &&
2959 image
.HasOption(wxIMAGE_OPTION_RESOLUTIONY
) )
2961 *x
= image
.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONX
);
2962 *y
= image
.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONY
);
2964 else if ( image
.HasOption(wxIMAGE_OPTION_RESOLUTION
) )
2967 *y
= image
.GetOptionInt(wxIMAGE_OPTION_RESOLUTION
);
2969 else // no resolution options specified
2974 return wxIMAGE_RESOLUTION_NONE
;
2977 // get the resolution unit too
2978 int resUnit
= image
.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONUNIT
);
2981 // this is the default
2982 resUnit
= wxIMAGE_RESOLUTION_INCHES
;
2985 return (wxImageResolution
)resUnit
;
2988 // ----------------------------------------------------------------------------
2989 // image histogram stuff
2990 // ----------------------------------------------------------------------------
2993 wxImageHistogram::FindFirstUnusedColour(unsigned char *r
,
2998 unsigned char g2
) const
3000 unsigned long key
= MakeKey(r2
, g2
, b2
);
3002 while ( find(key
) != end() )
3004 // color already used
3016 wxLogError(_("No unused colour in image.") );
3022 key
= MakeKey(r2
, g2
, b2
);
3036 wxImage::FindFirstUnusedColour(unsigned char *r
,
3041 unsigned char g2
) const
3043 wxImageHistogram histogram
;
3045 ComputeHistogram(histogram
);
3047 return histogram
.FindFirstUnusedColour(r
, g
, b
, r2
, g2
, b2
);
3053 // Counts and returns the number of different colours. Optionally stops
3054 // when it exceeds 'stopafter' different colours. This is useful, for
3055 // example, to see if the image can be saved as 8-bit (256 colour or
3056 // less, in this case it would be invoked as CountColours(256)). Default
3057 // value for stopafter is -1 (don't care).
3059 unsigned long wxImage::CountColours( unsigned long stopafter
) const
3063 unsigned char r
, g
, b
;
3065 unsigned long size
, nentries
, key
;
3068 size
= GetWidth() * GetHeight();
3071 for (unsigned long j
= 0; (j
< size
) && (nentries
<= stopafter
) ; j
++)
3076 key
= wxImageHistogram::MakeKey(r
, g
, b
);
3078 if (h
.Get(key
) == NULL
)
3089 unsigned long wxImage::ComputeHistogram( wxImageHistogram
&h
) const
3091 unsigned char *p
= GetData();
3092 unsigned long nentries
= 0;
3096 const unsigned long size
= GetWidth() * GetHeight();
3098 unsigned char r
, g
, b
;
3099 for ( unsigned long n
= 0; n
< size
; n
++ )
3105 wxImageHistogramEntry
& entry
= h
[wxImageHistogram::MakeKey(r
, g
, b
)];
3107 if ( entry
.value
++ == 0 )
3108 entry
.index
= nentries
++;
3115 * Rotation code by Carlos Moreno
3118 static const double wxROTATE_EPSILON
= 1e-10;
3120 // Auxiliary function to rotate a point (x,y) with respect to point p0
3121 // make it inline and use a straight return to facilitate optimization
3122 // also, the function receives the sine and cosine of the angle to avoid
3123 // repeating the time-consuming calls to these functions -- sin/cos can
3124 // be computed and stored in the calling function.
3126 static inline wxRealPoint
3127 wxRotatePoint(const wxRealPoint
& p
, double cos_angle
, double sin_angle
,
3128 const wxRealPoint
& p0
)
3130 return wxRealPoint(p0
.x
+ (p
.x
- p0
.x
) * cos_angle
- (p
.y
- p0
.y
) * sin_angle
,
3131 p0
.y
+ (p
.y
- p0
.y
) * cos_angle
+ (p
.x
- p0
.x
) * sin_angle
);
3134 static inline wxRealPoint
3135 wxRotatePoint(double x
, double y
, double cos_angle
, double sin_angle
,
3136 const wxRealPoint
& p0
)
3138 return wxRotatePoint (wxRealPoint(x
,y
), cos_angle
, sin_angle
, p0
);
3141 wxImage
wxImage::Rotate(double angle
,
3142 const wxPoint
& centre_of_rotation
,
3144 wxPoint
*offset_after_rotation
) const
3146 // screen coordinates are a mirror image of "real" coordinates
3149 const bool has_alpha
= HasAlpha();
3151 const int w
= GetWidth();
3152 const int h
= GetHeight();
3156 // Create pointer-based array to accelerate access to wxImage's data
3157 unsigned char ** data
= new unsigned char * [h
];
3158 data
[0] = GetData();
3159 for (i
= 1; i
< h
; i
++)
3160 data
[i
] = data
[i
- 1] + (3 * w
);
3162 // Same for alpha channel
3163 unsigned char ** alpha
= NULL
;
3166 alpha
= new unsigned char * [h
];
3167 alpha
[0] = GetAlpha();
3168 for (i
= 1; i
< h
; i
++)
3169 alpha
[i
] = alpha
[i
- 1] + w
;
3172 // precompute coefficients for rotation formula
3173 const double cos_angle
= cos(angle
);
3174 const double sin_angle
= sin(angle
);
3176 // Create new Image to store the result
3177 // First, find rectangle that covers the rotated image; to do that,
3178 // rotate the four corners
3180 const wxRealPoint
p0(centre_of_rotation
.x
, centre_of_rotation
.y
);
3182 wxRealPoint p1
= wxRotatePoint (0, 0, cos_angle
, sin_angle
, p0
);
3183 wxRealPoint p2
= wxRotatePoint (0, h
, cos_angle
, sin_angle
, p0
);
3184 wxRealPoint p3
= wxRotatePoint (w
, 0, cos_angle
, sin_angle
, p0
);
3185 wxRealPoint p4
= wxRotatePoint (w
, h
, cos_angle
, sin_angle
, p0
);
3187 int x1a
= (int) floor (wxMin (wxMin(p1
.x
, p2
.x
), wxMin(p3
.x
, p4
.x
)));
3188 int y1a
= (int) floor (wxMin (wxMin(p1
.y
, p2
.y
), wxMin(p3
.y
, p4
.y
)));
3189 int x2a
= (int) ceil (wxMax (wxMax(p1
.x
, p2
.x
), wxMax(p3
.x
, p4
.x
)));
3190 int y2a
= (int) ceil (wxMax (wxMax(p1
.y
, p2
.y
), wxMax(p3
.y
, p4
.y
)));
3192 // Create rotated image
3193 wxImage
rotated (x2a
- x1a
+ 1, y2a
- y1a
+ 1, false);
3194 // With alpha channel
3198 if (offset_after_rotation
!= NULL
)
3200 *offset_after_rotation
= wxPoint (x1a
, y1a
);
3203 // the rotated (destination) image is always accessed sequentially via this
3204 // pointer, there is no need for pointer-based arrays here
3205 unsigned char *dst
= rotated
.GetData();
3207 unsigned char *alpha_dst
= has_alpha
? rotated
.GetAlpha() : NULL
;
3209 // if the original image has a mask, use its RGB values as the blank pixel,
3210 // else, fall back to default (black).
3211 unsigned char blank_r
= 0;
3212 unsigned char blank_g
= 0;
3213 unsigned char blank_b
= 0;
3217 blank_r
= GetMaskRed();
3218 blank_g
= GetMaskGreen();
3219 blank_b
= GetMaskBlue();
3220 rotated
.SetMaskColour( blank_r
, blank_g
, blank_b
);
3223 // Now, for each point of the rotated image, find where it came from, by
3224 // performing an inverse rotation (a rotation of -angle) and getting the
3225 // pixel at those coordinates
3227 const int rH
= rotated
.GetHeight();
3228 const int rW
= rotated
.GetWidth();
3230 // do the (interpolating) test outside of the loops, so that it is done
3231 // only once, instead of repeating it for each pixel.
3234 for (int y
= 0; y
< rH
; y
++)
3236 for (int x
= 0; x
< rW
; x
++)
3238 wxRealPoint src
= wxRotatePoint (x
+ x1a
, y
+ y1a
, cos_angle
, -sin_angle
, p0
);
3240 if (-0.25 < src
.x
&& src
.x
< w
- 0.75 &&
3241 -0.25 < src
.y
&& src
.y
< h
- 0.75)
3243 // interpolate using the 4 enclosing grid-points. Those
3244 // points can be obtained using floor and ceiling of the
3245 // exact coordinates of the point
3248 if (0 < src
.x
&& src
.x
< w
- 1)
3250 x1
= wxRound(floor(src
.x
));
3251 x2
= wxRound(ceil(src
.x
));
3253 else // else means that x is near one of the borders (0 or width-1)
3255 x1
= x2
= wxRound (src
.x
);
3258 if (0 < src
.y
&& src
.y
< h
- 1)
3260 y1
= wxRound(floor(src
.y
));
3261 y2
= wxRound(ceil(src
.y
));
3265 y1
= y2
= wxRound (src
.y
);
3268 // get four points and the distances (square of the distance,
3269 // for efficiency reasons) for the interpolation formula
3271 // GRG: Do not calculate the points until they are
3272 // really needed -- this way we can calculate
3273 // just one, instead of four, if d1, d2, d3
3274 // or d4 are < wxROTATE_EPSILON
3276 const double d1
= (src
.x
- x1
) * (src
.x
- x1
) + (src
.y
- y1
) * (src
.y
- y1
);
3277 const double d2
= (src
.x
- x2
) * (src
.x
- x2
) + (src
.y
- y1
) * (src
.y
- y1
);
3278 const double d3
= (src
.x
- x2
) * (src
.x
- x2
) + (src
.y
- y2
) * (src
.y
- y2
);
3279 const double d4
= (src
.x
- x1
) * (src
.x
- x1
) + (src
.y
- y2
) * (src
.y
- y2
);
3281 // Now interpolate as a weighted average of the four surrounding
3282 // points, where the weights are the distances to each of those points
3284 // If the point is exactly at one point of the grid of the source
3285 // image, then don't interpolate -- just assign the pixel
3287 // d1,d2,d3,d4 are positive -- no need for abs()
3288 if (d1
< wxROTATE_EPSILON
)
3290 unsigned char *p
= data
[y1
] + (3 * x1
);
3296 *(alpha_dst
++) = *(alpha
[y1
] + x1
);
3298 else if (d2
< wxROTATE_EPSILON
)
3300 unsigned char *p
= data
[y1
] + (3 * x2
);
3306 *(alpha_dst
++) = *(alpha
[y1
] + x2
);
3308 else if (d3
< wxROTATE_EPSILON
)
3310 unsigned char *p
= data
[y2
] + (3 * x2
);
3316 *(alpha_dst
++) = *(alpha
[y2
] + x2
);
3318 else if (d4
< wxROTATE_EPSILON
)
3320 unsigned char *p
= data
[y2
] + (3 * x1
);
3326 *(alpha_dst
++) = *(alpha
[y2
] + x1
);
3330 // weights for the weighted average are proportional to the inverse of the distance
3331 unsigned char *v1
= data
[y1
] + (3 * x1
);
3332 unsigned char *v2
= data
[y1
] + (3 * x2
);
3333 unsigned char *v3
= data
[y2
] + (3 * x2
);
3334 unsigned char *v4
= data
[y2
] + (3 * x1
);
3336 const double w1
= 1/d1
, w2
= 1/d2
, w3
= 1/d3
, w4
= 1/d4
;
3340 *(dst
++) = (unsigned char)
3341 ( (w1
* *(v1
++) + w2
* *(v2
++) +
3342 w3
* *(v3
++) + w4
* *(v4
++)) /
3343 (w1
+ w2
+ w3
+ w4
) );
3344 *(dst
++) = (unsigned char)
3345 ( (w1
* *(v1
++) + w2
* *(v2
++) +
3346 w3
* *(v3
++) + w4
* *(v4
++)) /
3347 (w1
+ w2
+ w3
+ w4
) );
3348 *(dst
++) = (unsigned char)
3349 ( (w1
* *v1
+ w2
* *v2
+
3350 w3
* *v3
+ w4
* *v4
) /
3351 (w1
+ w2
+ w3
+ w4
) );
3355 v1
= alpha
[y1
] + (x1
);
3356 v2
= alpha
[y1
] + (x2
);
3357 v3
= alpha
[y2
] + (x2
);
3358 v4
= alpha
[y2
] + (x1
);
3360 *(alpha_dst
++) = (unsigned char)
3361 ( (w1
* *v1
+ w2
* *v2
+
3362 w3
* *v3
+ w4
* *v4
) /
3363 (w1
+ w2
+ w3
+ w4
) );
3379 else // not interpolating
3381 for (int y
= 0; y
< rH
; y
++)
3383 for (int x
= 0; x
< rW
; x
++)
3385 wxRealPoint src
= wxRotatePoint (x
+ x1a
, y
+ y1a
, cos_angle
, -sin_angle
, p0
);
3387 const int xs
= wxRound (src
.x
); // wxRound rounds to the
3388 const int ys
= wxRound (src
.y
); // closest integer
3390 if (0 <= xs
&& xs
< w
&& 0 <= ys
&& ys
< h
)
3392 unsigned char *p
= data
[ys
] + (3 * xs
);
3398 *(alpha_dst
++) = *(alpha
[ys
] + (xs
));
3407 *(alpha_dst
++) = 255;
3423 // A module to allow wxImage initialization/cleanup
3424 // without calling these functions from app.cpp or from
3425 // the user's application.
3427 class wxImageModule
: public wxModule
3429 DECLARE_DYNAMIC_CLASS(wxImageModule
)
3432 bool OnInit() { wxImage::InitStandardHandlers(); return true; }
3433 void OnExit() { wxImage::CleanUpHandlers(); }
3436 IMPLEMENT_DYNAMIC_CLASS(wxImageModule
, wxModule
)
3439 #endif // wxUSE_IMAGE