]> git.saurik.com Git - wxWidgets.git/blame - src/common/image.cpp
removed useless inclusion of wx/datetime.h
[wxWidgets.git] / src / common / image.cpp
CommitLineData
01111366 1/////////////////////////////////////////////////////////////////////////////
38d4b1e4 2// Name: src/common/image.cpp
01111366
RR
3// Purpose: wxImage
4// Author: Robert Roebling
5// RCS-ID: $Id$
6// Copyright: (c) Robert Roebling
65571936 7// Licence: wxWindows licence
01111366
RR
8/////////////////////////////////////////////////////////////////////////////
9
0b4f9ee3
UU
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
12
13#ifdef __BORLANDC__
edccf428 14 #pragma hdrstop
0b4f9ee3
UU
15#endif
16
c96ea657
VS
17#if wxUSE_IMAGE
18
0bca0373
WS
19#include "wx/image.h"
20
8898456d
WS
21#ifndef WX_PRECOMP
22 #include "wx/log.h"
32d4c30a 23 #include "wx/hash.h"
de6185e2 24 #include "wx/utils.h"
18680f86 25 #include "wx/math.h"
02761f6c 26 #include "wx/module.h"
5ff14574
PC
27 #include "wx/palette.h"
28 #include "wx/intl.h"
8898456d
WS
29#endif
30
dc86cb34 31#include "wx/filefn.h"
3d05544e 32#include "wx/wfstream.h"
452418c4 33#include "wx/xpmdecod.h"
cad61c3e 34
58a8ab88
JS
35// For memcpy
36#include <string.h>
37
6632225c
VS
38// make the code compile with either wxFile*Stream or wxFFile*Stream:
39#define HAS_FILE_STREAMS (wxUSE_STREAMS && (wxUSE_FILE || wxUSE_FFILE))
40
41#if HAS_FILE_STREAMS
8d6c5e4f 42 #if wxUSE_FFILE
6632225c
VS
43 typedef wxFFileInputStream wxImageFileInputStream;
44 typedef wxFFileOutputStream wxImageFileOutputStream;
8d6c5e4f
VS
45 #elif wxUSE_FILE
46 typedef wxFileInputStream wxImageFileInputStream;
47 typedef wxFileOutputStream wxImageFileOutputStream;
6632225c
VS
48 #endif // wxUSE_FILE/wxUSE_FFILE
49#endif // HAS_FILE_STREAMS
50
6f5d7825 51#if wxUSE_VARIANT
55ccdb93 52IMPLEMENT_VARIANT_OBJECT_EXPORTED_SHALLOWCMP(wxImage,WXDLLEXPORT)
6f5d7825
RR
53#endif
54
01111366
RR
55//-----------------------------------------------------------------------------
56// wxImage
57//-----------------------------------------------------------------------------
58
59class wxImageRefData: public wxObjectRefData
60{
fd0eed64 61public:
edccf428 62 wxImageRefData();
487659e0 63 virtual ~wxImageRefData();
c7abc967 64
dbda9e86
JS
65 int m_width;
66 int m_height;
67 unsigned char *m_data;
487659e0 68
dbda9e86
JS
69 bool m_hasMask;
70 unsigned char m_maskRed,m_maskGreen,m_maskBlue;
487659e0
VZ
71
72 // alpha channel data, may be NULL for the formats without alpha support
73 unsigned char *m_alpha;
74
dbda9e86 75 bool m_ok;
d2502f14
VZ
76
77 // if true, m_data is pointer to static data and shouldn't be freed
f6bcfd97 78 bool m_static;
487659e0 79
d2502f14
VZ
80 // same as m_static but for m_alpha
81 bool m_staticAlpha;
82
d275c7eb 83#if wxUSE_PALETTE
5e5437e0 84 wxPalette m_palette;
d275c7eb 85#endif // wxUSE_PALETTE
487659e0 86
5e5437e0
JS
87 wxArrayString m_optionNames;
88 wxArrayString m_optionValues;
22f3361e
VZ
89
90 DECLARE_NO_COPY_CLASS(wxImageRefData)
01111366
RR
91};
92
edccf428 93wxImageRefData::wxImageRefData()
01111366 94{
fd0eed64
RR
95 m_width = 0;
96 m_height = 0;
487659e0
VZ
97 m_data =
98 m_alpha = (unsigned char *) NULL;
99
fd0eed64
RR
100 m_maskRed = 0;
101 m_maskGreen = 0;
102 m_maskBlue = 0;
70cd62e9 103 m_hasMask = false;
487659e0 104
70cd62e9 105 m_ok = false;
d2502f14
VZ
106 m_static =
107 m_staticAlpha = false;
01111366
RR
108}
109
edccf428 110wxImageRefData::~wxImageRefData()
01111366 111{
d2502f14 112 if ( !m_static )
58c837a4 113 free( m_data );
d2502f14 114 if ( !m_staticAlpha )
4ea56379 115 free( m_alpha );
01111366
RR
116}
117
118wxList wxImage::sm_handlers;
119
fec19ea9
VS
120wxImage wxNullImage;
121
01111366
RR
122//-----------------------------------------------------------------------------
123
a0f81e9f 124#define M_IMGDATA wx_static_cast(wxImageRefData*, m_refData)
01111366 125
5e5437e0 126IMPLEMENT_DYNAMIC_CLASS(wxImage, wxObject)
01111366 127
ff865c13 128wxImage::wxImage( int width, int height, bool clear )
01111366 129{
ff865c13 130 Create( width, height, clear );
01111366
RR
131}
132
f6bcfd97
BP
133wxImage::wxImage( int width, int height, unsigned char* data, bool static_data )
134{
135 Create( width, height, data, static_data );
136}
137
4ea56379
RR
138wxImage::wxImage( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data )
139{
140 Create( width, height, data, alpha, static_data );
141}
142
60d43ad8 143wxImage::wxImage( const wxString& name, long type, int index )
01111366 144{
60d43ad8 145 LoadFile( name, type, index );
01111366
RR
146}
147
60d43ad8 148wxImage::wxImage( const wxString& name, const wxString& mimetype, int index )
9e9ee68e 149{
60d43ad8 150 LoadFile( name, mimetype, index );
9e9ee68e
VS
151}
152
e02afc7a 153#if wxUSE_STREAMS
60d43ad8 154wxImage::wxImage( wxInputStream& stream, long type, int index )
3d05544e 155{
60d43ad8 156 LoadFile( stream, type, index );
3d05544e 157}
9e9ee68e 158
60d43ad8 159wxImage::wxImage( wxInputStream& stream, const wxString& mimetype, int index )
9e9ee68e 160{
60d43ad8 161 LoadFile( stream, mimetype, index );
9e9ee68e 162}
e02afc7a 163#endif // wxUSE_STREAMS
3d05544e 164
452418c4 165wxImage::wxImage(const char* const* xpmData)
cad61c3e
JS
166{
167 Create(xpmData);
168}
169
452418c4 170bool wxImage::Create(const char* const* xpmData)
cad61c3e
JS
171{
172#if wxUSE_XPM
173 UnRef();
e9b64c5e 174
cad61c3e
JS
175 wxXPMDecoder decoder;
176 (*this) = decoder.ReadData(xpmData);
177 return Ok();
178#else
179 return false;
180#endif
181}
182
aaa97828 183bool wxImage::Create( int width, int height, bool clear )
01111366 184{
aadaf841
GRG
185 UnRef();
186
fd0eed64 187 m_refData = new wxImageRefData();
c7abc967 188
fd0eed64 189 M_IMGDATA->m_data = (unsigned char *) malloc( width*height*3 );
aaa97828 190 if (!M_IMGDATA->m_data)
fd0eed64
RR
191 {
192 UnRef();
70cd62e9 193 return false;
fd0eed64 194 }
aaa97828
VZ
195
196 if (clear)
197 memset(M_IMGDATA->m_data, 0, width*height*3);
198
199 M_IMGDATA->m_width = width;
200 M_IMGDATA->m_height = height;
70cd62e9 201 M_IMGDATA->m_ok = true;
aaa97828 202
70cd62e9 203 return true;
01111366
RR
204}
205
aaa97828 206bool wxImage::Create( int width, int height, unsigned char* data, bool static_data )
f6bcfd97
BP
207{
208 UnRef();
209
70cd62e9 210 wxCHECK_MSG( data, false, _T("NULL data in wxImage::Create") );
aaa97828 211
f6bcfd97
BP
212 m_refData = new wxImageRefData();
213
214 M_IMGDATA->m_data = data;
aaa97828
VZ
215 M_IMGDATA->m_width = width;
216 M_IMGDATA->m_height = height;
70cd62e9 217 M_IMGDATA->m_ok = true;
aaa97828
VZ
218 M_IMGDATA->m_static = static_data;
219
70cd62e9 220 return true;
f6bcfd97
BP
221}
222
4ea56379
RR
223bool wxImage::Create( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data )
224{
225 UnRef();
226
227 wxCHECK_MSG( data, false, _T("NULL data in wxImage::Create") );
228
229 m_refData = new wxImageRefData();
230
231 M_IMGDATA->m_data = data;
232 M_IMGDATA->m_alpha = alpha;
233 M_IMGDATA->m_width = width;
234 M_IMGDATA->m_height = height;
235 M_IMGDATA->m_ok = true;
236 M_IMGDATA->m_static = static_data;
237
238 return true;
239}
240
01111366
RR
241void wxImage::Destroy()
242{
fd0eed64 243 UnRef();
01111366
RR
244}
245
a0f81e9f 246wxObjectRefData* wxImage::CreateRefData() const
f6bcfd97 247{
a0f81e9f
PC
248 return new wxImageRefData;
249}
051924b8 250
a0f81e9f
PC
251wxObjectRefData* wxImage::CloneRefData(const wxObjectRefData* that) const
252{
253 const wxImageRefData* refData = wx_static_cast(const wxImageRefData*, that);
254 wxCHECK_MSG(refData->m_ok, NULL, wxT("invalid image") );
051924b8 255
a0f81e9f
PC
256 wxImageRefData* refData_new = new wxImageRefData;
257 refData_new->m_width = refData->m_width;
258 refData_new->m_height = refData->m_height;
259 refData_new->m_maskRed = refData->m_maskRed;
260 refData_new->m_maskGreen = refData->m_maskGreen;
261 refData_new->m_maskBlue = refData->m_maskBlue;
262 refData_new->m_hasMask = refData->m_hasMask;
263 refData_new->m_ok = true;
264 unsigned size = unsigned(refData->m_width) * unsigned(refData->m_height);
265 if (refData->m_alpha != NULL)
a1cd9564 266 {
a0f81e9f
PC
267 refData_new->m_alpha = (unsigned char*)malloc(size);
268 memcpy(refData_new->m_alpha, refData->m_alpha, size);
a1cd9564 269 }
a0f81e9f
PC
270 size *= 3;
271 refData_new->m_data = (unsigned char*)malloc(size);
272 memcpy(refData_new->m_data, refData->m_data, size);
273#if wxUSE_PALETTE
274 refData_new->m_palette = refData->m_palette;
275#endif
276 refData_new->m_optionNames = refData->m_optionNames;
277 refData_new->m_optionValues = refData->m_optionValues;
278 return refData_new;
279}
051924b8 280
a0f81e9f
PC
281wxImage wxImage::Copy() const
282{
283 wxImage image;
284
285 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
286
287 image.m_refData = CloneRefData(m_refData);
d8692f2b 288
f6bcfd97
BP
289 return image;
290}
291
fd9655ad
SC
292wxImage wxImage::ShrinkBy( int xFactor , int yFactor ) const
293{
294 if( xFactor == 1 && yFactor == 1 )
a0f81e9f 295 return *this;
7beb59f3 296
fd9655ad
SC
297 wxImage image;
298
299 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
300
301 // can't scale to/from 0 size
302 wxCHECK_MSG( (xFactor > 0) && (yFactor > 0), image,
303 wxT("invalid new image size") );
304
305 long old_height = M_IMGDATA->m_height,
306 old_width = M_IMGDATA->m_width;
7beb59f3 307
fd9655ad
SC
308 wxCHECK_MSG( (old_height > 0) && (old_width > 0), image,
309 wxT("invalid old image size") );
310
311 long width = old_width / xFactor ;
312 long height = old_height / yFactor ;
313
ff865c13 314 image.Create( width, height, false );
fd9655ad
SC
315
316 char unsigned *data = image.GetData();
317
318 wxCHECK_MSG( data, image, wxT("unable to create image") );
319
320 bool hasMask = false ;
321 unsigned char maskRed = 0;
322 unsigned char maskGreen = 0;
323 unsigned char maskBlue =0 ;
cd0bbd03
SC
324
325 unsigned char *source_data = M_IMGDATA->m_data;
326 unsigned char *target_data = data;
327 unsigned char *source_alpha = 0 ;
328 unsigned char *target_alpha = 0 ;
fd9655ad
SC
329 if (M_IMGDATA->m_hasMask)
330 {
331 hasMask = true ;
332 maskRed = M_IMGDATA->m_maskRed;
333 maskGreen = M_IMGDATA->m_maskGreen;
334 maskBlue =M_IMGDATA->m_maskBlue ;
7beb59f3 335
fd9655ad
SC
336 image.SetMaskColour( M_IMGDATA->m_maskRed,
337 M_IMGDATA->m_maskGreen,
338 M_IMGDATA->m_maskBlue );
339 }
cd0bbd03
SC
340 else
341 {
342 source_alpha = M_IMGDATA->m_alpha ;
343 if ( source_alpha )
344 {
345 image.SetAlpha() ;
346 target_alpha = image.GetAlpha() ;
347 }
348 }
7beb59f3 349
fd9655ad
SC
350 for (long y = 0; y < height; y++)
351 {
fd9655ad
SC
352 for (long x = 0; x < width; x++)
353 {
354 unsigned long avgRed = 0 ;
355 unsigned long avgGreen = 0;
356 unsigned long avgBlue = 0;
cd0bbd03 357 unsigned long avgAlpha = 0 ;
fd9655ad
SC
358 unsigned long counter = 0 ;
359 // determine average
360 for ( int y1 = 0 ; y1 < yFactor ; ++y1 )
361 {
362 long y_offset = (y * yFactor + y1) * old_width;
363 for ( int x1 = 0 ; x1 < xFactor ; ++x1 )
364 {
365 unsigned char *pixel = source_data + 3 * ( y_offset + x * xFactor + x1 ) ;
366 unsigned char red = pixel[0] ;
367 unsigned char green = pixel[1] ;
368 unsigned char blue = pixel[2] ;
cd0bbd03
SC
369 unsigned char alpha = 255 ;
370 if ( source_alpha )
371 alpha = *(source_alpha + y_offset + x * xFactor + x1) ;
fd9655ad
SC
372 if ( !hasMask || red != maskRed || green != maskGreen || blue != maskBlue )
373 {
cd0bbd03
SC
374 if ( alpha > 0 )
375 {
376 avgRed += red ;
377 avgGreen += green ;
378 avgBlue += blue ;
379 }
380 avgAlpha += alpha ;
fd9655ad
SC
381 counter++ ;
382 }
383 }
384 }
385 if ( counter == 0 )
386 {
387 *(target_data++) = M_IMGDATA->m_maskRed ;
388 *(target_data++) = M_IMGDATA->m_maskGreen ;
389 *(target_data++) = M_IMGDATA->m_maskBlue ;
390 }
391 else
392 {
cd0bbd03
SC
393 if ( source_alpha )
394 *(target_alpha++) = (unsigned char)(avgAlpha / counter ) ;
646c4aeb
VZ
395 *(target_data++) = (unsigned char)(avgRed / counter);
396 *(target_data++) = (unsigned char)(avgGreen / counter);
397 *(target_data++) = (unsigned char)(avgBlue / counter);
fd9655ad
SC
398 }
399 }
400 }
401
8180d40b 402 // In case this is a cursor, make sure the hotspot is scaled accordingly:
fd9655ad
SC
403 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X) )
404 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X,
405 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X))/xFactor);
406 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y) )
407 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y,
408 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y))/yFactor);
409
410 return image;
411}
412
07aaa1a4 413wxImage wxImage::Scale( int width, int height, int quality ) const
4bc67cc5
RR
414{
415 wxImage image;
c7abc967 416
223d09f6 417 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
c7abc967 418
6721fc38
VZ
419 // can't scale to/from 0 size
420 wxCHECK_MSG( (width > 0) && (height > 0), image,
421 wxT("invalid new image size") );
422
423 long old_height = M_IMGDATA->m_height,
424 old_width = M_IMGDATA->m_width;
425 wxCHECK_MSG( (old_height > 0) && (old_width > 0), image,
426 wxT("invalid old image size") );
c7abc967 427
30f27c00
VZ
428 // If the image's new width and height are the same as the original, no
429 // need to waste time or CPU cycles
430 if ( old_width == width && old_height == height )
07aaa1a4
RR
431 return *this;
432
30f27c00
VZ
433 // Scale the image (...or more appropriately, resample the image) using
434 // either the high-quality or normal method as specified
435 if ( quality == wxIMAGE_QUALITY_HIGH )
fd9655ad 436 {
07aaa1a4 437 // We need to check whether we are downsampling or upsampling the image
30f27c00 438 if ( width < old_width && height < old_height )
07aaa1a4
RR
439 {
440 // Downsample the image using the box averaging method for best results
441 image = ResampleBox(width, height);
442 }
443 else
444 {
30f27c00
VZ
445 // For upsampling or other random/wierd image dimensions we'll use
446 // a bicubic b-spline scaling method
07aaa1a4
RR
447 image = ResampleBicubic(width, height);
448 }
fd9655ad 449 }
07aaa1a4
RR
450 else // Default scaling method == simple pixel replication
451 {
452 if ( old_width % width == 0 && old_width >= width &&
453 old_height % height == 0 && old_height >= height )
454 {
455 return ShrinkBy( old_width / width , old_height / height ) ;
456 }
457 image.Create( width, height, false );
c7abc967 458
07aaa1a4 459 unsigned char *data = image.GetData();
c7abc967 460
07aaa1a4 461 wxCHECK_MSG( data, image, wxT("unable to create image") );
c7abc967 462
07aaa1a4
RR
463 unsigned char *source_data = M_IMGDATA->m_data;
464 unsigned char *target_data = data;
465 unsigned char *source_alpha = 0 ;
466 unsigned char *target_alpha = 0 ;
e9b64c5e 467
1fc1e6af 468 if ( !M_IMGDATA->m_hasMask )
07aaa1a4
RR
469 {
470 source_alpha = M_IMGDATA->m_alpha ;
471 if ( source_alpha )
472 {
473 image.SetAlpha() ;
474 target_alpha = image.GetAlpha() ;
475 }
8d3b6b8a 476 }
c7abc967 477
07aaa1a4
RR
478 long x_delta = (old_width<<16) / width;
479 long y_delta = (old_height<<16) / height;
c7abc967 480
07aaa1a4 481 unsigned char* dest_pixel = target_data;
6721fc38 482
07aaa1a4
RR
483 long y = 0;
484 for ( long j = 0; j < height; j++ )
ff865c13 485 {
07aaa1a4
RR
486 unsigned char* src_line = &source_data[(y>>16)*old_width*3];
487 unsigned char* src_alpha_line = source_alpha ? &source_alpha[(y>>16)*old_width] : 0 ;
e9b64c5e 488
07aaa1a4
RR
489 long x = 0;
490 for ( long i = 0; i < width; i++ )
491 {
492 unsigned char* src_pixel = &src_line[(x>>16)*3];
493 unsigned char* src_alpha_pixel = source_alpha ? &src_alpha_line[(x>>16)] : 0 ;
494 dest_pixel[0] = src_pixel[0];
495 dest_pixel[1] = src_pixel[1];
496 dest_pixel[2] = src_pixel[2];
497 dest_pixel += 3;
498 if ( source_alpha )
499 *(target_alpha++) = *src_alpha_pixel ;
500 x += x_delta;
501 }
ff865c13 502
07aaa1a4
RR
503 y += y_delta;
504 }
eeca3a46 505 }
36aac195 506
1fc1e6af 507 // If the original image has a mask, apply the mask to the new image
e8a8d0dc 508 if (M_IMGDATA->m_hasMask)
1fc1e6af
RR
509 {
510 image.SetMaskColour( M_IMGDATA->m_maskRed,
511 M_IMGDATA->m_maskGreen,
512 M_IMGDATA->m_maskBlue );
513 }
514
8180d40b 515 // In case this is a cursor, make sure the hotspot is scaled accordingly:
fd94e8aa
VS
516 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X) )
517 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X,
518 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X)*width)/old_width);
519 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y) )
520 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y,
521 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y)*height)/old_height);
c7abc967 522
4bc67cc5
RR
523 return image;
524}
4698648f 525
07aaa1a4
RR
526wxImage wxImage::ResampleBox(int width, int height) const
527{
30f27c00
VZ
528 // This function implements a simple pre-blur/box averaging method for
529 // downsampling that gives reasonably smooth results To scale the image
530 // down we will need to gather a grid of pixels of the size of the scale
531 // factor in each direction and then do an averaging of the pixels.
07aaa1a4
RR
532
533 wxImage ret_image(width, height, false);
534
30f27c00
VZ
535 const double scale_factor_x = double(M_IMGDATA->m_width) / width;
536 const double scale_factor_y = double(M_IMGDATA->m_height) / height;
537
538 const int scale_factor_x_2 = (int)(scale_factor_x / 2);
539 const int scale_factor_y_2 = (int)(scale_factor_y / 2);
07aaa1a4 540
c7a284c7
VZ
541 unsigned char* src_data = M_IMGDATA->m_data;
542 unsigned char* src_alpha = M_IMGDATA->m_alpha;
07aaa1a4
RR
543 unsigned char* dst_data = ret_image.GetData();
544 unsigned char* dst_alpha = NULL;
545
30f27c00 546 if ( src_alpha )
07aaa1a4
RR
547 {
548 ret_image.SetAlpha();
549 dst_alpha = ret_image.GetAlpha();
550 }
551
30f27c00 552 int averaged_pixels, src_pixel_index;
07aaa1a4
RR
553 double sum_r, sum_g, sum_b, sum_a;
554
30f27c00 555 for ( int y = 0; y < height; y++ ) // Destination image - Y direction
07aaa1a4
RR
556 {
557 // Source pixel in the Y direction
30f27c00 558 int src_y = (int)(y * scale_factor_y);
07aaa1a4 559
30f27c00 560 for ( int x = 0; x < width; x++ ) // Destination image - X direction
07aaa1a4
RR
561 {
562 // Source pixel in the X direction
30f27c00 563 int src_x = (int)(x * scale_factor_x);
07aaa1a4
RR
564
565 // Box of pixels to average
566 averaged_pixels = 0;
567 sum_r = sum_g = sum_b = sum_a = 0.0;
568
e8a8d0dc 569 for ( int j = int(src_y - scale_factor_y/2.0 + 1);
30f27c00
VZ
570 j <= int(src_y + scale_factor_y_2);
571 j++ )
07aaa1a4
RR
572 {
573 // We don't care to average pixels that don't exist (edges)
c7a284c7 574 if ( j < 0 || j > M_IMGDATA->m_height - 1 )
07aaa1a4
RR
575 continue;
576
e8a8d0dc 577 for ( int i = int(src_x - scale_factor_x/2.0 + 1);
30f27c00
VZ
578 i <= src_x + scale_factor_x_2;
579 i++ )
07aaa1a4
RR
580 {
581 // Don't average edge pixels
c7a284c7 582 if ( i < 0 || i > M_IMGDATA->m_width - 1 )
07aaa1a4
RR
583 continue;
584
585 // Calculate the actual index in our source pixels
c7a284c7 586 src_pixel_index = j * M_IMGDATA->m_width + i;
07aaa1a4
RR
587
588 sum_r += src_data[src_pixel_index * 3 + 0];
589 sum_g += src_data[src_pixel_index * 3 + 1];
590 sum_b += src_data[src_pixel_index * 3 + 2];
30f27c00 591 if ( src_alpha )
07aaa1a4
RR
592 sum_a += src_alpha[src_pixel_index];
593
594 averaged_pixels++;
595 }
596 }
597
598 // Calculate the average from the sum and number of averaged pixels
30f27c00
VZ
599 dst_data[0] = (unsigned char)(sum_r / averaged_pixels);
600 dst_data[1] = (unsigned char)(sum_g / averaged_pixels);
601 dst_data[2] = (unsigned char)(sum_b / averaged_pixels);
07aaa1a4 602 dst_data += 3;
30f27c00
VZ
603 if ( src_alpha )
604 *dst_alpha++ = (unsigned char)(sum_a / averaged_pixels);
07aaa1a4
RR
605 }
606 }
607
608 return ret_image;
609}
610
30f27c00
VZ
611// The following two local functions are for the B-spline weighting of the
612// bicubic sampling algorithm
07aaa1a4
RR
613static inline double spline_cube(double value)
614{
615 return value <= 0.0 ? 0.0 : value * value * value;
616}
617
618static inline double spline_weight(double value)
619{
30f27c00
VZ
620 return (spline_cube(value + 2) -
621 4 * spline_cube(value + 1) +
622 6 * spline_cube(value) -
623 4 * spline_cube(value - 1)) / 6;
07aaa1a4
RR
624}
625
626// This is the bicubic resampling algorithm
627wxImage wxImage::ResampleBicubic(int width, int height) const
628{
30f27c00
VZ
629 // This function implements a Bicubic B-Spline algorithm for resampling.
630 // This method is certainly a little slower than wxImage's default pixel
631 // replication method, however for most reasonably sized images not being
632 // upsampled too much on a fairly average CPU this difference is hardly
633 // noticeable and the results are far more pleasing to look at.
07aaa1a4 634 //
30f27c00
VZ
635 // This particular bicubic algorithm does pixel weighting according to a
636 // B-Spline that basically implements a Gaussian bell-like weighting
637 // kernel. Because of this method the results may appear a bit blurry when
638 // upsampling by large factors. This is basically because a slight
639 // gaussian blur is being performed to get the smooth look of the upsampled
640 // image.
07aaa1a4
RR
641
642 // Edge pixels: 3-4 possible solutions
30f27c00
VZ
643 // - (Wrap/tile) Wrap the image, take the color value from the opposite
644 // side of the image.
645 // - (Mirror) Duplicate edge pixels, so that pixel at coordinate (2, n),
646 // where n is nonpositive, will have the value of (2, 1).
647 // - (Ignore) Simply ignore the edge pixels and apply the kernel only to
648 // pixels which do have all neighbours.
649 // - (Clamp) Choose the nearest pixel along the border. This takes the
650 // border pixels and extends them out to infinity.
07aaa1a4 651 //
30f27c00
VZ
652 // NOTE: below the y_offset and x_offset variables are being set for edge
653 // pixels using the "Mirror" method mentioned above
07aaa1a4
RR
654
655 wxImage ret_image;
656
657 ret_image.Create(width, height, false);
658
659 unsigned char* src_data = M_IMGDATA->m_data;
660 unsigned char* src_alpha = M_IMGDATA->m_alpha;
661 unsigned char* dst_data = ret_image.GetData();
662 unsigned char* dst_alpha = NULL;
663
30f27c00 664 if ( src_alpha )
07aaa1a4
RR
665 {
666 ret_image.SetAlpha();
667 dst_alpha = ret_image.GetAlpha();
668 }
669
30f27c00 670 for ( int dsty = 0; dsty < height; dsty++ )
07aaa1a4
RR
671 {
672 // We need to calculate the source pixel to interpolate from - Y-axis
993f0845 673 double srcpixy = double(dsty * M_IMGDATA->m_height) / height;
30f27c00 674 double dy = srcpixy - (int)srcpixy;
07aaa1a4 675
30f27c00 676 for ( int dstx = 0; dstx < width; dstx++ )
07aaa1a4
RR
677 {
678 // X-axis of pixel to interpolate from
993f0845 679 double srcpixx = double(dstx * M_IMGDATA->m_width) / width;
30f27c00 680 double dx = srcpixx - (int)srcpixx;
07aaa1a4 681
30f27c00
VZ
682 // Sums for each color channel
683 double sum_r = 0, sum_g = 0, sum_b = 0, sum_a = 0;
07aaa1a4
RR
684
685 // Here we actually determine the RGBA values for the destination pixel
30f27c00 686 for ( int k = -1; k <= 2; k++ )
07aaa1a4
RR
687 {
688 // Y offset
30f27c00
VZ
689 int y_offset = srcpixy + k < 0.0
690 ? 0
691 : srcpixy + k >= M_IMGDATA->m_height
692 ? M_IMGDATA->m_height - 1
693 : (int)(srcpixy + k);
07aaa1a4
RR
694
695 // Loop across the X axis
30f27c00 696 for ( int i = -1; i <= 2; i++ )
07aaa1a4
RR
697 {
698 // X offset
30f27c00
VZ
699 int x_offset = srcpixx + i < 0.0
700 ? 0
701 : srcpixx + i >= M_IMGDATA->m_width
702 ? M_IMGDATA->m_width - 1
703 : (int)(srcpixx + i);
704
705 // Calculate the exact position where the source data
706 // should be pulled from based on the x_offset and y_offset
707 int src_pixel_index = y_offset*M_IMGDATA->m_width + x_offset;
708
709 // Calculate the weight for the specified pixel according
710 // to the bicubic b-spline kernel we're using for
711 // interpolation
712 double
713 pixel_weight = spline_weight(i - dx)*spline_weight(k - dy);
714
715 // Create a sum of all velues for each color channel
716 // adjusted for the pixel's calculated weight
717 sum_r += src_data[src_pixel_index * 3 + 0] * pixel_weight;
718 sum_g += src_data[src_pixel_index * 3 + 1] * pixel_weight;
719 sum_b += src_data[src_pixel_index * 3 + 2] * pixel_weight;
720 if ( src_alpha )
721 sum_a += src_alpha[src_pixel_index] * pixel_weight;
07aaa1a4
RR
722 }
723 }
724
30f27c00
VZ
725 // Put the data into the destination image. The summed values are
726 // of double data type and are rounded here for accuracy
727 dst_data[0] = (unsigned char)(sum_r + 0.5);
728 dst_data[1] = (unsigned char)(sum_g + 0.5);
729 dst_data[2] = (unsigned char)(sum_b + 0.5);
07aaa1a4
RR
730 dst_data += 3;
731
30f27c00
VZ
732 if ( src_alpha )
733 *dst_alpha++ = (unsigned char)sum_a;
07aaa1a4
RR
734 }
735 }
736
737 return ret_image;
738}
739
740// Blur in the horizontal direction
24904055 741wxImage wxImage::BlurHorizontal(int blurRadius) const
07aaa1a4
RR
742{
743 wxImage ret_image;
744 ret_image.Create(M_IMGDATA->m_width, M_IMGDATA->m_height, false);
745
746 unsigned char* src_data = M_IMGDATA->m_data;
747 unsigned char* dst_data = ret_image.GetData();
748 unsigned char* src_alpha = M_IMGDATA->m_alpha;
749 unsigned char* dst_alpha = NULL;
750
751 // Check for a mask or alpha
641ed513
VZ
752 if ( src_alpha )
753 {
754 ret_image.SetAlpha();
755 dst_alpha = ret_image.GetAlpha();
756 }
757 else if ( M_IMGDATA->m_hasMask )
30f27c00
VZ
758 {
759 ret_image.SetMaskColour(M_IMGDATA->m_maskRed,
760 M_IMGDATA->m_maskGreen,
761 M_IMGDATA->m_maskBlue);
762 }
07aaa1a4 763
30f27c00
VZ
764 // number of pixels we average over
765 const int blurArea = blurRadius*2 + 1;
07aaa1a4 766
30f27c00
VZ
767 // Horizontal blurring algorithm - average all pixels in the specified blur
768 // radius in the X or horizontal direction
769 for ( int y = 0; y < M_IMGDATA->m_height; y++ )
07aaa1a4 770 {
30f27c00
VZ
771 // Variables used in the blurring algorithm
772 long sum_r = 0,
773 sum_g = 0,
774 sum_b = 0,
775 sum_a = 0;
776
777 long pixel_idx;
778 const unsigned char *src;
779 unsigned char *dst;
780
781 // Calculate the average of all pixels in the blur radius for the first
782 // pixel of the row
783 for ( int kernel_x = -blurRadius; kernel_x <= blurRadius; kernel_x++ )
07aaa1a4 784 {
30f27c00
VZ
785 // To deal with the pixels at the start of a row so it's not
786 // grabbing GOK values from memory at negative indices of the
787 // image's data or grabbing from the previous row
788 if ( kernel_x < 0 )
07aaa1a4
RR
789 pixel_idx = y * M_IMGDATA->m_width;
790 else
791 pixel_idx = kernel_x + y * M_IMGDATA->m_width;
792
30f27c00
VZ
793 src = src_data + pixel_idx*3;
794 sum_r += src[0];
795 sum_g += src[1];
796 sum_b += src[2];
797 if ( src_alpha )
798 sum_a += src_alpha[pixel_idx];
07aaa1a4 799 }
30f27c00
VZ
800
801 dst = dst_data + y * M_IMGDATA->m_width*3;
88835522
WS
802 dst[0] = (unsigned char)(sum_r / blurArea);
803 dst[1] = (unsigned char)(sum_g / blurArea);
804 dst[2] = (unsigned char)(sum_b / blurArea);
30f27c00 805 if ( src_alpha )
88835522 806 dst_alpha[y * M_IMGDATA->m_width] = (unsigned char)(sum_a / blurArea);
30f27c00
VZ
807
808 // Now average the values of the rest of the pixels by just moving the
809 // blur radius box along the row
810 for ( int x = 1; x < M_IMGDATA->m_width; x++ )
07aaa1a4 811 {
30f27c00
VZ
812 // Take care of edge pixels on the left edge by essentially
813 // duplicating the edge pixel
814 if ( x - blurRadius - 1 < 0 )
07aaa1a4
RR
815 pixel_idx = y * M_IMGDATA->m_width;
816 else
817 pixel_idx = (x - blurRadius - 1) + y * M_IMGDATA->m_width;
818
30f27c00
VZ
819 // Subtract the value of the pixel at the left side of the blur
820 // radius box
821 src = src_data + pixel_idx*3;
822 sum_r -= src[0];
823 sum_g -= src[1];
824 sum_b -= src[2];
825 if ( src_alpha )
826 sum_a -= src_alpha[pixel_idx];
07aaa1a4
RR
827
828 // Take care of edge pixels on the right edge
30f27c00 829 if ( x + blurRadius > M_IMGDATA->m_width - 1 )
07aaa1a4
RR
830 pixel_idx = M_IMGDATA->m_width - 1 + y * M_IMGDATA->m_width;
831 else
832 pixel_idx = x + blurRadius + y * M_IMGDATA->m_width;
833
834 // Add the value of the pixel being added to the end of our box
30f27c00
VZ
835 src = src_data + pixel_idx*3;
836 sum_r += src[0];
837 sum_g += src[1];
838 sum_b += src[2];
839 if ( src_alpha )
840 sum_a += src_alpha[pixel_idx];
07aaa1a4
RR
841
842 // Save off the averaged data
e8a8d0dc 843 dst = dst_data + x*3 + y*M_IMGDATA->m_width*3;
88835522
WS
844 dst[0] = (unsigned char)(sum_r / blurArea);
845 dst[1] = (unsigned char)(sum_g / blurArea);
846 dst[2] = (unsigned char)(sum_b / blurArea);
30f27c00 847 if ( src_alpha )
88835522 848 dst_alpha[x + y * M_IMGDATA->m_width] = (unsigned char)(sum_a / blurArea);
07aaa1a4
RR
849 }
850 }
851
852 return ret_image;
853}
854
855// Blur in the vertical direction
24904055 856wxImage wxImage::BlurVertical(int blurRadius) const
07aaa1a4
RR
857{
858 wxImage ret_image;
859 ret_image.Create(M_IMGDATA->m_width, M_IMGDATA->m_height, false);
860
861 unsigned char* src_data = M_IMGDATA->m_data;
862 unsigned char* dst_data = ret_image.GetData();
863 unsigned char* src_alpha = M_IMGDATA->m_alpha;
864 unsigned char* dst_alpha = NULL;
865
866 // Check for a mask or alpha
641ed513
VZ
867 if ( src_alpha )
868 {
869 ret_image.SetAlpha();
870 dst_alpha = ret_image.GetAlpha();
871 }
872 else if ( M_IMGDATA->m_hasMask )
30f27c00
VZ
873 {
874 ret_image.SetMaskColour(M_IMGDATA->m_maskRed,
875 M_IMGDATA->m_maskGreen,
876 M_IMGDATA->m_maskBlue);
877 }
07aaa1a4 878
30f27c00
VZ
879 // number of pixels we average over
880 const int blurArea = blurRadius*2 + 1;
07aaa1a4 881
30f27c00
VZ
882 // Vertical blurring algorithm - same as horizontal but switched the
883 // opposite direction
884 for ( int x = 0; x < M_IMGDATA->m_width; x++ )
07aaa1a4 885 {
30f27c00
VZ
886 // Variables used in the blurring algorithm
887 long sum_r = 0,
888 sum_g = 0,
889 sum_b = 0,
890 sum_a = 0;
891
892 long pixel_idx;
893 const unsigned char *src;
894 unsigned char *dst;
895
896 // Calculate the average of all pixels in our blur radius box for the
897 // first pixel of the column
898 for ( int kernel_y = -blurRadius; kernel_y <= blurRadius; kernel_y++ )
07aaa1a4 899 {
30f27c00
VZ
900 // To deal with the pixels at the start of a column so it's not
901 // grabbing GOK values from memory at negative indices of the
902 // image's data or grabbing from the previous column
903 if ( kernel_y < 0 )
07aaa1a4
RR
904 pixel_idx = x;
905 else
906 pixel_idx = x + kernel_y * M_IMGDATA->m_width;
907
30f27c00
VZ
908 src = src_data + pixel_idx*3;
909 sum_r += src[0];
910 sum_g += src[1];
911 sum_b += src[2];
912 if ( src_alpha )
913 sum_a += src_alpha[pixel_idx];
07aaa1a4 914 }
30f27c00
VZ
915
916 dst = dst_data + x*3;
88835522
WS
917 dst[0] = (unsigned char)(sum_r / blurArea);
918 dst[1] = (unsigned char)(sum_g / blurArea);
919 dst[2] = (unsigned char)(sum_b / blurArea);
30f27c00 920 if ( src_alpha )
88835522 921 dst_alpha[x] = (unsigned char)(sum_a / blurArea);
30f27c00
VZ
922
923 // Now average the values of the rest of the pixels by just moving the
924 // box along the column from top to bottom
925 for ( int y = 1; y < M_IMGDATA->m_height; y++ )
07aaa1a4 926 {
30f27c00
VZ
927 // Take care of pixels that would be beyond the top edge by
928 // duplicating the top edge pixel for the column
929 if ( y - blurRadius - 1 < 0 )
07aaa1a4
RR
930 pixel_idx = x;
931 else
932 pixel_idx = x + (y - blurRadius - 1) * M_IMGDATA->m_width;
933
934 // Subtract the value of the pixel at the top of our blur radius box
30f27c00
VZ
935 src = src_data + pixel_idx*3;
936 sum_r -= src[0];
937 sum_g -= src[1];
938 sum_b -= src[2];
939 if ( src_alpha )
940 sum_a -= src_alpha[pixel_idx];
941
942 // Take care of the pixels that would be beyond the bottom edge of
943 // the image similar to the top edge
944 if ( y + blurRadius > M_IMGDATA->m_height - 1 )
07aaa1a4
RR
945 pixel_idx = x + (M_IMGDATA->m_height - 1) * M_IMGDATA->m_width;
946 else
947 pixel_idx = x + (blurRadius + y) * M_IMGDATA->m_width;
948
949 // Add the value of the pixel being added to the end of our box
30f27c00
VZ
950 src = src_data + pixel_idx*3;
951 sum_r += src[0];
952 sum_g += src[1];
953 sum_b += src[2];
954 if ( src_alpha )
955 sum_a += src_alpha[pixel_idx];
07aaa1a4
RR
956
957 // Save off the averaged data
30f27c00 958 dst = dst_data + (x + y * M_IMGDATA->m_width) * 3;
88835522
WS
959 dst[0] = (unsigned char)(sum_r / blurArea);
960 dst[1] = (unsigned char)(sum_g / blurArea);
961 dst[2] = (unsigned char)(sum_b / blurArea);
30f27c00 962 if ( src_alpha )
88835522 963 dst_alpha[x + y * M_IMGDATA->m_width] = (unsigned char)(sum_a / blurArea);
07aaa1a4
RR
964 }
965 }
966
967 return ret_image;
968}
969
970// The new blur function
24904055 971wxImage wxImage::Blur(int blurRadius) const
07aaa1a4
RR
972{
973 wxImage ret_image;
974 ret_image.Create(M_IMGDATA->m_width, M_IMGDATA->m_height, false);
975
976 // Blur the image in each direction
977 ret_image = BlurHorizontal(blurRadius);
978 ret_image = ret_image.BlurVertical(blurRadius);
979
980 return ret_image;
981}
982
f6bcfd97
BP
983wxImage wxImage::Rotate90( bool clockwise ) const
984{
985 wxImage image;
986
987 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
988
ff865c13 989 image.Create( M_IMGDATA->m_height, M_IMGDATA->m_width, false );
f6bcfd97 990
487659e0 991 unsigned char *data = image.GetData();
f6bcfd97
BP
992
993 wxCHECK_MSG( data, image, wxT("unable to create image") );
994
921c65ed
JS
995 unsigned char *source_data = M_IMGDATA->m_data;
996 unsigned char *target_data;
997 unsigned char *alpha_data = 0 ;
998 unsigned char *source_alpha = 0 ;
999 unsigned char *target_alpha = 0 ;
1000
f6bcfd97 1001 if (M_IMGDATA->m_hasMask)
921c65ed 1002 {
f6bcfd97 1003 image.SetMaskColour( M_IMGDATA->m_maskRed, M_IMGDATA->m_maskGreen, M_IMGDATA->m_maskBlue );
921c65ed
JS
1004 }
1005 else
1006 {
1007 source_alpha = M_IMGDATA->m_alpha ;
1008 if ( source_alpha )
1009 {
1010 image.SetAlpha() ;
1011 alpha_data = image.GetAlpha() ;
1012 }
1013 }
f6bcfd97
BP
1014
1015 long height = M_IMGDATA->m_height;
1016 long width = M_IMGDATA->m_width;
1017
f6bcfd97
BP
1018 for (long j = 0; j < height; j++)
1019 {
1020 for (long i = 0; i < width; i++)
1021 {
1022 if (clockwise)
921c65ed 1023 {
f6bcfd97 1024 target_data = data + (((i+1)*height) - j - 1)*3;
921c65ed
JS
1025 if(source_alpha)
1026 target_alpha = alpha_data + (((i+1)*height) - j - 1);
1027 }
f6bcfd97 1028 else
921c65ed 1029 {
f6bcfd97 1030 target_data = data + ((height*(width-1)) + j - (i*height))*3;
921c65ed
JS
1031 if(source_alpha)
1032 target_alpha = alpha_data + ((height*(width-1)) + j - (i*height));
1033 }
f6bcfd97
BP
1034 memcpy( target_data, source_data, 3 );
1035 source_data += 3;
921c65ed
JS
1036
1037 if(source_alpha)
1038 {
1039 memcpy( target_alpha, source_alpha, 1 );
1040 source_alpha += 1;
1041 }
f6bcfd97
BP
1042 }
1043 }
1044
1045 return image;
1046}
1047
1048wxImage wxImage::Mirror( bool horizontally ) const
1049{
1050 wxImage image;
1051
1052 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
1053
ff865c13 1054 image.Create( M_IMGDATA->m_width, M_IMGDATA->m_height, false );
f6bcfd97 1055
487659e0 1056 unsigned char *data = image.GetData();
051924b8 1057 unsigned char *alpha = NULL;
f6bcfd97
BP
1058
1059 wxCHECK_MSG( data, image, wxT("unable to create image") );
1060
051924b8
VZ
1061 if (M_IMGDATA->m_alpha != NULL) {
1062 image.SetAlpha();
1063 alpha = image.GetAlpha();
1064 wxCHECK_MSG( alpha, image, wxT("unable to create alpha channel") );
1065 }
1066
f6bcfd97
BP
1067 if (M_IMGDATA->m_hasMask)
1068 image.SetMaskColour( M_IMGDATA->m_maskRed, M_IMGDATA->m_maskGreen, M_IMGDATA->m_maskBlue );
1069
1070 long height = M_IMGDATA->m_height;
1071 long width = M_IMGDATA->m_width;
1072
487659e0
VZ
1073 unsigned char *source_data = M_IMGDATA->m_data;
1074 unsigned char *target_data;
f6bcfd97
BP
1075
1076 if (horizontally)
1077 {
1078 for (long j = 0; j < height; j++)
1079 {
1080 data += width*3;
1081 target_data = data-3;
1082 for (long i = 0; i < width; i++)
1083 {
1084 memcpy( target_data, source_data, 3 );
1085 source_data += 3;
1086 target_data -= 3;
1087 }
1088 }
051924b8
VZ
1089
1090 if (alpha != NULL)
1091 {
1092 // src_alpha starts at the first pixel and increases by 1 after each step
1093 // (a step here is the copy of the alpha value of one pixel)
1094 const unsigned char *src_alpha = M_IMGDATA->m_alpha;
1095 // dest_alpha starts just beyond the first line, decreases before each step,
1096 // and after each line is finished, increases by 2 widths (skipping the line
1097 // just copied and the line that will be copied next)
1098 unsigned char *dest_alpha = alpha + width;
1099
1100 for (long jj = 0; jj < height; ++jj)
1101 {
1102 for (long i = 0; i < width; ++i) {
1103 *(--dest_alpha) = *(src_alpha++); // copy one pixel
1104 }
1105 dest_alpha += 2 * width; // advance beyond the end of the next line
1106 }
1107 }
f6bcfd97
BP
1108 }
1109 else
1110 {
1111 for (long i = 0; i < height; i++)
1112 {
1113 target_data = data + 3*width*(height-1-i);
3ca6a5f0 1114 memcpy( target_data, source_data, (size_t)3*width );
f6bcfd97
BP
1115 source_data += 3*width;
1116 }
051924b8
VZ
1117
1118 if (alpha != NULL)
1119 {
1120 // src_alpha starts at the first pixel and increases by 1 width after each step
1121 // (a step here is the copy of the alpha channel of an entire line)
1122 const unsigned char *src_alpha = M_IMGDATA->m_alpha;
1123 // dest_alpha starts just beyond the last line (beyond the whole image)
1124 // and decreases by 1 width before each step
1125 unsigned char *dest_alpha = alpha + width * height;
1126
1127 for (long jj = 0; jj < height; ++jj)
1128 {
1129 dest_alpha -= width;
1130 memcpy( dest_alpha, src_alpha, (size_t)width );
1131 src_alpha += width;
1132 }
1133 }
f6bcfd97
BP
1134 }
1135
1136 return image;
1137}
1138
7b2471a0
SB
1139wxImage wxImage::GetSubImage( const wxRect &rect ) const
1140{
1141 wxImage image;
1142
223d09f6 1143 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
7b2471a0 1144
051924b8
VZ
1145 wxCHECK_MSG( (rect.GetLeft()>=0) && (rect.GetTop()>=0) &&
1146 (rect.GetRight()<=GetWidth()) && (rect.GetBottom()<=GetHeight()),
58c837a4 1147 image, wxT("invalid subimage size") );
7b2471a0 1148
051924b8
VZ
1149 const int subwidth = rect.GetWidth();
1150 const int subheight = rect.GetHeight();
7b2471a0 1151
ff865c13 1152 image.Create( subwidth, subheight, false );
7b2471a0 1153
051924b8
VZ
1154 const unsigned char *src_data = GetData();
1155 const unsigned char *src_alpha = M_IMGDATA->m_alpha;
1156 unsigned char *subdata = image.GetData();
1157 unsigned char *subalpha = NULL;
7b2471a0 1158
223d09f6 1159 wxCHECK_MSG( subdata, image, wxT("unable to create image") );
7b2471a0 1160
051924b8
VZ
1161 if (src_alpha != NULL) {
1162 image.SetAlpha();
1163 subalpha = image.GetAlpha();
1164 wxCHECK_MSG( subalpha, image, wxT("unable to create alpha channel"));
1165 }
1166
7b2471a0
SB
1167 if (M_IMGDATA->m_hasMask)
1168 image.SetMaskColour( M_IMGDATA->m_maskRed, M_IMGDATA->m_maskGreen, M_IMGDATA->m_maskBlue );
1169
051924b8
VZ
1170 const int width = GetWidth();
1171 const int pixsoff = rect.GetLeft() + width * rect.GetTop();
995612e2 1172
051924b8
VZ
1173 src_data += 3 * pixsoff;
1174 src_alpha += pixsoff; // won't be used if was NULL, so this is ok
7b2471a0
SB
1175
1176 for (long j = 0; j < subheight; ++j)
1177 {
051924b8
VZ
1178 memcpy( subdata, src_data, 3 * subwidth );
1179 subdata += 3 * subwidth;
1180 src_data += 3 * width;
1181 if (subalpha != NULL) {
1182 memcpy( subalpha, src_alpha, subwidth );
1183 subalpha += subwidth;
1184 src_alpha += width;
1185 }
7b2471a0
SB
1186 }
1187
1188 return image;
1189}
1190
e9b64c5e 1191wxImage wxImage::Size( const wxSize& size, const wxPoint& pos,
b737ad10
RR
1192 int r_, int g_, int b_ ) const
1193{
1194 wxImage image;
1195
1196 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
1197 wxCHECK_MSG( (size.GetWidth() > 0) && (size.GetHeight() > 0), image, wxT("invalid size") );
1198
1199 int width = GetWidth(), height = GetHeight();
1200 image.Create(size.GetWidth(), size.GetHeight(), false);
1201
1202 unsigned char r = (unsigned char)r_;
1203 unsigned char g = (unsigned char)g_;
1204 unsigned char b = (unsigned char)b_;
1205 if ((r_ == -1) && (g_ == -1) && (b_ == -1))
1206 {
1207 GetOrFindMaskColour( &r, &g, &b );
1208 image.SetMaskColour(r, g, b);
1209 }
1210
1211 image.SetRGB(wxRect(), r, g, b);
1212
1213 wxRect subRect(pos.x, pos.y, width, height);
1214 wxRect finalRect(0, 0, size.GetWidth(), size.GetHeight());
781945ea
RR
1215 if (pos.x < 0)
1216 finalRect.width -= pos.x;
1217 if (pos.y < 0)
1218 finalRect.height -= pos.y;
b737ad10
RR
1219
1220 subRect.Intersect(finalRect);
1221
1222 if (!subRect.IsEmpty())
1223 {
1224 if ((subRect.GetWidth() == width) && (subRect.GetHeight() == height))
1225 image.Paste(*this, pos.x, pos.y);
1226 else
1227 image.Paste(GetSubImage(subRect), pos.x, pos.y);
1228 }
1229
1230 return image;
1231}
1232
f6bcfd97
BP
1233void wxImage::Paste( const wxImage &image, int x, int y )
1234{
1235 wxCHECK_RET( Ok(), wxT("invalid image") );
1236 wxCHECK_RET( image.Ok(), wxT("invalid image") );
1237
a0f81e9f
PC
1238 AllocExclusive();
1239
f6bcfd97
BP
1240 int xx = 0;
1241 int yy = 0;
1242 int width = image.GetWidth();
1243 int height = image.GetHeight();
1244
1245 if (x < 0)
1246 {
1247 xx = -x;
1248 width += x;
1249 }
1250 if (y < 0)
1251 {
1252 yy = -y;
1253 height += y;
1254 }
1255
1256 if ((x+xx)+width > M_IMGDATA->m_width)
1257 width = M_IMGDATA->m_width - (x+xx);
1258 if ((y+yy)+height > M_IMGDATA->m_height)
1259 height = M_IMGDATA->m_height - (y+yy);
1260
1261 if (width < 1) return;
1262 if (height < 1) return;
1263
1264 if ((!HasMask() && !image.HasMask()) ||
b737ad10 1265 (HasMask() && !image.HasMask()) ||
f6bcfd97
BP
1266 ((HasMask() && image.HasMask() &&
1267 (GetMaskRed()==image.GetMaskRed()) &&
1268 (GetMaskGreen()==image.GetMaskGreen()) &&
1269 (GetMaskBlue()==image.GetMaskBlue()))))
1270 {
1271 width *= 3;
1272 unsigned char* source_data = image.GetData() + xx*3 + yy*3*image.GetWidth();
1273 int source_step = image.GetWidth()*3;
1274
1275 unsigned char* target_data = GetData() + (x+xx)*3 + (y+yy)*3*M_IMGDATA->m_width;
1276 int target_step = M_IMGDATA->m_width*3;
1277 for (int j = 0; j < height; j++)
1278 {
1279 memcpy( target_data, source_data, width );
1280 source_data += source_step;
1281 target_data += target_step;
1282 }
aa21b509 1283 return;
f6bcfd97 1284 }
33ac7e6f 1285
aa21b509 1286 if (!HasMask() && image.HasMask())
f6bcfd97 1287 {
aa21b509
RR
1288 unsigned char r = image.GetMaskRed();
1289 unsigned char g = image.GetMaskGreen();
1290 unsigned char b = image.GetMaskBlue();
33ac7e6f 1291
aa21b509
RR
1292 width *= 3;
1293 unsigned char* source_data = image.GetData() + xx*3 + yy*3*image.GetWidth();
1294 int source_step = image.GetWidth()*3;
1295
1296 unsigned char* target_data = GetData() + (x+xx)*3 + (y+yy)*3*M_IMGDATA->m_width;
1297 int target_step = M_IMGDATA->m_width*3;
33ac7e6f 1298
aa21b509
RR
1299 for (int j = 0; j < height; j++)
1300 {
1301 for (int i = 0; i < width; i+=3)
1302 {
dcc36b34
RR
1303 if ((source_data[i] != r) ||
1304 (source_data[i+1] != g) ||
aa21b509
RR
1305 (source_data[i+2] != b))
1306 {
1307 memcpy( target_data+i, source_data+i, 3 );
1308 }
33ac7e6f 1309 }
aa21b509
RR
1310 source_data += source_step;
1311 target_data += target_step;
1312 }
f6bcfd97
BP
1313 }
1314}
1315
be25e480
RR
1316void wxImage::Replace( unsigned char r1, unsigned char g1, unsigned char b1,
1317 unsigned char r2, unsigned char g2, unsigned char b2 )
1318{
1319 wxCHECK_RET( Ok(), wxT("invalid image") );
1320
a0f81e9f
PC
1321 AllocExclusive();
1322
487659e0 1323 unsigned char *data = GetData();
06b466c7 1324
be25e480
RR
1325 const int w = GetWidth();
1326 const int h = GetHeight();
1327
1328 for (int j = 0; j < h; j++)
1329 for (int i = 0; i < w; i++)
069d0f27
VZ
1330 {
1331 if ((data[0] == r1) && (data[1] == g1) && (data[2] == b1))
1332 {
1333 data[0] = r2;
1334 data[1] = g2;
1335 data[2] = b2;
1336 }
1337 data += 3;
1338 }
be25e480
RR
1339}
1340
ec85956a
JS
1341wxImage wxImage::ConvertToGreyscale( double lr, double lg, double lb ) const
1342{
1343 wxImage image;
1344
1345 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
1346
1347 image.Create(M_IMGDATA->m_width, M_IMGDATA->m_height, false);
1348
1349 unsigned char *dest = image.GetData();
1350
1351 wxCHECK_MSG( dest, image, wxT("unable to create image") );
1352
1353 unsigned char *src = M_IMGDATA->m_data;
1354 bool hasMask = M_IMGDATA->m_hasMask;
1355 unsigned char maskRed = M_IMGDATA->m_maskRed;
1356 unsigned char maskGreen = M_IMGDATA->m_maskGreen;
1357 unsigned char maskBlue = M_IMGDATA->m_maskBlue;
1358
1359 if ( hasMask )
1360 image.SetMaskColour(maskRed, maskGreen, maskBlue);
1361
1362 const long size = M_IMGDATA->m_width * M_IMGDATA->m_height;
1363 for ( long i = 0; i < size; i++, src += 3, dest += 3 )
1364 {
1365 // don't modify the mask
1366 if ( hasMask && src[0] == maskRed && src[1] == maskGreen && src[2] == maskBlue )
1367 {
1368 memcpy(dest, src, 3);
1369 }
1370 else
1371 {
1372 // calculate the luma
1373 double luma = (src[0] * lr + src[1] * lg + src[2] * lb) + 0.5;
1374 dest[0] = dest[1] = dest[2] = wx_static_cast(unsigned char, luma);
1375 }
1376 }
1377
7ce30d0b
WS
1378 // copy the alpha channel, if any
1379 if (HasAlpha())
1380 {
1381 const size_t alphaSize = GetWidth() * GetHeight();
1382 unsigned char *alpha = (unsigned char*)malloc(alphaSize);
1383 memcpy(alpha, GetAlpha(), alphaSize);
1384 image.InitAlpha();
1385 image.SetAlpha(alpha);
1386 }
1387
ec85956a
JS
1388 return image;
1389}
1390
f515c25a 1391wxImage wxImage::ConvertToMono( unsigned char r, unsigned char g, unsigned char b ) const
fec19ea9
VS
1392{
1393 wxImage image;
1394
1395 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
1396
ff865c13 1397 image.Create( M_IMGDATA->m_width, M_IMGDATA->m_height, false );
fec19ea9 1398
487659e0 1399 unsigned char *data = image.GetData();
fec19ea9
VS
1400
1401 wxCHECK_MSG( data, image, wxT("unable to create image") );
1402
1403 if (M_IMGDATA->m_hasMask)
1404 {
1405 if (M_IMGDATA->m_maskRed == r && M_IMGDATA->m_maskGreen == g &&
1406 M_IMGDATA->m_maskBlue == b)
1407 image.SetMaskColour( 255, 255, 255 );
1408 else
1409 image.SetMaskColour( 0, 0, 0 );
1410 }
1411
1412 long size = M_IMGDATA->m_height * M_IMGDATA->m_width;
1413
487659e0
VZ
1414 unsigned char *srcd = M_IMGDATA->m_data;
1415 unsigned char *tard = image.GetData();
fec19ea9
VS
1416
1417 for ( long i = 0; i < size; i++, srcd += 3, tard += 3 )
1418 {
1419 if (srcd[0] == r && srcd[1] == g && srcd[2] == b)
1420 tard[0] = tard[1] = tard[2] = 255;
1421 else
1422 tard[0] = tard[1] = tard[2] = 0;
1423 }
1424
1425 return image;
1426}
1427
21dc4be5
VZ
1428int wxImage::GetWidth() const
1429{
1430 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1431
1432 return M_IMGDATA->m_width;
1433}
1434
1435int wxImage::GetHeight() const
1436{
1437 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1438
1439 return M_IMGDATA->m_height;
1440}
1441
5644ac46 1442long wxImage::XYToIndex(int x, int y) const
ef539066 1443{
5644ac46
VZ
1444 if ( Ok() &&
1445 x >= 0 && y >= 0 &&
1446 x < M_IMGDATA->m_width && y < M_IMGDATA->m_height )
1447 {
1448 return y*M_IMGDATA->m_width + x;
1449 }
c7abc967 1450
5644ac46
VZ
1451 return -1;
1452}
c7abc967 1453
5644ac46
VZ
1454void wxImage::SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b )
1455{
1456 long pos = XYToIndex(x, y);
1457 wxCHECK_RET( pos != -1, wxT("invalid image coordinates") );
c7abc967 1458
a0f81e9f
PC
1459 AllocExclusive();
1460
5644ac46 1461 pos *= 3;
c7abc967 1462
ef539066
RR
1463 M_IMGDATA->m_data[ pos ] = r;
1464 M_IMGDATA->m_data[ pos+1 ] = g;
1465 M_IMGDATA->m_data[ pos+2 ] = b;
1466}
1467
b737ad10
RR
1468void wxImage::SetRGB( const wxRect& rect_, unsigned char r, unsigned char g, unsigned char b )
1469{
1470 wxCHECK_RET( Ok(), wxT("invalid image") );
1471
a0f81e9f
PC
1472 AllocExclusive();
1473
b737ad10
RR
1474 wxRect rect(rect_);
1475 wxRect imageRect(0, 0, GetWidth(), GetHeight());
1476 if ( rect == wxRect() )
1477 {
1478 rect = imageRect;
1479 }
1480 else
1481 {
22a35096
VS
1482 wxCHECK_RET( imageRect.Contains(rect.GetTopLeft()) &&
1483 imageRect.Contains(rect.GetBottomRight()),
b737ad10
RR
1484 wxT("invalid bounding rectangle") );
1485 }
1486
1487 int x1 = rect.GetLeft(),
1488 y1 = rect.GetTop(),
1489 x2 = rect.GetRight() + 1,
1490 y2 = rect.GetBottom() + 1;
1491
e9b64c5e 1492 unsigned char *data wxDUMMY_INITIALIZE(NULL);
b737ad10
RR
1493 int x, y, width = GetWidth();
1494 for (y = y1; y < y2; y++)
1495 {
1496 data = M_IMGDATA->m_data + (y*width + x1)*3;
1497 for (x = x1; x < x2; x++)
1498 {
1499 *data++ = r;
1500 *data++ = g;
1501 *data++ = b;
1502 }
1503 }
1504}
1505
f6bcfd97 1506unsigned char wxImage::GetRed( int x, int y ) const
ef539066 1507{
5644ac46
VZ
1508 long pos = XYToIndex(x, y);
1509 wxCHECK_MSG( pos != -1, 0, wxT("invalid image coordinates") );
c7abc967 1510
5644ac46 1511 pos *= 3;
c7abc967 1512
ef539066
RR
1513 return M_IMGDATA->m_data[pos];
1514}
1515
f6bcfd97 1516unsigned char wxImage::GetGreen( int x, int y ) const
ef539066 1517{
5644ac46
VZ
1518 long pos = XYToIndex(x, y);
1519 wxCHECK_MSG( pos != -1, 0, wxT("invalid image coordinates") );
c7abc967 1520
5644ac46 1521 pos *= 3;
c7abc967 1522
ef539066
RR
1523 return M_IMGDATA->m_data[pos+1];
1524}
1525
f6bcfd97 1526unsigned char wxImage::GetBlue( int x, int y ) const
ef539066 1527{
5644ac46
VZ
1528 long pos = XYToIndex(x, y);
1529 wxCHECK_MSG( pos != -1, 0, wxT("invalid image coordinates") );
c7abc967 1530
5644ac46 1531 pos *= 3;
c7abc967 1532
ef539066
RR
1533 return M_IMGDATA->m_data[pos+2];
1534}
4698648f 1535
b7cacb43 1536bool wxImage::IsOk() const
4698648f 1537{
de8c48cf
VZ
1538 // image of 0 width or height can't be considered ok - at least because it
1539 // causes crashes in ConvertToBitmap() if we don't catch it in time
1540 wxImageRefData *data = M_IMGDATA;
1541 return data && data->m_ok && data->m_width && data->m_height;
01111366
RR
1542}
1543
487659e0 1544unsigned char *wxImage::GetData() const
01111366 1545{
487659e0 1546 wxCHECK_MSG( Ok(), (unsigned char *)NULL, wxT("invalid image") );
c7abc967 1547
fd0eed64 1548 return M_IMGDATA->m_data;
01111366
RR
1549}
1550
4013de12 1551void wxImage::SetData( unsigned char *data, bool static_data )
01111366 1552{
223d09f6 1553 wxCHECK_RET( Ok(), wxT("invalid image") );
58a8ab88 1554
ed58dbea
RR
1555 wxImageRefData *newRefData = new wxImageRefData();
1556
1557 newRefData->m_width = M_IMGDATA->m_width;
1558 newRefData->m_height = M_IMGDATA->m_height;
1559 newRefData->m_data = data;
70cd62e9 1560 newRefData->m_ok = true;
ed58dbea
RR
1561 newRefData->m_maskRed = M_IMGDATA->m_maskRed;
1562 newRefData->m_maskGreen = M_IMGDATA->m_maskGreen;
1563 newRefData->m_maskBlue = M_IMGDATA->m_maskBlue;
1564 newRefData->m_hasMask = M_IMGDATA->m_hasMask;
4013de12 1565 newRefData->m_static = static_data;
995612e2 1566
ed58dbea 1567 UnRef();
995612e2 1568
ed58dbea 1569 m_refData = newRefData;
01111366
RR
1570}
1571
4013de12 1572void wxImage::SetData( unsigned char *data, int new_width, int new_height, bool static_data )
f6bcfd97
BP
1573{
1574 wxImageRefData *newRefData = new wxImageRefData();
1575
1576 if (m_refData)
1577 {
1578 newRefData->m_width = new_width;
1579 newRefData->m_height = new_height;
1580 newRefData->m_data = data;
70cd62e9 1581 newRefData->m_ok = true;
f6bcfd97
BP
1582 newRefData->m_maskRed = M_IMGDATA->m_maskRed;
1583 newRefData->m_maskGreen = M_IMGDATA->m_maskGreen;
1584 newRefData->m_maskBlue = M_IMGDATA->m_maskBlue;
1585 newRefData->m_hasMask = M_IMGDATA->m_hasMask;
1586 }
1587 else
1588 {
1589 newRefData->m_width = new_width;
1590 newRefData->m_height = new_height;
1591 newRefData->m_data = data;
70cd62e9 1592 newRefData->m_ok = true;
f6bcfd97 1593 }
4013de12 1594 newRefData->m_static = static_data;
f6bcfd97
BP
1595
1596 UnRef();
1597
1598 m_refData = newRefData;
1599}
1600
487659e0
VZ
1601// ----------------------------------------------------------------------------
1602// alpha channel support
1603// ----------------------------------------------------------------------------
1604
1605void wxImage::SetAlpha(int x, int y, unsigned char alpha)
1606{
5644ac46 1607 wxCHECK_RET( HasAlpha(), wxT("no alpha channel") );
487659e0 1608
5644ac46
VZ
1609 long pos = XYToIndex(x, y);
1610 wxCHECK_RET( pos != -1, wxT("invalid image coordinates") );
487659e0 1611
a0f81e9f
PC
1612 AllocExclusive();
1613
5644ac46 1614 M_IMGDATA->m_alpha[pos] = alpha;
487659e0
VZ
1615}
1616
d30ee785 1617unsigned char wxImage::GetAlpha(int x, int y) const
487659e0 1618{
5644ac46 1619 wxCHECK_MSG( HasAlpha(), 0, wxT("no alpha channel") );
487659e0 1620
5644ac46
VZ
1621 long pos = XYToIndex(x, y);
1622 wxCHECK_MSG( pos != -1, 0, wxT("invalid image coordinates") );
487659e0 1623
5644ac46 1624 return M_IMGDATA->m_alpha[pos];
487659e0
VZ
1625}
1626
5644ac46
VZ
1627bool
1628wxImage::ConvertColourToAlpha(unsigned char r, unsigned char g, unsigned char b)
6408deed 1629{
5644ac46 1630 SetAlpha(NULL);
b713f891 1631
5644ac46
VZ
1632 const int w = M_IMGDATA->m_width;
1633 const int h = M_IMGDATA->m_height;
b713f891 1634
6408deed
RR
1635 unsigned char *alpha = GetAlpha();
1636 unsigned char *data = GetData();
b713f891 1637
5644ac46
VZ
1638 for ( int y = 0; y < h; y++ )
1639 {
1640 for ( int x = 0; x < w; x++ )
1641 {
1642 *alpha++ = *data;
1643 *data++ = r;
1644 *data++ = g;
1645 *data++ = b;
1646 }
1647 }
6408deed
RR
1648
1649 return true;
1650}
1651
4013de12 1652void wxImage::SetAlpha( unsigned char *alpha, bool static_data )
487659e0
VZ
1653{
1654 wxCHECK_RET( Ok(), wxT("invalid image") );
1655
a0f81e9f
PC
1656 AllocExclusive();
1657
487659e0
VZ
1658 if ( !alpha )
1659 {
edf8e8e0 1660 alpha = (unsigned char *)malloc(M_IMGDATA->m_width*M_IMGDATA->m_height);
487659e0
VZ
1661 }
1662
eb86e775
VZ
1663 if( !M_IMGDATA->m_staticAlpha )
1664 free(M_IMGDATA->m_alpha);
1665
487659e0 1666 M_IMGDATA->m_alpha = alpha;
d2502f14 1667 M_IMGDATA->m_staticAlpha = static_data;
487659e0
VZ
1668}
1669
1670unsigned char *wxImage::GetAlpha() const
1671{
1672 wxCHECK_MSG( Ok(), (unsigned char *)NULL, wxT("invalid image") );
1673
1674 return M_IMGDATA->m_alpha;
1675}
1676
828f0936
VZ
1677void wxImage::InitAlpha()
1678{
1679 wxCHECK_RET( !HasAlpha(), wxT("image already has an alpha channel") );
1680
1681 // initialize memory for alpha channel
1682 SetAlpha();
1683
1684 unsigned char *alpha = M_IMGDATA->m_alpha;
1685 const size_t lenAlpha = M_IMGDATA->m_width * M_IMGDATA->m_height;
1686
828f0936
VZ
1687 if ( HasMask() )
1688 {
1689 // use the mask to initialize the alpha channel.
1690 const unsigned char * const alphaEnd = alpha + lenAlpha;
1691
1692 const unsigned char mr = M_IMGDATA->m_maskRed;
1693 const unsigned char mg = M_IMGDATA->m_maskGreen;
1694 const unsigned char mb = M_IMGDATA->m_maskBlue;
1695 for ( unsigned char *src = M_IMGDATA->m_data;
1696 alpha < alphaEnd;
1697 src += 3, alpha++ )
1698 {
1699 *alpha = (src[0] == mr && src[1] == mg && src[2] == mb)
21dc4be5
VZ
1700 ? wxIMAGE_ALPHA_TRANSPARENT
1701 : wxIMAGE_ALPHA_OPAQUE;
828f0936
VZ
1702 }
1703
1704 M_IMGDATA->m_hasMask = false;
1705 }
1706 else // no mask
1707 {
1708 // make the image fully opaque
21dc4be5 1709 memset(alpha, wxIMAGE_ALPHA_OPAQUE, lenAlpha);
828f0936
VZ
1710 }
1711}
1712
487659e0
VZ
1713// ----------------------------------------------------------------------------
1714// mask support
1715// ----------------------------------------------------------------------------
1716
01111366
RR
1717void wxImage::SetMaskColour( unsigned char r, unsigned char g, unsigned char b )
1718{
223d09f6 1719 wxCHECK_RET( Ok(), wxT("invalid image") );
c7abc967 1720
a0f81e9f
PC
1721 AllocExclusive();
1722
fd0eed64
RR
1723 M_IMGDATA->m_maskRed = r;
1724 M_IMGDATA->m_maskGreen = g;
1725 M_IMGDATA->m_maskBlue = b;
70cd62e9 1726 M_IMGDATA->m_hasMask = true;
01111366
RR
1727}
1728
b737ad10
RR
1729bool wxImage::GetOrFindMaskColour( unsigned char *r, unsigned char *g, unsigned char *b ) const
1730{
1731 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
1732
1733 if (M_IMGDATA->m_hasMask)
1734 {
1735 if (r) *r = M_IMGDATA->m_maskRed;
1736 if (g) *g = M_IMGDATA->m_maskGreen;
1737 if (b) *b = M_IMGDATA->m_maskBlue;
1738 return true;
1739 }
1740 else
1741 {
1742 FindFirstUnusedColour(r, g, b);
1743 return false;
1744 }
1745}
1746
01111366
RR
1747unsigned char wxImage::GetMaskRed() const
1748{
223d09f6 1749 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 1750
fd0eed64 1751 return M_IMGDATA->m_maskRed;
01111366
RR
1752}
1753
1754unsigned char wxImage::GetMaskGreen() const
1755{
223d09f6 1756 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 1757
fd0eed64 1758 return M_IMGDATA->m_maskGreen;
01111366
RR
1759}
1760
1761unsigned char wxImage::GetMaskBlue() const
1762{
223d09f6 1763 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 1764
fd0eed64 1765 return M_IMGDATA->m_maskBlue;
01111366 1766}
4698648f 1767
01111366
RR
1768void wxImage::SetMask( bool mask )
1769{
223d09f6 1770 wxCHECK_RET( Ok(), wxT("invalid image") );
c7abc967 1771
a0f81e9f
PC
1772 AllocExclusive();
1773
fd0eed64 1774 M_IMGDATA->m_hasMask = mask;
01111366
RR
1775}
1776
1777bool wxImage::HasMask() const
1778{
70cd62e9 1779 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
c7abc967 1780
fd0eed64 1781 return M_IMGDATA->m_hasMask;
01111366
RR
1782}
1783
21dc4be5 1784bool wxImage::IsTransparent(int x, int y, unsigned char threshold) const
4698648f 1785{
21dc4be5
VZ
1786 long pos = XYToIndex(x, y);
1787 wxCHECK_MSG( pos != -1, false, wxT("invalid image coordinates") );
c7abc967 1788
21dc4be5
VZ
1789 // check mask
1790 if ( M_IMGDATA->m_hasMask )
1791 {
1792 const unsigned char *p = M_IMGDATA->m_data + 3*pos;
1793 if ( p[0] == M_IMGDATA->m_maskRed &&
1794 p[1] == M_IMGDATA->m_maskGreen &&
1795 p[2] == M_IMGDATA->m_maskBlue )
1796 {
1797 return true;
1798 }
1799 }
01111366 1800
21dc4be5
VZ
1801 // then check alpha
1802 if ( M_IMGDATA->m_alpha )
1803 {
1804 if ( M_IMGDATA->m_alpha[pos] < threshold )
1805 {
1806 // transparent enough
1807 return true;
1808 }
1809 }
c7abc967 1810
21dc4be5
VZ
1811 // not transparent
1812 return false;
01111366
RR
1813}
1814
487659e0 1815bool wxImage::SetMaskFromImage(const wxImage& mask,
1f5b2017 1816 unsigned char mr, unsigned char mg, unsigned char mb)
52b64b0a 1817{
52b64b0a
RR
1818 // check that the images are the same size
1819 if ( (M_IMGDATA->m_height != mask.GetHeight() ) || (M_IMGDATA->m_width != mask.GetWidth () ) )
1820 {
bc88f66f 1821 wxLogError( _("Image and mask have different sizes.") );
70cd62e9 1822 return false;
52b64b0a 1823 }
487659e0 1824
52b64b0a
RR
1825 // find unused colour
1826 unsigned char r,g,b ;
1f5b2017 1827 if (!FindFirstUnusedColour(&r, &g, &b))
52b64b0a 1828 {
bc88f66f 1829 wxLogError( _("No unused colour in image being masked.") );
70cd62e9 1830 return false ;
52b64b0a 1831 }
487659e0 1832
a0f81e9f
PC
1833 AllocExclusive();
1834
487659e0
VZ
1835 unsigned char *imgdata = GetData();
1836 unsigned char *maskdata = mask.GetData();
52b64b0a
RR
1837
1838 const int w = GetWidth();
1839 const int h = GetHeight();
1840
1841 for (int j = 0; j < h; j++)
1f5b2017 1842 {
52b64b0a
RR
1843 for (int i = 0; i < w; i++)
1844 {
1f5b2017 1845 if ((maskdata[0] == mr) && (maskdata[1] == mg) && (maskdata[2] == mb))
52b64b0a
RR
1846 {
1847 imgdata[0] = r;
1848 imgdata[1] = g;
1849 imgdata[2] = b;
1850 }
1851 imgdata += 3;
1852 maskdata += 3;
1853 }
1f5b2017 1854 }
52b64b0a 1855
1f5b2017 1856 SetMaskColour(r, g, b);
70cd62e9 1857 SetMask(true);
487659e0 1858
70cd62e9 1859 return true;
52b64b0a 1860}
7beb59f3 1861
8f2b21e4 1862bool wxImage::ConvertAlphaToMask(unsigned char threshold)
ff5ad794
VS
1863{
1864 if (!HasAlpha())
1865 return true;
1866
1867 unsigned char mr, mg, mb;
1868 if (!FindFirstUnusedColour(&mr, &mg, &mb))
1869 {
1870 wxLogError( _("No unused colour in image being masked.") );
1871 return false;
1872 }
94406a49 1873
a0f81e9f
PC
1874 AllocExclusive();
1875
ff5ad794
VS
1876 SetMask(true);
1877 SetMaskColour(mr, mg, mb);
94406a49 1878
ff5ad794
VS
1879 unsigned char *imgdata = GetData();
1880 unsigned char *alphadata = GetAlpha();
1881
8f2b21e4
VS
1882 int w = GetWidth();
1883 int h = GetHeight();
ff5ad794 1884
8f2b21e4 1885 for (int y = 0; y < h; y++)
ff5ad794 1886 {
8f2b21e4 1887 for (int x = 0; x < w; x++, imgdata += 3, alphadata++)
ff5ad794 1888 {
e95f0d79 1889 if (*alphadata < threshold)
ff5ad794
VS
1890 {
1891 imgdata[0] = mr;
1892 imgdata[1] = mg;
1893 imgdata[2] = mb;
1894 }
1895 }
1896 }
1897
eb86e775
VZ
1898 if( !M_IMGDATA->m_staticAlpha )
1899 free(M_IMGDATA->m_alpha);
1900
ff5ad794 1901 M_IMGDATA->m_alpha = NULL;
eb86e775 1902 M_IMGDATA->m_staticAlpha = false;
94406a49
DS
1903
1904 return true;
ff5ad794 1905}
52b64b0a 1906
21dc4be5 1907// ----------------------------------------------------------------------------
5e5437e0 1908// Palette functions
21dc4be5
VZ
1909// ----------------------------------------------------------------------------
1910
1911#if wxUSE_PALETTE
5e5437e0
JS
1912
1913bool wxImage::HasPalette() const
1914{
1915 if (!Ok())
70cd62e9 1916 return false;
5e5437e0
JS
1917
1918 return M_IMGDATA->m_palette.Ok();
1919}
1920
1921const wxPalette& wxImage::GetPalette() const
1922{
1923 wxCHECK_MSG( Ok(), wxNullPalette, wxT("invalid image") );
1924
1925 return M_IMGDATA->m_palette;
1926}
1927
1928void wxImage::SetPalette(const wxPalette& palette)
1929{
1930 wxCHECK_RET( Ok(), wxT("invalid image") );
1931
a0f81e9f
PC
1932 AllocExclusive();
1933
5e5437e0
JS
1934 M_IMGDATA->m_palette = palette;
1935}
1936
d275c7eb
VZ
1937#endif // wxUSE_PALETTE
1938
21dc4be5 1939// ----------------------------------------------------------------------------
5e5437e0 1940// Option functions (arbitrary name/value mapping)
21dc4be5
VZ
1941// ----------------------------------------------------------------------------
1942
5e5437e0
JS
1943void wxImage::SetOption(const wxString& name, const wxString& value)
1944{
1945 wxCHECK_RET( Ok(), wxT("invalid image") );
1946
a0f81e9f
PC
1947 AllocExclusive();
1948
70cd62e9 1949 int idx = M_IMGDATA->m_optionNames.Index(name, false);
5e5437e0
JS
1950 if (idx == wxNOT_FOUND)
1951 {
1952 M_IMGDATA->m_optionNames.Add(name);
1953 M_IMGDATA->m_optionValues.Add(value);
1954 }
1955 else
1956 {
1957 M_IMGDATA->m_optionNames[idx] = name;
1958 M_IMGDATA->m_optionValues[idx] = value;
1959 }
1960}
1961
1962void wxImage::SetOption(const wxString& name, int value)
1963{
1964 wxString valStr;
1965 valStr.Printf(wxT("%d"), value);
1966 SetOption(name, valStr);
1967}
1968
1969wxString wxImage::GetOption(const wxString& name) const
1970{
1971 wxCHECK_MSG( Ok(), wxEmptyString, wxT("invalid image") );
1972
70cd62e9 1973 int idx = M_IMGDATA->m_optionNames.Index(name, false);
5e5437e0
JS
1974 if (idx == wxNOT_FOUND)
1975 return wxEmptyString;
1976 else
1977 return M_IMGDATA->m_optionValues[idx];
1978}
1979
1980int wxImage::GetOptionInt(const wxString& name) const
1981{
5e5437e0
JS
1982 return wxAtoi(GetOption(name));
1983}
1984
1985bool wxImage::HasOption(const wxString& name) const
1986{
70cd62e9 1987 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
5e5437e0 1988
70cd62e9 1989 return (M_IMGDATA->m_optionNames.Index(name, false) != wxNOT_FOUND);
5e5437e0
JS
1990}
1991
21dc4be5
VZ
1992// ----------------------------------------------------------------------------
1993// image I/O
1994// ----------------------------------------------------------------------------
1995
9a6384ca
WS
1996bool wxImage::LoadFile( const wxString& WXUNUSED_UNLESS_STREAMS(filename),
1997 long WXUNUSED_UNLESS_STREAMS(type),
1998 int WXUNUSED_UNLESS_STREAMS(index) )
01111366 1999{
6632225c 2000#if HAS_FILE_STREAMS
d80207c3 2001 if (wxFileExists(filename))
6c28fd33 2002 {
6632225c 2003 wxImageFileInputStream stream(filename);
d80207c3 2004 wxBufferedInputStream bstream( stream );
60d43ad8 2005 return LoadFile(bstream, type, index);
6c28fd33 2006 }
d80207c3 2007 else
6c28fd33 2008 {
d80207c3
KB
2009 wxLogError( _("Can't load image from file '%s': file does not exist."), filename.c_str() );
2010
70cd62e9 2011 return false;
6c28fd33 2012 }
6632225c 2013#else // !HAS_FILE_STREAMS
70cd62e9 2014 return false;
6632225c 2015#endif // HAS_FILE_STREAMS
9e9ee68e
VS
2016}
2017
9a6384ca
WS
2018bool wxImage::LoadFile( const wxString& WXUNUSED_UNLESS_STREAMS(filename),
2019 const wxString& WXUNUSED_UNLESS_STREAMS(mimetype),
2020 int WXUNUSED_UNLESS_STREAMS(index) )
9e9ee68e 2021{
6632225c 2022#if HAS_FILE_STREAMS
d80207c3 2023 if (wxFileExists(filename))
6c28fd33 2024 {
6632225c 2025 wxImageFileInputStream stream(filename);
d80207c3 2026 wxBufferedInputStream bstream( stream );
60d43ad8 2027 return LoadFile(bstream, mimetype, index);
6c28fd33 2028 }
d80207c3 2029 else
6c28fd33 2030 {
d80207c3
KB
2031 wxLogError( _("Can't load image from file '%s': file does not exist."), filename.c_str() );
2032
70cd62e9 2033 return false;
6c28fd33 2034 }
6632225c 2035#else // !HAS_FILE_STREAMS
70cd62e9 2036 return false;
6632225c 2037#endif // HAS_FILE_STREAMS
1ccbb61a
VZ
2038}
2039
45647dcf
VS
2040
2041
2042bool wxImage::SaveFile( const wxString& filename ) const
2043{
2044 wxString ext = filename.AfterLast('.').Lower();
487659e0 2045
45647dcf
VS
2046 wxImageHandler * pHandler = FindHandler(ext, -1);
2047 if (pHandler)
2048 {
2049 SaveFile(filename, pHandler->GetType());
70cd62e9 2050 return true;
45647dcf
VS
2051 }
2052
2053 wxLogError(_("Can't save image to file '%s': unknown extension."), filename.c_str());
2054
70cd62e9 2055 return false;
45647dcf
VS
2056}
2057
9a6384ca
WS
2058bool wxImage::SaveFile( const wxString& WXUNUSED_UNLESS_STREAMS(filename),
2059 int WXUNUSED_UNLESS_STREAMS(type) ) const
1ccbb61a 2060{
6632225c 2061#if HAS_FILE_STREAMS
2a736739
VZ
2062 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
2063
36aac195 2064 ((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
fd94e8aa 2065
6632225c 2066 wxImageFileOutputStream stream(filename);
9e9ee68e 2067
2b5f62a0 2068 if ( stream.IsOk() )
1b055864 2069 {
069d0f27 2070 wxBufferedOutputStream bstream( stream );
1b055864
RR
2071 return SaveFile(bstream, type);
2072 }
6632225c 2073#endif // HAS_FILE_STREAMS
3ca6a5f0 2074
70cd62e9 2075 return false;
3d05544e 2076}
01111366 2077
9a6384ca
WS
2078bool wxImage::SaveFile( const wxString& WXUNUSED_UNLESS_STREAMS(filename),
2079 const wxString& WXUNUSED_UNLESS_STREAMS(mimetype) ) const
9e9ee68e 2080{
6632225c 2081#if HAS_FILE_STREAMS
2a736739
VZ
2082 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
2083
36aac195 2084 ((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
fd94e8aa 2085
6632225c 2086 wxImageFileOutputStream stream(filename);
c7abc967 2087
2b5f62a0 2088 if ( stream.IsOk() )
1b055864 2089 {
069d0f27 2090 wxBufferedOutputStream bstream( stream );
1b055864
RR
2091 return SaveFile(bstream, mimetype);
2092 }
6632225c 2093#endif // HAS_FILE_STREAMS
3ca6a5f0 2094
70cd62e9 2095 return false;
9e9ee68e
VS
2096}
2097
9a6384ca 2098bool wxImage::CanRead( const wxString& WXUNUSED_UNLESS_STREAMS(name) )
87202f78 2099{
6632225c
VS
2100#if HAS_FILE_STREAMS
2101 wxImageFileInputStream stream(name);
9a6384ca 2102 return CanRead(stream);
87202f78 2103#else
9a6384ca 2104 return false;
87202f78
SB
2105#endif
2106}
2107
9a6384ca
WS
2108int wxImage::GetImageCount( const wxString& WXUNUSED_UNLESS_STREAMS(name),
2109 long WXUNUSED_UNLESS_STREAMS(type) )
60d43ad8 2110{
6632225c
VS
2111#if HAS_FILE_STREAMS
2112 wxImageFileInputStream stream(name);
9a6384ca
WS
2113 if (stream.Ok())
2114 return GetImageCount(stream, type);
60d43ad8 2115#endif
2c0a4e08
VZ
2116
2117 return 0;
60d43ad8
VS
2118}
2119
e02afc7a 2120#if wxUSE_STREAMS
deb2fec0 2121
87202f78
SB
2122bool wxImage::CanRead( wxInputStream &stream )
2123{
79fa2374 2124 const wxList& list = GetHandlers();
004fd0c8 2125
222ed1d6 2126 for ( wxList::compatibility_iterator node = list.GetFirst(); node; node = node->GetNext() )
004fd0c8 2127 {
60d43ad8
VS
2128 wxImageHandler *handler=(wxImageHandler*)node->GetData();
2129 if (handler->CanRead( stream ))
70cd62e9 2130 return true;
87202f78
SB
2131 }
2132
70cd62e9 2133 return false;
60d43ad8
VS
2134}
2135
649d13e8 2136int wxImage::GetImageCount( wxInputStream &stream, long type )
60d43ad8
VS
2137{
2138 wxImageHandler *handler;
2139
2140 if ( type == wxBITMAP_TYPE_ANY )
2141 {
2142 wxList &list=GetHandlers();
2143
222ed1d6 2144 for (wxList::compatibility_iterator node = list.GetFirst(); node; node = node->GetNext())
60d43ad8
VS
2145 {
2146 handler=(wxImageHandler*)node->GetData();
2147 if ( handler->CanRead(stream) )
649d13e8 2148 return handler->GetImageCount(stream);
60d43ad8
VS
2149
2150 }
2151
2152 wxLogWarning(_("No handler found for image type."));
2153 return 0;
2154 }
2155
2156 handler = FindHandler(type);
2157
2158 if ( !handler )
2159 {
e772e330 2160 wxLogWarning(_("No image handler for type %ld defined."), type);
70cd62e9 2161 return false;
60d43ad8
VS
2162 }
2163
2164 if ( handler->CanRead(stream) )
2165 {
649d13e8 2166 return handler->GetImageCount(stream);
60d43ad8
VS
2167 }
2168 else
2169 {
e772e330 2170 wxLogError(_("Image file is not of type %ld."), type);
60d43ad8
VS
2171 return 0;
2172 }
87202f78
SB
2173}
2174
60d43ad8 2175bool wxImage::LoadFile( wxInputStream& stream, long type, int index )
3d05544e
JS
2176{
2177 UnRef();
c7abc967 2178
fd0eed64 2179 m_refData = new wxImageRefData;
c7abc967 2180
deb2fec0
SB
2181 wxImageHandler *handler;
2182
60d43ad8 2183 if ( type == wxBITMAP_TYPE_ANY )
deb2fec0 2184 {
995612e2 2185 wxList &list=GetHandlers();
deb2fec0 2186
222ed1d6 2187 for ( wxList::compatibility_iterator node = list.GetFirst(); node; node = node->GetNext() )
995612e2
VZ
2188 {
2189 handler=(wxImageHandler*)node->GetData();
60d43ad8 2190 if ( handler->CanRead(stream) )
70cd62e9 2191 return handler->LoadFile(this, stream, true/*verbose*/, index);
7b2471a0 2192
995612e2 2193 }
deb2fec0 2194
58c837a4 2195 wxLogWarning( _("No handler found for image type.") );
70cd62e9 2196 return false;
deb2fec0
SB
2197 }
2198
2199 handler = FindHandler(type);
c7abc967 2200
2b5f62a0 2201 if (handler == 0)
fd0eed64 2202 {
e772e330 2203 wxLogWarning( _("No image handler for type %ld defined."), type );
c7abc967 2204
70cd62e9 2205 return false;
fd0eed64 2206 }
c7abc967 2207
b598ec91 2208 if (stream.IsSeekable() && !handler->CanRead(stream))
dd9ea234 2209 {
e772e330 2210 wxLogError(_("Image file is not of type %ld."), type);
dd9ea234
JS
2211 return false;
2212 }
2213 else
2214 return handler->LoadFile(this, stream, true/*verbose*/, index);
01111366
RR
2215}
2216
60d43ad8 2217bool wxImage::LoadFile( wxInputStream& stream, const wxString& mimetype, int index )
9e9ee68e
VS
2218{
2219 UnRef();
2220
2221 m_refData = new wxImageRefData;
2222
2223 wxImageHandler *handler = FindHandlerMime(mimetype);
2224
2b5f62a0 2225 if (handler == 0)
9e9ee68e 2226 {
58c837a4 2227 wxLogWarning( _("No image handler for type %s defined."), mimetype.GetData() );
9e9ee68e 2228
70cd62e9 2229 return false;
9e9ee68e
VS
2230 }
2231
b598ec91 2232 if (stream.IsSeekable() && !handler->CanRead(stream))
dd9ea234 2233 {
86501081 2234 wxLogError(_("Image file is not of type %s."), mimetype);
dd9ea234
JS
2235 return false;
2236 }
2237 else
2238 return handler->LoadFile( this, stream, true/*verbose*/, index );
9e9ee68e
VS
2239}
2240
e0a76d8d 2241bool wxImage::SaveFile( wxOutputStream& stream, int type ) const
01111366 2242{
70cd62e9 2243 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
c7abc967 2244
fd0eed64 2245 wxImageHandler *handler = FindHandler(type);
2a736739 2246 if ( !handler )
fd0eed64 2247 {
58c837a4 2248 wxLogWarning( _("No image handler for type %d defined."), type );
9e9ee68e 2249
70cd62e9 2250 return false;
9e9ee68e
VS
2251 }
2252
e0a76d8d 2253 return handler->SaveFile( (wxImage*)this, stream );
9e9ee68e
VS
2254}
2255
e0a76d8d 2256bool wxImage::SaveFile( wxOutputStream& stream, const wxString& mimetype ) const
9e9ee68e 2257{
70cd62e9 2258 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
c7abc967 2259
9e9ee68e 2260 wxImageHandler *handler = FindHandlerMime(mimetype);
2a736739 2261 if ( !handler )
9e9ee68e 2262 {
58c837a4 2263 wxLogWarning( _("No image handler for type %s defined."), mimetype.GetData() );
c7abc967 2264
70cd62e9 2265 return false;
fd0eed64 2266 }
c7abc967 2267
e0a76d8d 2268 return handler->SaveFile( (wxImage*)this, stream );
01111366 2269}
e02afc7a 2270#endif // wxUSE_STREAMS
01111366 2271
21dc4be5
VZ
2272// ----------------------------------------------------------------------------
2273// image I/O handlers
2274// ----------------------------------------------------------------------------
2275
01111366
RR
2276void wxImage::AddHandler( wxImageHandler *handler )
2277{
2b5f62a0
VZ
2278 // Check for an existing handler of the type being added.
2279 if (FindHandler( handler->GetType() ) == 0)
2280 {
2281 sm_handlers.Append( handler );
2282 }
2283 else
2284 {
2285 // This is not documented behaviour, merely the simplest 'fix'
2286 // for preventing duplicate additions. If someone ever has
2287 // a good reason to add and remove duplicate handlers (and they
2288 // may) we should probably refcount the duplicates.
2289 // also an issue in InsertHandler below.
2290
2291 wxLogDebug( _T("Adding duplicate image handler for '%s'"),
2292 handler->GetName().c_str() );
2293 delete handler;
2294 }
01111366
RR
2295}
2296
2297void wxImage::InsertHandler( wxImageHandler *handler )
2298{
2b5f62a0
VZ
2299 // Check for an existing handler of the type being added.
2300 if (FindHandler( handler->GetType() ) == 0)
2301 {
2302 sm_handlers.Insert( handler );
2303 }
2304 else
2305 {
2306 // see AddHandler for additional comments.
2307 wxLogDebug( _T("Inserting duplicate image handler for '%s'"),
2308 handler->GetName().c_str() );
2309 delete handler;
2310 }
01111366
RR
2311}
2312
2313bool wxImage::RemoveHandler( const wxString& name )
2314{
fd0eed64
RR
2315 wxImageHandler *handler = FindHandler(name);
2316 if (handler)
2317 {
2318 sm_handlers.DeleteObject(handler);
222ed1d6 2319 delete handler;
70cd62e9 2320 return true;
fd0eed64
RR
2321 }
2322 else
70cd62e9 2323 return false;
01111366
RR
2324}
2325
2326wxImageHandler *wxImage::FindHandler( const wxString& name )
2327{
222ed1d6 2328 wxList::compatibility_iterator node = sm_handlers.GetFirst();
fd0eed64
RR
2329 while (node)
2330 {
b1d4dd7a 2331 wxImageHandler *handler = (wxImageHandler*)node->GetData();
ce3ed50d 2332 if (handler->GetName().Cmp(name) == 0) return handler;
c7abc967 2333
b1d4dd7a 2334 node = node->GetNext();
fd0eed64 2335 }
b4c26503 2336 return NULL;
01111366
RR
2337}
2338
2339wxImageHandler *wxImage::FindHandler( const wxString& extension, long bitmapType )
2340{
222ed1d6 2341 wxList::compatibility_iterator node = sm_handlers.GetFirst();
fd0eed64
RR
2342 while (node)
2343 {
b1d4dd7a 2344 wxImageHandler *handler = (wxImageHandler*)node->GetData();
ce3ed50d 2345 if ( (handler->GetExtension().Cmp(extension) == 0) &&
fd0eed64 2346 (bitmapType == -1 || handler->GetType() == bitmapType) )
dbda9e86 2347 return handler;
b1d4dd7a 2348 node = node->GetNext();
fd0eed64 2349 }
b4c26503 2350 return NULL;
01111366
RR
2351}
2352
2353wxImageHandler *wxImage::FindHandler( long bitmapType )
2354{
222ed1d6 2355 wxList::compatibility_iterator node = sm_handlers.GetFirst();
fd0eed64
RR
2356 while (node)
2357 {
b1d4dd7a 2358 wxImageHandler *handler = (wxImageHandler *)node->GetData();
fd0eed64 2359 if (handler->GetType() == bitmapType) return handler;
b1d4dd7a 2360 node = node->GetNext();
fd0eed64 2361 }
b4c26503 2362 return NULL;
fd0eed64
RR
2363}
2364
9e9ee68e
VS
2365wxImageHandler *wxImage::FindHandlerMime( const wxString& mimetype )
2366{
222ed1d6 2367 wxList::compatibility_iterator node = sm_handlers.GetFirst();
9e9ee68e
VS
2368 while (node)
2369 {
b1d4dd7a 2370 wxImageHandler *handler = (wxImageHandler *)node->GetData();
70cd62e9 2371 if (handler->GetMimeType().IsSameAs(mimetype, false)) return handler;
b1d4dd7a 2372 node = node->GetNext();
9e9ee68e 2373 }
b4c26503 2374 return NULL;
9e9ee68e
VS
2375}
2376
fd0eed64
RR
2377void wxImage::InitStandardHandlers()
2378{
77fac225 2379#if wxUSE_STREAMS
66e23ad2 2380 AddHandler(new wxBMPHandler);
77fac225 2381#endif // wxUSE_STREAMS
01111366
RR
2382}
2383
2384void wxImage::CleanUpHandlers()
2385{
222ed1d6 2386 wxList::compatibility_iterator node = sm_handlers.GetFirst();
fd0eed64
RR
2387 while (node)
2388 {
b1d4dd7a 2389 wxImageHandler *handler = (wxImageHandler *)node->GetData();
222ed1d6 2390 wxList::compatibility_iterator next = node->GetNext();
fd0eed64 2391 delete handler;
fd0eed64
RR
2392 node = next;
2393 }
01111366 2394
222ed1d6
MB
2395 sm_handlers.Clear();
2396}
ff865c13 2397
939fadc8
JS
2398wxString wxImage::GetImageExtWildcard()
2399{
2400 wxString fmts;
2401
2402 wxList& Handlers = wxImage::GetHandlers();
222ed1d6 2403 wxList::compatibility_iterator Node = Handlers.GetFirst();
939fadc8
JS
2404 while ( Node )
2405 {
2406 wxImageHandler* Handler = (wxImageHandler*)Node->GetData();
2407 fmts += wxT("*.") + Handler->GetExtension();
2408 Node = Node->GetNext();
2409 if ( Node ) fmts += wxT(";");
2410 }
2411
2412 return wxT("(") + fmts + wxT(")|") + fmts;
2413}
2414
978d3d36
VZ
2415wxImage::HSVValue wxImage::RGBtoHSV(const RGBValue& rgb)
2416{
978d3d36
VZ
2417 const double red = rgb.red / 255.0,
2418 green = rgb.green / 255.0,
2419 blue = rgb.blue / 255.0;
2420
c77a6796
VZ
2421 // find the min and max intensity (and remember which one was it for the
2422 // latter)
978d3d36 2423 double minimumRGB = red;
c77a6796 2424 if ( green < minimumRGB )
978d3d36 2425 minimumRGB = green;
c77a6796 2426 if ( blue < minimumRGB )
978d3d36
VZ
2427 minimumRGB = blue;
2428
c77a6796 2429 enum { RED, GREEN, BLUE } chMax = RED;
978d3d36 2430 double maximumRGB = red;
c77a6796
VZ
2431 if ( green > maximumRGB )
2432 {
2433 chMax = GREEN;
978d3d36 2434 maximumRGB = green;
c77a6796
VZ
2435 }
2436 if ( blue > maximumRGB )
2437 {
2438 chMax = BLUE;
978d3d36 2439 maximumRGB = blue;
c77a6796 2440 }
978d3d36 2441
c77a6796 2442 const double value = maximumRGB;
978d3d36 2443
38d4b1e4 2444 double hue = 0.0, saturation;
c77a6796
VZ
2445 const double deltaRGB = maximumRGB - minimumRGB;
2446 if ( wxIsNullDouble(deltaRGB) )
978d3d36
VZ
2447 {
2448 // Gray has no color
2449 hue = 0.0;
2450 saturation = 0.0;
2451 }
2452 else
2453 {
c77a6796
VZ
2454 switch ( chMax )
2455 {
2456 case RED:
2457 hue = (green - blue) / deltaRGB;
2458 break;
978d3d36 2459
c77a6796
VZ
2460 case GREEN:
2461 hue = 2.0 + (blue - red) / deltaRGB;
2462 break;
978d3d36 2463
c77a6796
VZ
2464 case BLUE:
2465 hue = 4.0 + (red - green) / deltaRGB;
2466 break;
38d4b1e4
WS
2467
2468 default:
2469 wxFAIL_MSG(wxT("hue not specified"));
2470 break;
c77a6796
VZ
2471 }
2472
2473 hue /= 6.0;
978d3d36 2474
c77a6796
VZ
2475 if ( hue < 0.0 )
2476 hue += 1.0;
978d3d36 2477
c77a6796 2478 saturation = deltaRGB / maximumRGB;
978d3d36
VZ
2479 }
2480
2481 return HSVValue(hue, saturation, value);
2482}
2483
2484wxImage::RGBValue wxImage::HSVtoRGB(const HSVValue& hsv)
2485{
2486 double red, green, blue;
2487
c77a6796 2488 if ( wxIsNullDouble(hsv.saturation) )
978d3d36 2489 {
c77a6796
VZ
2490 // Grey
2491 red = hsv.value;
978d3d36 2492 green = hsv.value;
c77a6796 2493 blue = hsv.value;
978d3d36 2494 }
c77a6796 2495 else // not grey
978d3d36
VZ
2496 {
2497 double hue = hsv.hue * 6.0; // sector 0 to 5
2498 int i = (int)floor(hue);
2499 double f = hue - i; // fractional part of h
2500 double p = hsv.value * (1.0 - hsv.saturation);
2501
2502 switch (i)
2503 {
2504 case 0:
2505 red = hsv.value;
2506 green = hsv.value * (1.0 - hsv.saturation * (1.0 - f));
2507 blue = p;
2508 break;
2509
2510 case 1:
2511 red = hsv.value * (1.0 - hsv.saturation * f);
2512 green = hsv.value;
2513 blue = p;
2514 break;
2515
2516 case 2:
2517 red = p;
2518 green = hsv.value;
2519 blue = hsv.value * (1.0 - hsv.saturation * (1.0 - f));
2520 break;
2521
2522 case 3:
2523 red = p;
2524 green = hsv.value * (1.0 - hsv.saturation * f);
2525 blue = hsv.value;
2526 break;
2527
2528 case 4:
2529 red = hsv.value * (1.0 - hsv.saturation * (1.0 - f));
2530 green = p;
2531 blue = hsv.value;
2532 break;
2533
2534 default: // case 5:
2535 red = hsv.value;
2536 green = p;
2537 blue = hsv.value * (1.0 - hsv.saturation * f);
2538 break;
2539 }
2540 }
2541
2542 return RGBValue((unsigned char)(red * 255.0),
2543 (unsigned char)(green * 255.0),
2544 (unsigned char)(blue * 255.0));
2545}
2546
2547/*
2548 * Rotates the hue of each pixel of the image. angle is a double in the range
2549 * -1.0..1.0 where -1.0 is -360 degrees and 1.0 is 360 degrees
2550 */
2551void wxImage::RotateHue(double angle)
2552{
a0f81e9f
PC
2553 AllocExclusive();
2554
978d3d36
VZ
2555 unsigned char *srcBytePtr;
2556 unsigned char *dstBytePtr;
2557 unsigned long count;
2558 wxImage::HSVValue hsv;
2559 wxImage::RGBValue rgb;
2560
6926b9c4 2561 wxASSERT (angle >= -1.0 && angle <= 1.0);
978d3d36 2562 count = M_IMGDATA->m_width * M_IMGDATA->m_height;
c77a6796 2563 if ( count > 0 && !wxIsNullDouble(angle) )
978d3d36
VZ
2564 {
2565 srcBytePtr = M_IMGDATA->m_data;
2566 dstBytePtr = srcBytePtr;
2567 do
2568 {
2569 rgb.red = *srcBytePtr++;
2570 rgb.green = *srcBytePtr++;
2571 rgb.blue = *srcBytePtr++;
2572 hsv = RGBtoHSV(rgb);
2573
2574 hsv.hue = hsv.hue + angle;
2575 if (hsv.hue > 1.0)
2576 hsv.hue = hsv.hue - 1.0;
2577 else if (hsv.hue < 0.0)
2578 hsv.hue = hsv.hue + 1.0;
2579
2580 rgb = HSVtoRGB(hsv);
2581 *dstBytePtr++ = rgb.red;
2582 *dstBytePtr++ = rgb.green;
2583 *dstBytePtr++ = rgb.blue;
2584 } while (--count != 0);
2585 }
2586}
2587
01111366
RR
2588//-----------------------------------------------------------------------------
2589// wxImageHandler
2590//-----------------------------------------------------------------------------
2591
63d963a1 2592IMPLEMENT_ABSTRACT_CLASS(wxImageHandler,wxObject)
01111366 2593
e02afc7a 2594#if wxUSE_STREAMS
700ec454 2595bool wxImageHandler::LoadFile( wxImage *WXUNUSED(image), wxInputStream& WXUNUSED(stream), bool WXUNUSED(verbose), int WXUNUSED(index) )
01111366 2596{
70cd62e9 2597 return false;
01111366
RR
2598}
2599
deb2fec0 2600bool wxImageHandler::SaveFile( wxImage *WXUNUSED(image), wxOutputStream& WXUNUSED(stream), bool WXUNUSED(verbose) )
01111366 2601{
70cd62e9 2602 return false;
01111366 2603}
0828c087 2604
649d13e8 2605int wxImageHandler::GetImageCount( wxInputStream& WXUNUSED(stream) )
700ec454
RR
2606{
2607 return 1;
2608}
2609
0828c087
VS
2610bool wxImageHandler::CanRead( const wxString& name )
2611{
0828c087
VS
2612 if (wxFileExists(name))
2613 {
6632225c 2614 wxImageFileInputStream stream(name);
0828c087
VS
2615 return CanRead(stream);
2616 }
2617
39d16996 2618 wxLogError( _("Can't check image format of file '%s': file does not exist."), name.c_str() );
0828c087 2619
70cd62e9 2620 return false;
39d16996
VZ
2621}
2622
2623bool wxImageHandler::CallDoCanRead(wxInputStream& stream)
2624{
30984dea 2625 wxFileOffset posOld = stream.TellI();
39d16996
VZ
2626 if ( posOld == wxInvalidOffset )
2627 {
2628 // can't test unseekable stream
70cd62e9 2629 return false;
39d16996
VZ
2630 }
2631
2632 bool ok = DoCanRead(stream);
2633
2634 // restore the old position to be able to test other formats and so on
2635 if ( stream.SeekI(posOld) == wxInvalidOffset )
2636 {
2637 wxLogDebug(_T("Failed to rewind the stream in wxImageHandler!"));
2638
2639 // reading would fail anyhow as we're not at the right position
70cd62e9 2640 return false;
0828c087 2641 }
39d16996
VZ
2642
2643 return ok;
0828c087
VS
2644}
2645
e02afc7a 2646#endif // wxUSE_STREAMS
01111366 2647
361f4288
VZ
2648/* static */
2649wxImageResolution
2650wxImageHandler::GetResolutionFromOptions(const wxImage& image, int *x, int *y)
2651{
2652 wxCHECK_MSG( x && y, wxIMAGE_RESOLUTION_NONE, _T("NULL pointer") );
2653
2654 if ( image.HasOption(wxIMAGE_OPTION_RESOLUTIONX) &&
2655 image.HasOption(wxIMAGE_OPTION_RESOLUTIONY) )
2656 {
2657 *x = image.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONX);
2658 *y = image.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONY);
2659 }
2660 else if ( image.HasOption(wxIMAGE_OPTION_RESOLUTION) )
2661 {
2662 *x =
2663 *y = image.GetOptionInt(wxIMAGE_OPTION_RESOLUTION);
2664 }
2665 else // no resolution options specified
2666 {
2667 *x =
2668 *y = 0;
2669
2670 return wxIMAGE_RESOLUTION_NONE;
2671 }
2672
2673 // get the resolution unit too
2674 int resUnit = image.GetOptionInt(wxIMAGE_OPTION_RESOLUTIONUNIT);
2675 if ( !resUnit )
2676 {
2677 // this is the default
2678 resUnit = wxIMAGE_RESOLUTION_INCHES;
2679 }
2680
2681 return (wxImageResolution)resUnit;
2682}
2683
487659e0
VZ
2684// ----------------------------------------------------------------------------
2685// image histogram stuff
2686// ----------------------------------------------------------------------------
2687
2688bool
2689wxImageHistogram::FindFirstUnusedColour(unsigned char *r,
2690 unsigned char *g,
2691 unsigned char *b,
2692 unsigned char r2,
2693 unsigned char b2,
2694 unsigned char g2) const
2695{
2696 unsigned long key = MakeKey(r2, g2, b2);
2697
2698 while ( find(key) != end() )
2699 {
2700 // color already used
2701 r2++;
2702 if ( r2 >= 255 )
2703 {
2704 r2 = 0;
2705 g2++;
2706 if ( g2 >= 255 )
2707 {
2708 g2 = 0;
2709 b2++;
2710 if ( b2 >= 255 )
2711 {
bc88f66f 2712 wxLogError(_("No unused colour in image.") );
70cd62e9 2713 return false;
487659e0
VZ
2714 }
2715 }
2716 }
2717
2718 key = MakeKey(r2, g2, b2);
2719 }
2720
2721 if ( r )
2722 *r = r2;
2723 if ( g )
2724 *g = g2;
2725 if ( b )
2726 *b = b2;
2727
70cd62e9 2728 return true;
487659e0
VZ
2729}
2730
2731bool
2732wxImage::FindFirstUnusedColour(unsigned char *r,
2733 unsigned char *g,
2734 unsigned char *b,
2735 unsigned char r2,
2736 unsigned char b2,
2737 unsigned char g2) const
2738{
2739 wxImageHistogram histogram;
2740
2741 ComputeHistogram(histogram);
2742
2743 return histogram.FindFirstUnusedColour(r, g, b, r2, g2, b2);
2744}
2745
2746
c9d01afd 2747
89d00456
GRG
2748// GRG, Dic/99
2749// Counts and returns the number of different colours. Optionally stops
cc9f7d79
GRG
2750// when it exceeds 'stopafter' different colours. This is useful, for
2751// example, to see if the image can be saved as 8-bit (256 colour or
2752// less, in this case it would be invoked as CountColours(256)). Default
2753// value for stopafter is -1 (don't care).
89d00456 2754//
e0a76d8d 2755unsigned long wxImage::CountColours( unsigned long stopafter ) const
89d00456
GRG
2756{
2757 wxHashTable h;
ad30de59 2758 wxObject dummy;
33ac7e6f 2759 unsigned char r, g, b;
eeca3a46 2760 unsigned char *p;
89d00456
GRG
2761 unsigned long size, nentries, key;
2762
2763 p = GetData();
2764 size = GetWidth() * GetHeight();
2765 nentries = 0;
2766
cc9f7d79 2767 for (unsigned long j = 0; (j < size) && (nentries <= stopafter) ; j++)
89d00456
GRG
2768 {
2769 r = *(p++);
2770 g = *(p++);
2771 b = *(p++);
487659e0 2772 key = wxImageHistogram::MakeKey(r, g, b);
89d00456 2773
ad30de59 2774 if (h.Get(key) == NULL)
89d00456 2775 {
ad30de59 2776 h.Put(key, &dummy);
89d00456
GRG
2777 nentries++;
2778 }
2779 }
2780
89d00456
GRG
2781 return nentries;
2782}
2783
2784
e0a76d8d 2785unsigned long wxImage::ComputeHistogram( wxImageHistogram &h ) const
c9d01afd 2786{
487659e0
VZ
2787 unsigned char *p = GetData();
2788 unsigned long nentries = 0;
952ae1e8
VS
2789
2790 h.clear();
c9d01afd 2791
487659e0 2792 const unsigned long size = GetWidth() * GetHeight();
c9d01afd 2793
487659e0
VZ
2794 unsigned char r, g, b;
2795 for ( unsigned long n = 0; n < size; n++ )
c9d01afd 2796 {
487659e0
VZ
2797 r = *p++;
2798 g = *p++;
2799 b = *p++;
2800
2801 wxImageHistogramEntry& entry = h[wxImageHistogram::MakeKey(r, g, b)];
c9d01afd 2802
952ae1e8
VS
2803 if ( entry.value++ == 0 )
2804 entry.index = nentries++;
c9d01afd
GRG
2805 }
2806
2807 return nentries;
2808}
2809
7a632f10
JS
2810/*
2811 * Rotation code by Carlos Moreno
2812 */
2813
3fff3966 2814static const double wxROTATE_EPSILON = 1e-10;
7a632f10
JS
2815
2816// Auxiliary function to rotate a point (x,y) with respect to point p0
2817// make it inline and use a straight return to facilitate optimization
2818// also, the function receives the sine and cosine of the angle to avoid
2819// repeating the time-consuming calls to these functions -- sin/cos can
2820// be computed and stored in the calling function.
2821
3fff3966
VZ
2822static inline wxRealPoint
2823wxRotatePoint(const wxRealPoint& p, double cos_angle, double sin_angle,
2824 const wxRealPoint& p0)
7a632f10 2825{
3fff3966
VZ
2826 return wxRealPoint(p0.x + (p.x - p0.x) * cos_angle - (p.y - p0.y) * sin_angle,
2827 p0.y + (p.y - p0.y) * cos_angle + (p.x - p0.x) * sin_angle);
7a632f10
JS
2828}
2829
3fff3966
VZ
2830static inline wxRealPoint
2831wxRotatePoint(double x, double y, double cos_angle, double sin_angle,
2832 const wxRealPoint & p0)
7a632f10 2833{
3fff3966 2834 return wxRotatePoint (wxRealPoint(x,y), cos_angle, sin_angle, p0);
7a632f10
JS
2835}
2836
e26d5213
VZ
2837wxImage wxImage::Rotate(double angle,
2838 const wxPoint& centre_of_rotation,
2839 bool interpolating,
2840 wxPoint *offset_after_rotation) const
7a632f10 2841{
e26d5213
VZ
2842 // screen coordinates are a mirror image of "real" coordinates
2843 angle = -angle;
2844
2845 const bool has_alpha = HasAlpha();
2846
2847 const int w = GetWidth();
2848 const int h = GetHeight();
b713f891 2849
e26d5213 2850 int i;
7a632f10 2851
ad30de59 2852 // Create pointer-based array to accelerate access to wxImage's data
e26d5213 2853 unsigned char ** data = new unsigned char * [h];
b5c91ac6 2854 data[0] = GetData();
e26d5213
VZ
2855 for (i = 1; i < h; i++)
2856 data[i] = data[i - 1] + (3 * w);
7a632f10 2857
b713f891 2858 // Same for alpha channel
6408deed
RR
2859 unsigned char ** alpha = NULL;
2860 if (has_alpha)
2861 {
e26d5213 2862 alpha = new unsigned char * [h];
6408deed 2863 alpha[0] = GetAlpha();
e26d5213
VZ
2864 for (i = 1; i < h; i++)
2865 alpha[i] = alpha[i - 1] + w;
6408deed
RR
2866 }
2867
b5c91ac6 2868 // precompute coefficients for rotation formula
7a632f10
JS
2869 const double cos_angle = cos(angle);
2870 const double sin_angle = sin(angle);
2871
ad30de59
GRG
2872 // Create new Image to store the result
2873 // First, find rectangle that covers the rotated image; to do that,
2874 // rotate the four corners
7a632f10 2875
b5c91ac6 2876 const wxRealPoint p0(centre_of_rotation.x, centre_of_rotation.y);
7a632f10 2877
3fff3966 2878 wxRealPoint p1 = wxRotatePoint (0, 0, cos_angle, sin_angle, p0);
e26d5213
VZ
2879 wxRealPoint p2 = wxRotatePoint (0, h, cos_angle, sin_angle, p0);
2880 wxRealPoint p3 = wxRotatePoint (w, 0, cos_angle, sin_angle, p0);
2881 wxRealPoint p4 = wxRotatePoint (w, h, cos_angle, sin_angle, p0);
7a632f10 2882
4e115ed2
VZ
2883 int x1a = (int) floor (wxMin (wxMin(p1.x, p2.x), wxMin(p3.x, p4.x)));
2884 int y1a = (int) floor (wxMin (wxMin(p1.y, p2.y), wxMin(p3.y, p4.y)));
2885 int x2a = (int) ceil (wxMax (wxMax(p1.x, p2.x), wxMax(p3.x, p4.x)));
2886 int y2a = (int) ceil (wxMax (wxMax(p1.y, p2.y), wxMax(p3.y, p4.y)));
7a632f10 2887
6408deed 2888 // Create rotated image
4e115ed2 2889 wxImage rotated (x2a - x1a + 1, y2a - y1a + 1, false);
6408deed
RR
2890 // With alpha channel
2891 if (has_alpha)
2892 rotated.SetAlpha();
7a632f10
JS
2893
2894 if (offset_after_rotation != NULL)
2895 {
4e115ed2 2896 *offset_after_rotation = wxPoint (x1a, y1a);
7a632f10
JS
2897 }
2898
e26d5213
VZ
2899 // the rotated (destination) image is always accessed sequentially via this
2900 // pointer, there is no need for pointer-based arrays here
2901 unsigned char *dst = rotated.GetData();
b713f891 2902
e26d5213 2903 unsigned char *alpha_dst = has_alpha ? rotated.GetAlpha() : NULL;
7a632f10 2904
e26d5213
VZ
2905 // if the original image has a mask, use its RGB values as the blank pixel,
2906 // else, fall back to default (black).
b5c91ac6
GRG
2907 unsigned char blank_r = 0;
2908 unsigned char blank_g = 0;
2909 unsigned char blank_b = 0;
ad30de59
GRG
2910
2911 if (HasMask())
2912 {
b5c91ac6
GRG
2913 blank_r = GetMaskRed();
2914 blank_g = GetMaskGreen();
2915 blank_b = GetMaskBlue();
2916 rotated.SetMaskColour( blank_r, blank_g, blank_b );
ad30de59
GRG
2917 }
2918
2919 // Now, for each point of the rotated image, find where it came from, by
2920 // performing an inverse rotation (a rotation of -angle) and getting the
2921 // pixel at those coordinates
2922
e26d5213
VZ
2923 const int rH = rotated.GetHeight();
2924 const int rW = rotated.GetWidth();
7a632f10 2925
e26d5213
VZ
2926 // do the (interpolating) test outside of the loops, so that it is done
2927 // only once, instead of repeating it for each pixel.
b5c91ac6 2928 if (interpolating)
7a632f10 2929 {
e26d5213 2930 for (int y = 0; y < rH; y++)
7a632f10 2931 {
e26d5213 2932 for (int x = 0; x < rW; x++)
7a632f10 2933 {
3fff3966 2934 wxRealPoint src = wxRotatePoint (x + x1a, y + y1a, cos_angle, -sin_angle, p0);
b5c91ac6 2935
e26d5213
VZ
2936 if (-0.25 < src.x && src.x < w - 0.75 &&
2937 -0.25 < src.y && src.y < h - 0.75)
7a632f10 2938 {
ad30de59
GRG
2939 // interpolate using the 4 enclosing grid-points. Those
2940 // points can be obtained using floor and ceiling of the
2941 // exact coordinates of the point
f2506310
JS
2942 int x1, y1, x2, y2;
2943
e26d5213 2944 if (0 < src.x && src.x < w - 1)
f2506310 2945 {
3fff3966
VZ
2946 x1 = wxRound(floor(src.x));
2947 x2 = wxRound(ceil(src.x));
f2506310
JS
2948 }
2949 else // else means that x is near one of the borders (0 or width-1)
2950 {
3fff3966 2951 x1 = x2 = wxRound (src.x);
f2506310
JS
2952 }
2953
e26d5213 2954 if (0 < src.y && src.y < h - 1)
f2506310 2955 {
3fff3966
VZ
2956 y1 = wxRound(floor(src.y));
2957 y2 = wxRound(ceil(src.y));
f2506310
JS
2958 }
2959 else
2960 {
3fff3966 2961 y1 = y2 = wxRound (src.y);
f2506310 2962 }
7a632f10 2963
ad30de59
GRG
2964 // get four points and the distances (square of the distance,
2965 // for efficiency reasons) for the interpolation formula
b5c91ac6
GRG
2966
2967 // GRG: Do not calculate the points until they are
2968 // really needed -- this way we can calculate
2969 // just one, instead of four, if d1, d2, d3
3fff3966 2970 // or d4 are < wxROTATE_EPSILON
7a632f10
JS
2971
2972 const double d1 = (src.x - x1) * (src.x - x1) + (src.y - y1) * (src.y - y1);
2973 const double d2 = (src.x - x2) * (src.x - x2) + (src.y - y1) * (src.y - y1);
2974 const double d3 = (src.x - x2) * (src.x - x2) + (src.y - y2) * (src.y - y2);
2975 const double d4 = (src.x - x1) * (src.x - x1) + (src.y - y2) * (src.y - y2);
2976
ad30de59
GRG
2977 // Now interpolate as a weighted average of the four surrounding
2978 // points, where the weights are the distances to each of those points
7a632f10 2979
ad30de59
GRG
2980 // If the point is exactly at one point of the grid of the source
2981 // image, then don't interpolate -- just assign the pixel
7a632f10 2982
3fff3966
VZ
2983 // d1,d2,d3,d4 are positive -- no need for abs()
2984 if (d1 < wxROTATE_EPSILON)
7a632f10 2985 {
b5c91ac6
GRG
2986 unsigned char *p = data[y1] + (3 * x1);
2987 *(dst++) = *(p++);
2988 *(dst++) = *(p++);
6408deed 2989 *(dst++) = *p;
b713f891 2990
6408deed 2991 if (has_alpha)
4e115ed2 2992 *(alpha_dst++) = *(alpha[y1] + x1);
7a632f10 2993 }
3fff3966 2994 else if (d2 < wxROTATE_EPSILON)
7a632f10 2995 {
b5c91ac6
GRG
2996 unsigned char *p = data[y1] + (3 * x2);
2997 *(dst++) = *(p++);
2998 *(dst++) = *(p++);
6408deed 2999 *(dst++) = *p;
b713f891 3000
6408deed 3001 if (has_alpha)
4e115ed2 3002 *(alpha_dst++) = *(alpha[y1] + x2);
7a632f10 3003 }
3fff3966 3004 else if (d3 < wxROTATE_EPSILON)
7a632f10 3005 {
b5c91ac6
GRG
3006 unsigned char *p = data[y2] + (3 * x2);
3007 *(dst++) = *(p++);
3008 *(dst++) = *(p++);
6408deed 3009 *(dst++) = *p;
b713f891 3010
6408deed 3011 if (has_alpha)
4e115ed2 3012 *(alpha_dst++) = *(alpha[y2] + x2);
7a632f10 3013 }
3fff3966 3014 else if (d4 < wxROTATE_EPSILON)
7a632f10 3015 {
b5c91ac6
GRG
3016 unsigned char *p = data[y2] + (3 * x1);
3017 *(dst++) = *(p++);
3018 *(dst++) = *(p++);
6408deed 3019 *(dst++) = *p;
b713f891 3020
6408deed 3021 if (has_alpha)
4e115ed2 3022 *(alpha_dst++) = *(alpha[y2] + x1);
7a632f10
JS
3023 }
3024 else
3025 {
06b466c7 3026 // weights for the weighted average are proportional to the inverse of the distance
b5c91ac6
GRG
3027 unsigned char *v1 = data[y1] + (3 * x1);
3028 unsigned char *v2 = data[y1] + (3 * x2);
3029 unsigned char *v3 = data[y2] + (3 * x2);
3030 unsigned char *v4 = data[y2] + (3 * x1);
3031
06b466c7
VZ
3032 const double w1 = 1/d1, w2 = 1/d2, w3 = 1/d3, w4 = 1/d4;
3033
b5c91ac6
GRG
3034 // GRG: Unrolled.
3035
3036 *(dst++) = (unsigned char)
3037 ( (w1 * *(v1++) + w2 * *(v2++) +
3038 w3 * *(v3++) + w4 * *(v4++)) /
3039 (w1 + w2 + w3 + w4) );
3040 *(dst++) = (unsigned char)
3041 ( (w1 * *(v1++) + w2 * *(v2++) +
3042 w3 * *(v3++) + w4 * *(v4++)) /
3043 (w1 + w2 + w3 + w4) );
3044 *(dst++) = (unsigned char)
999836aa
VZ
3045 ( (w1 * *v1 + w2 * *v2 +
3046 w3 * *v3 + w4 * *v4) /
b5c91ac6 3047 (w1 + w2 + w3 + w4) );
b713f891 3048
6408deed
RR
3049 if (has_alpha)
3050 {
4e115ed2
VZ
3051 v1 = alpha[y1] + (x1);
3052 v2 = alpha[y1] + (x2);
3053 v3 = alpha[y2] + (x2);
3054 v4 = alpha[y2] + (x1);
6408deed
RR
3055
3056 *(alpha_dst++) = (unsigned char)
3057 ( (w1 * *v1 + w2 * *v2 +
3058 w3 * *v3 + w4 * *v4) /
3059 (w1 + w2 + w3 + w4) );
3060 }
7a632f10
JS
3061 }
3062 }
3063 else
3064 {
b5c91ac6
GRG
3065 *(dst++) = blank_r;
3066 *(dst++) = blank_g;
3067 *(dst++) = blank_b;
b713f891 3068
6408deed
RR
3069 if (has_alpha)
3070 *(alpha_dst++) = 0;
7a632f10
JS
3071 }
3072 }
b5c91ac6
GRG
3073 }
3074 }
e26d5213 3075 else // not interpolating
b5c91ac6 3076 {
e26d5213 3077 for (int y = 0; y < rH; y++)
b5c91ac6 3078 {
e26d5213 3079 for (int x = 0; x < rW; x++)
7a632f10 3080 {
3fff3966 3081 wxRealPoint src = wxRotatePoint (x + x1a, y + y1a, cos_angle, -sin_angle, p0);
b5c91ac6 3082
3fff3966
VZ
3083 const int xs = wxRound (src.x); // wxRound rounds to the
3084 const int ys = wxRound (src.y); // closest integer
7a632f10 3085
e26d5213 3086 if (0 <= xs && xs < w && 0 <= ys && ys < h)
7a632f10 3087 {
b5c91ac6
GRG
3088 unsigned char *p = data[ys] + (3 * xs);
3089 *(dst++) = *(p++);
3090 *(dst++) = *(p++);
999836aa 3091 *(dst++) = *p;
b713f891 3092
6408deed 3093 if (has_alpha)
4e115ed2 3094 *(alpha_dst++) = *(alpha[ys] + (xs));
7a632f10
JS
3095 }
3096 else
3097 {
b5c91ac6
GRG
3098 *(dst++) = blank_r;
3099 *(dst++) = blank_g;
3100 *(dst++) = blank_b;
b713f891 3101
6408deed
RR
3102 if (has_alpha)
3103 *(alpha_dst++) = 255;
7a632f10
JS
3104 }
3105 }
3106 }
3107 }
3108
4aff28fc 3109 delete [] data;
e26d5213 3110 delete [] alpha;
4aff28fc 3111
7a632f10
JS
3112 return rotated;
3113}
c9d01afd 3114
ef8f37e0
VS
3115
3116
3117
3118
3119// A module to allow wxImage initialization/cleanup
3120// without calling these functions from app.cpp or from
3121// the user's application.
3122
3123class wxImageModule: public wxModule
3124{
3125DECLARE_DYNAMIC_CLASS(wxImageModule)
3126public:
3127 wxImageModule() {}
47b378bd
VS
3128 bool OnInit() { wxImage::InitStandardHandlers(); return true; }
3129 void OnExit() { wxImage::CleanUpHandlers(); }
ef8f37e0
VS
3130};
3131
3132IMPLEMENT_DYNAMIC_CLASS(wxImageModule, wxModule)
3133
3134
c96ea657 3135#endif // wxUSE_IMAGE