]> git.saurik.com Git - wxWidgets.git/blame - src/common/image.cpp
added (and documented) msw.xp-tab-ok option
[wxWidgets.git] / src / common / image.cpp
CommitLineData
01111366
RR
1/////////////////////////////////////////////////////////////////////////////
2// Name: image.cpp
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
14f355c2 10#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
01111366
RR
11#pragma implementation "image.h"
12#endif
13
0b4f9ee3
UU
14// For compilers that support precompilation, includes "wx.h".
15#include "wx/wxprec.h"
16
17#ifdef __BORLANDC__
edccf428 18 #pragma hdrstop
0b4f9ee3
UU
19#endif
20
c96ea657
VS
21#include "wx/defs.h"
22
23#if wxUSE_IMAGE
24
01111366 25#include "wx/image.h"
99c67c77 26#include "wx/bitmap.h"
01111366
RR
27#include "wx/debug.h"
28#include "wx/log.h"
f6fcbb63 29#include "wx/app.h"
dc86cb34 30#include "wx/filefn.h"
3d05544e 31#include "wx/wfstream.h"
b75867a6 32#include "wx/intl.h"
a91b47e8 33#include "wx/module.h"
ed39ff57 34#include "wx/hash.h"
d0ce3e52 35#include "wx/utils.h"
01111366 36
58a8ab88
JS
37// For memcpy
38#include <string.h>
7a632f10 39#include <math.h>
58a8ab88 40
a3ef5bf5 41#ifdef __SALFORDC__
edccf428 42 #undef FAR
a3ef5bf5
JS
43#endif
44
2432b92d 45
01111366
RR
46//-----------------------------------------------------------------------------
47// wxImage
48//-----------------------------------------------------------------------------
49
50class wxImageRefData: public wxObjectRefData
51{
fd0eed64 52public:
edccf428 53 wxImageRefData();
487659e0 54 virtual ~wxImageRefData();
c7abc967 55
dbda9e86
JS
56 int m_width;
57 int m_height;
58 unsigned char *m_data;
487659e0 59
dbda9e86
JS
60 bool m_hasMask;
61 unsigned char m_maskRed,m_maskGreen,m_maskBlue;
487659e0
VZ
62
63 // alpha channel data, may be NULL for the formats without alpha support
64 unsigned char *m_alpha;
65
dbda9e86 66 bool m_ok;
f6bcfd97 67 bool m_static;
487659e0 68
d275c7eb 69#if wxUSE_PALETTE
5e5437e0 70 wxPalette m_palette;
d275c7eb 71#endif // wxUSE_PALETTE
487659e0 72
5e5437e0
JS
73 wxArrayString m_optionNames;
74 wxArrayString m_optionValues;
22f3361e
VZ
75
76 DECLARE_NO_COPY_CLASS(wxImageRefData)
01111366
RR
77};
78
edccf428 79wxImageRefData::wxImageRefData()
01111366 80{
fd0eed64
RR
81 m_width = 0;
82 m_height = 0;
487659e0
VZ
83 m_data =
84 m_alpha = (unsigned char *) NULL;
85
fd0eed64
RR
86 m_maskRed = 0;
87 m_maskGreen = 0;
88 m_maskBlue = 0;
70cd62e9 89 m_hasMask = false;
487659e0 90
70cd62e9
VZ
91 m_ok = false;
92 m_static = false;
01111366
RR
93}
94
edccf428 95wxImageRefData::~wxImageRefData()
01111366 96{
487659e0 97 if ( !m_static )
58c837a4 98 free( m_data );
487659e0
VZ
99
100 free(m_alpha);
01111366
RR
101}
102
103wxList wxImage::sm_handlers;
104
fec19ea9
VS
105wxImage wxNullImage;
106
01111366
RR
107//-----------------------------------------------------------------------------
108
109#define M_IMGDATA ((wxImageRefData *)m_refData)
110
5e5437e0 111IMPLEMENT_DYNAMIC_CLASS(wxImage, wxObject)
01111366 112
ff865c13 113wxImage::wxImage( int width, int height, bool clear )
01111366 114{
ff865c13 115 Create( width, height, clear );
01111366
RR
116}
117
f6bcfd97
BP
118wxImage::wxImage( int width, int height, unsigned char* data, bool static_data )
119{
120 Create( width, height, data, static_data );
121}
122
60d43ad8 123wxImage::wxImage( const wxString& name, long type, int index )
01111366 124{
60d43ad8 125 LoadFile( name, type, index );
01111366
RR
126}
127
60d43ad8 128wxImage::wxImage( const wxString& name, const wxString& mimetype, int index )
9e9ee68e 129{
60d43ad8 130 LoadFile( name, mimetype, index );
9e9ee68e
VS
131}
132
e02afc7a 133#if wxUSE_STREAMS
60d43ad8 134wxImage::wxImage( wxInputStream& stream, long type, int index )
3d05544e 135{
60d43ad8 136 LoadFile( stream, type, index );
3d05544e 137}
9e9ee68e 138
60d43ad8 139wxImage::wxImage( wxInputStream& stream, const wxString& mimetype, int index )
9e9ee68e 140{
60d43ad8 141 LoadFile( stream, mimetype, index );
9e9ee68e 142}
e02afc7a 143#endif // wxUSE_STREAMS
3d05544e 144
4698648f 145wxImage::wxImage( const wxImage& image )
1b0674f7 146 : wxObject()
4698648f
VZ
147{
148 Ref(image);
01111366
RR
149}
150
4698648f
VZ
151wxImage::wxImage( const wxImage* image )
152{
153 if (image) Ref(*image);
01111366
RR
154}
155
aaa97828 156bool wxImage::Create( int width, int height, bool clear )
01111366 157{
aadaf841
GRG
158 UnRef();
159
fd0eed64 160 m_refData = new wxImageRefData();
c7abc967 161
fd0eed64 162 M_IMGDATA->m_data = (unsigned char *) malloc( width*height*3 );
aaa97828 163 if (!M_IMGDATA->m_data)
fd0eed64
RR
164 {
165 UnRef();
70cd62e9 166 return false;
fd0eed64 167 }
aaa97828
VZ
168
169 if (clear)
170 memset(M_IMGDATA->m_data, 0, width*height*3);
171
172 M_IMGDATA->m_width = width;
173 M_IMGDATA->m_height = height;
70cd62e9 174 M_IMGDATA->m_ok = true;
aaa97828 175
70cd62e9 176 return true;
01111366
RR
177}
178
aaa97828 179bool wxImage::Create( int width, int height, unsigned char* data, bool static_data )
f6bcfd97
BP
180{
181 UnRef();
182
70cd62e9 183 wxCHECK_MSG( data, false, _T("NULL data in wxImage::Create") );
aaa97828 184
f6bcfd97
BP
185 m_refData = new wxImageRefData();
186
187 M_IMGDATA->m_data = data;
aaa97828
VZ
188 M_IMGDATA->m_width = width;
189 M_IMGDATA->m_height = height;
70cd62e9 190 M_IMGDATA->m_ok = true;
aaa97828
VZ
191 M_IMGDATA->m_static = static_data;
192
70cd62e9 193 return true;
f6bcfd97
BP
194}
195
01111366
RR
196void wxImage::Destroy()
197{
fd0eed64 198 UnRef();
01111366
RR
199}
200
f6bcfd97
BP
201wxImage wxImage::Copy() const
202{
203 wxImage image;
204
205 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
206
ff865c13 207 image.Create( M_IMGDATA->m_width, M_IMGDATA->m_height, false );
f6bcfd97 208
487659e0 209 unsigned char *data = image.GetData();
f6bcfd97
BP
210
211 wxCHECK_MSG( data, image, wxT("unable to create image") );
212
fdbb06ba
RR
213 image.SetMaskColour( M_IMGDATA->m_maskRed, M_IMGDATA->m_maskGreen, M_IMGDATA->m_maskBlue );
214 image.SetMask( M_IMGDATA->m_hasMask );
f6bcfd97
BP
215
216 memcpy( data, GetData(), M_IMGDATA->m_width*M_IMGDATA->m_height*3 );
217
d8692f2b
VZ
218 // also copy the image options
219 wxImageRefData *imgData = (wxImageRefData *)image.m_refData;
220 imgData->m_optionNames = M_IMGDATA->m_optionNames;
221 imgData->m_optionValues = M_IMGDATA->m_optionValues;
222
f6bcfd97
BP
223 return image;
224}
225
fd9655ad
SC
226wxImage wxImage::ShrinkBy( int xFactor , int yFactor ) const
227{
228 if( xFactor == 1 && yFactor == 1 )
229 return Copy() ;
7beb59f3 230
fd9655ad
SC
231 wxImage image;
232
233 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
234
235 // can't scale to/from 0 size
236 wxCHECK_MSG( (xFactor > 0) && (yFactor > 0), image,
237 wxT("invalid new image size") );
238
239 long old_height = M_IMGDATA->m_height,
240 old_width = M_IMGDATA->m_width;
7beb59f3 241
fd9655ad
SC
242 wxCHECK_MSG( (old_height > 0) && (old_width > 0), image,
243 wxT("invalid old image size") );
244
245 long width = old_width / xFactor ;
246 long height = old_height / yFactor ;
247
ff865c13 248 image.Create( width, height, false );
fd9655ad
SC
249
250 char unsigned *data = image.GetData();
251
252 wxCHECK_MSG( data, image, wxT("unable to create image") );
253
254 bool hasMask = false ;
255 unsigned char maskRed = 0;
256 unsigned char maskGreen = 0;
257 unsigned char maskBlue =0 ;
258 if (M_IMGDATA->m_hasMask)
259 {
260 hasMask = true ;
261 maskRed = M_IMGDATA->m_maskRed;
262 maskGreen = M_IMGDATA->m_maskGreen;
263 maskBlue =M_IMGDATA->m_maskBlue ;
7beb59f3 264
fd9655ad
SC
265 image.SetMaskColour( M_IMGDATA->m_maskRed,
266 M_IMGDATA->m_maskGreen,
267 M_IMGDATA->m_maskBlue );
268 }
269 char unsigned *source_data = M_IMGDATA->m_data;
270 char unsigned *target_data = data;
7beb59f3 271
fd9655ad
SC
272 for (long y = 0; y < height; y++)
273 {
fd9655ad
SC
274 for (long x = 0; x < width; x++)
275 {
276 unsigned long avgRed = 0 ;
277 unsigned long avgGreen = 0;
278 unsigned long avgBlue = 0;
279 unsigned long counter = 0 ;
280 // determine average
281 for ( int y1 = 0 ; y1 < yFactor ; ++y1 )
282 {
283 long y_offset = (y * yFactor + y1) * old_width;
284 for ( int x1 = 0 ; x1 < xFactor ; ++x1 )
285 {
286 unsigned char *pixel = source_data + 3 * ( y_offset + x * xFactor + x1 ) ;
287 unsigned char red = pixel[0] ;
288 unsigned char green = pixel[1] ;
289 unsigned char blue = pixel[2] ;
290 if ( !hasMask || red != maskRed || green != maskGreen || blue != maskBlue )
291 {
292 avgRed += red ;
293 avgGreen += green ;
294 avgBlue += blue ;
295 counter++ ;
296 }
297 }
298 }
299 if ( counter == 0 )
300 {
301 *(target_data++) = M_IMGDATA->m_maskRed ;
302 *(target_data++) = M_IMGDATA->m_maskGreen ;
303 *(target_data++) = M_IMGDATA->m_maskBlue ;
304 }
305 else
306 {
646c4aeb
VZ
307 *(target_data++) = (unsigned char)(avgRed / counter);
308 *(target_data++) = (unsigned char)(avgGreen / counter);
309 *(target_data++) = (unsigned char)(avgBlue / counter);
fd9655ad
SC
310 }
311 }
312 }
313
314 // In case this is a cursor, make sure the hotspot is scalled accordingly:
315 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X) )
316 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X,
317 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X))/xFactor);
318 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y) )
319 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y,
320 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y))/yFactor);
321
322 return image;
323}
324
ce9a75d2 325wxImage wxImage::Scale( int width, int height ) const
4bc67cc5
RR
326{
327 wxImage image;
c7abc967 328
223d09f6 329 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
c7abc967 330
6721fc38
VZ
331 // can't scale to/from 0 size
332 wxCHECK_MSG( (width > 0) && (height > 0), image,
333 wxT("invalid new image size") );
334
335 long old_height = M_IMGDATA->m_height,
336 old_width = M_IMGDATA->m_width;
337 wxCHECK_MSG( (old_height > 0) && (old_width > 0), image,
338 wxT("invalid old image size") );
c7abc967 339
fd9655ad
SC
340 if ( old_width % width == 0 && old_width >= width &&
341 old_height % height == 0 && old_height >= height )
342 {
343 return ShrinkBy( old_width / width , old_height / height ) ;
344 }
ff865c13 345 image.Create( width, height, false );
c7abc967 346
487659e0 347 unsigned char *data = image.GetData();
c7abc967 348
223d09f6 349 wxCHECK_MSG( data, image, wxT("unable to create image") );
c7abc967 350
4bc67cc5 351 if (M_IMGDATA->m_hasMask)
6721fc38
VZ
352 {
353 image.SetMaskColour( M_IMGDATA->m_maskRed,
354 M_IMGDATA->m_maskGreen,
355 M_IMGDATA->m_maskBlue );
356 }
c7abc967 357
487659e0
VZ
358 unsigned char *source_data = M_IMGDATA->m_data;
359 unsigned char *target_data = data;
c7abc967 360
ff865c13
JS
361 long x_delta = (old_width<<16) / width;
362 long y_delta = (old_height<<16) / height;
c7abc967 363
ff865c13 364 unsigned char* dest_pixel = target_data;
6721fc38 365
ff865c13
JS
366 long y = 0;
367 for ( long j = 0; j < height; j++ )
368 {
369 unsigned char* src_line = &source_data[(y>>16)*old_width*3];
eeca3a46 370
ff865c13
JS
371 long x = 0;
372 for ( long i = 0; i < width; i++ )
eeca3a46 373 {
ff865c13
JS
374 unsigned char* src_pixel = &src_line[(x>>16)*3];
375 dest_pixel[0] = src_pixel[0];
376 dest_pixel[1] = src_pixel[1];
377 dest_pixel[2] = src_pixel[2];
378 dest_pixel += 3;
379 x += x_delta;
eeca3a46 380 }
ff865c13
JS
381
382 y += y_delta;
eeca3a46 383 }
36aac195 384
fd94e8aa
VS
385 // In case this is a cursor, make sure the hotspot is scalled accordingly:
386 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X) )
387 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X,
388 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X)*width)/old_width);
389 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y) )
390 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y,
391 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y)*height)/old_height);
c7abc967 392
4bc67cc5
RR
393 return image;
394}
4698648f 395
f6bcfd97
BP
396wxImage wxImage::Rotate90( bool clockwise ) const
397{
398 wxImage image;
399
400 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
401
ff865c13 402 image.Create( M_IMGDATA->m_height, M_IMGDATA->m_width, false );
f6bcfd97 403
487659e0 404 unsigned char *data = image.GetData();
f6bcfd97
BP
405
406 wxCHECK_MSG( data, image, wxT("unable to create image") );
407
408 if (M_IMGDATA->m_hasMask)
409 image.SetMaskColour( M_IMGDATA->m_maskRed, M_IMGDATA->m_maskGreen, M_IMGDATA->m_maskBlue );
410
411 long height = M_IMGDATA->m_height;
412 long width = M_IMGDATA->m_width;
413
487659e0
VZ
414 unsigned char *source_data = M_IMGDATA->m_data;
415 unsigned char *target_data;
f6bcfd97
BP
416
417 for (long j = 0; j < height; j++)
418 {
419 for (long i = 0; i < width; i++)
420 {
421 if (clockwise)
422 target_data = data + (((i+1)*height) - j - 1)*3;
423 else
424 target_data = data + ((height*(width-1)) + j - (i*height))*3;
425 memcpy( target_data, source_data, 3 );
426 source_data += 3;
427 }
428 }
429
430 return image;
431}
432
433wxImage wxImage::Mirror( bool horizontally ) const
434{
435 wxImage image;
436
437 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
438
ff865c13 439 image.Create( M_IMGDATA->m_width, M_IMGDATA->m_height, false );
f6bcfd97 440
487659e0 441 unsigned char *data = image.GetData();
f6bcfd97
BP
442
443 wxCHECK_MSG( data, image, wxT("unable to create image") );
444
445 if (M_IMGDATA->m_hasMask)
446 image.SetMaskColour( M_IMGDATA->m_maskRed, M_IMGDATA->m_maskGreen, M_IMGDATA->m_maskBlue );
447
448 long height = M_IMGDATA->m_height;
449 long width = M_IMGDATA->m_width;
450
487659e0
VZ
451 unsigned char *source_data = M_IMGDATA->m_data;
452 unsigned char *target_data;
f6bcfd97
BP
453
454 if (horizontally)
455 {
456 for (long j = 0; j < height; j++)
457 {
458 data += width*3;
459 target_data = data-3;
460 for (long i = 0; i < width; i++)
461 {
462 memcpy( target_data, source_data, 3 );
463 source_data += 3;
464 target_data -= 3;
465 }
466 }
467 }
468 else
469 {
470 for (long i = 0; i < height; i++)
471 {
472 target_data = data + 3*width*(height-1-i);
3ca6a5f0 473 memcpy( target_data, source_data, (size_t)3*width );
f6bcfd97
BP
474 source_data += 3*width;
475 }
476 }
477
478 return image;
479}
480
7b2471a0
SB
481wxImage wxImage::GetSubImage( const wxRect &rect ) const
482{
483 wxImage image;
484
223d09f6 485 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
7b2471a0 486
58c837a4
RR
487 wxCHECK_MSG( (rect.GetLeft()>=0) && (rect.GetTop()>=0) && (rect.GetRight()<=GetWidth()) && (rect.GetBottom()<=GetHeight()),
488 image, wxT("invalid subimage size") );
7b2471a0
SB
489
490 int subwidth=rect.GetWidth();
491 const int subheight=rect.GetHeight();
492
ff865c13 493 image.Create( subwidth, subheight, false );
7b2471a0 494
487659e0 495 unsigned char *subdata = image.GetData(), *data=GetData();
7b2471a0 496
223d09f6 497 wxCHECK_MSG( subdata, image, wxT("unable to create image") );
7b2471a0
SB
498
499 if (M_IMGDATA->m_hasMask)
500 image.SetMaskColour( M_IMGDATA->m_maskRed, M_IMGDATA->m_maskGreen, M_IMGDATA->m_maskBlue );
501
502 const int subleft=3*rect.GetLeft();
503 const int width=3*GetWidth();
504 subwidth*=3;
995612e2 505
7b2471a0
SB
506 data+=rect.GetTop()*width+subleft;
507
508 for (long j = 0; j < subheight; ++j)
509 {
510 memcpy( subdata, data, subwidth);
511 subdata+=subwidth;
995612e2 512 data+=width;
7b2471a0
SB
513 }
514
515 return image;
516}
517
f6bcfd97
BP
518void wxImage::Paste( const wxImage &image, int x, int y )
519{
520 wxCHECK_RET( Ok(), wxT("invalid image") );
521 wxCHECK_RET( image.Ok(), wxT("invalid image") );
522
523 int xx = 0;
524 int yy = 0;
525 int width = image.GetWidth();
526 int height = image.GetHeight();
527
528 if (x < 0)
529 {
530 xx = -x;
531 width += x;
532 }
533 if (y < 0)
534 {
535 yy = -y;
536 height += y;
537 }
538
539 if ((x+xx)+width > M_IMGDATA->m_width)
540 width = M_IMGDATA->m_width - (x+xx);
541 if ((y+yy)+height > M_IMGDATA->m_height)
542 height = M_IMGDATA->m_height - (y+yy);
543
544 if (width < 1) return;
545 if (height < 1) return;
546
547 if ((!HasMask() && !image.HasMask()) ||
548 ((HasMask() && image.HasMask() &&
549 (GetMaskRed()==image.GetMaskRed()) &&
550 (GetMaskGreen()==image.GetMaskGreen()) &&
551 (GetMaskBlue()==image.GetMaskBlue()))))
552 {
553 width *= 3;
554 unsigned char* source_data = image.GetData() + xx*3 + yy*3*image.GetWidth();
555 int source_step = image.GetWidth()*3;
556
557 unsigned char* target_data = GetData() + (x+xx)*3 + (y+yy)*3*M_IMGDATA->m_width;
558 int target_step = M_IMGDATA->m_width*3;
559 for (int j = 0; j < height; j++)
560 {
561 memcpy( target_data, source_data, width );
562 source_data += source_step;
563 target_data += target_step;
564 }
aa21b509 565 return;
f6bcfd97 566 }
33ac7e6f 567
aa21b509 568 if (!HasMask() && image.HasMask())
f6bcfd97 569 {
aa21b509
RR
570 unsigned char r = image.GetMaskRed();
571 unsigned char g = image.GetMaskGreen();
572 unsigned char b = image.GetMaskBlue();
33ac7e6f 573
aa21b509
RR
574 width *= 3;
575 unsigned char* source_data = image.GetData() + xx*3 + yy*3*image.GetWidth();
576 int source_step = image.GetWidth()*3;
577
578 unsigned char* target_data = GetData() + (x+xx)*3 + (y+yy)*3*M_IMGDATA->m_width;
579 int target_step = M_IMGDATA->m_width*3;
33ac7e6f 580
aa21b509
RR
581 for (int j = 0; j < height; j++)
582 {
583 for (int i = 0; i < width; i+=3)
584 {
33ac7e6f
KB
585 if ((source_data[i] != r) &&
586 (source_data[i+1] != g) &&
aa21b509
RR
587 (source_data[i+2] != b))
588 {
589 memcpy( target_data+i, source_data+i, 3 );
590 }
33ac7e6f 591 }
aa21b509
RR
592 source_data += source_step;
593 target_data += target_step;
594 }
f6bcfd97
BP
595 }
596}
597
be25e480
RR
598void wxImage::Replace( unsigned char r1, unsigned char g1, unsigned char b1,
599 unsigned char r2, unsigned char g2, unsigned char b2 )
600{
601 wxCHECK_RET( Ok(), wxT("invalid image") );
602
487659e0 603 unsigned char *data = GetData();
06b466c7 604
be25e480
RR
605 const int w = GetWidth();
606 const int h = GetHeight();
607
608 for (int j = 0; j < h; j++)
609 for (int i = 0; i < w; i++)
069d0f27
VZ
610 {
611 if ((data[0] == r1) && (data[1] == g1) && (data[2] == b1))
612 {
613 data[0] = r2;
614 data[1] = g2;
615 data[2] = b2;
616 }
617 data += 3;
618 }
be25e480
RR
619}
620
f515c25a 621wxImage wxImage::ConvertToMono( unsigned char r, unsigned char g, unsigned char b ) const
fec19ea9
VS
622{
623 wxImage image;
624
625 wxCHECK_MSG( Ok(), image, wxT("invalid image") );
626
ff865c13 627 image.Create( M_IMGDATA->m_width, M_IMGDATA->m_height, false );
fec19ea9 628
487659e0 629 unsigned char *data = image.GetData();
fec19ea9
VS
630
631 wxCHECK_MSG( data, image, wxT("unable to create image") );
632
633 if (M_IMGDATA->m_hasMask)
634 {
635 if (M_IMGDATA->m_maskRed == r && M_IMGDATA->m_maskGreen == g &&
636 M_IMGDATA->m_maskBlue == b)
637 image.SetMaskColour( 255, 255, 255 );
638 else
639 image.SetMaskColour( 0, 0, 0 );
640 }
641
642 long size = M_IMGDATA->m_height * M_IMGDATA->m_width;
643
487659e0
VZ
644 unsigned char *srcd = M_IMGDATA->m_data;
645 unsigned char *tard = image.GetData();
fec19ea9
VS
646
647 for ( long i = 0; i < size; i++, srcd += 3, tard += 3 )
648 {
649 if (srcd[0] == r && srcd[1] == g && srcd[2] == b)
650 tard[0] = tard[1] = tard[2] = 255;
651 else
652 tard[0] = tard[1] = tard[2] = 0;
653 }
654
655 return image;
656}
657
ef539066
RR
658void wxImage::SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b )
659{
223d09f6 660 wxCHECK_RET( Ok(), wxT("invalid image") );
c7abc967 661
ef539066
RR
662 int w = M_IMGDATA->m_width;
663 int h = M_IMGDATA->m_height;
c7abc967 664
223d09f6 665 wxCHECK_RET( (x>=0) && (y>=0) && (x<w) && (y<h), wxT("invalid image index") );
c7abc967 666
ef539066 667 long pos = (y * w + x) * 3;
c7abc967 668
ef539066
RR
669 M_IMGDATA->m_data[ pos ] = r;
670 M_IMGDATA->m_data[ pos+1 ] = g;
671 M_IMGDATA->m_data[ pos+2 ] = b;
672}
673
f6bcfd97 674unsigned char wxImage::GetRed( int x, int y ) const
ef539066 675{
223d09f6 676 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 677
ef539066
RR
678 int w = M_IMGDATA->m_width;
679 int h = M_IMGDATA->m_height;
c7abc967 680
223d09f6 681 wxCHECK_MSG( (x>=0) && (y>=0) && (x<w) && (y<h), 0, wxT("invalid image index") );
c7abc967 682
ef539066 683 long pos = (y * w + x) * 3;
c7abc967 684
ef539066
RR
685 return M_IMGDATA->m_data[pos];
686}
687
f6bcfd97 688unsigned char wxImage::GetGreen( int x, int y ) const
ef539066 689{
223d09f6 690 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 691
ef539066
RR
692 int w = M_IMGDATA->m_width;
693 int h = M_IMGDATA->m_height;
c7abc967 694
223d09f6 695 wxCHECK_MSG( (x>=0) && (y>=0) && (x<w) && (y<h), 0, wxT("invalid image index") );
c7abc967 696
ef539066 697 long pos = (y * w + x) * 3;
c7abc967 698
ef539066
RR
699 return M_IMGDATA->m_data[pos+1];
700}
701
f6bcfd97 702unsigned char wxImage::GetBlue( int x, int y ) const
ef539066 703{
223d09f6 704 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 705
ef539066
RR
706 int w = M_IMGDATA->m_width;
707 int h = M_IMGDATA->m_height;
c7abc967 708
223d09f6 709 wxCHECK_MSG( (x>=0) && (y>=0) && (x<w) && (y<h), 0, wxT("invalid image index") );
c7abc967 710
ef539066 711 long pos = (y * w + x) * 3;
c7abc967 712
ef539066
RR
713 return M_IMGDATA->m_data[pos+2];
714}
4698648f
VZ
715
716bool wxImage::Ok() const
717{
de8c48cf
VZ
718 // image of 0 width or height can't be considered ok - at least because it
719 // causes crashes in ConvertToBitmap() if we don't catch it in time
720 wxImageRefData *data = M_IMGDATA;
721 return data && data->m_ok && data->m_width && data->m_height;
01111366
RR
722}
723
487659e0 724unsigned char *wxImage::GetData() const
01111366 725{
487659e0 726 wxCHECK_MSG( Ok(), (unsigned char *)NULL, wxT("invalid image") );
c7abc967 727
fd0eed64 728 return M_IMGDATA->m_data;
01111366
RR
729}
730
487659e0 731void wxImage::SetData( unsigned char *data )
01111366 732{
223d09f6 733 wxCHECK_RET( Ok(), wxT("invalid image") );
58a8ab88 734
ed58dbea
RR
735 wxImageRefData *newRefData = new wxImageRefData();
736
737 newRefData->m_width = M_IMGDATA->m_width;
738 newRefData->m_height = M_IMGDATA->m_height;
739 newRefData->m_data = data;
70cd62e9 740 newRefData->m_ok = true;
ed58dbea
RR
741 newRefData->m_maskRed = M_IMGDATA->m_maskRed;
742 newRefData->m_maskGreen = M_IMGDATA->m_maskGreen;
743 newRefData->m_maskBlue = M_IMGDATA->m_maskBlue;
744 newRefData->m_hasMask = M_IMGDATA->m_hasMask;
995612e2 745
ed58dbea 746 UnRef();
995612e2 747
ed58dbea 748 m_refData = newRefData;
01111366
RR
749}
750
487659e0 751void wxImage::SetData( unsigned char *data, int new_width, int new_height )
f6bcfd97
BP
752{
753 wxImageRefData *newRefData = new wxImageRefData();
754
755 if (m_refData)
756 {
757 newRefData->m_width = new_width;
758 newRefData->m_height = new_height;
759 newRefData->m_data = data;
70cd62e9 760 newRefData->m_ok = true;
f6bcfd97
BP
761 newRefData->m_maskRed = M_IMGDATA->m_maskRed;
762 newRefData->m_maskGreen = M_IMGDATA->m_maskGreen;
763 newRefData->m_maskBlue = M_IMGDATA->m_maskBlue;
764 newRefData->m_hasMask = M_IMGDATA->m_hasMask;
765 }
766 else
767 {
768 newRefData->m_width = new_width;
769 newRefData->m_height = new_height;
770 newRefData->m_data = data;
70cd62e9 771 newRefData->m_ok = true;
f6bcfd97
BP
772 }
773
774 UnRef();
775
776 m_refData = newRefData;
777}
778
487659e0
VZ
779// ----------------------------------------------------------------------------
780// alpha channel support
781// ----------------------------------------------------------------------------
782
783void wxImage::SetAlpha(int x, int y, unsigned char alpha)
784{
785 wxCHECK_RET( Ok() && HasAlpha(), wxT("invalid image or no alpha channel") );
786
787 int w = M_IMGDATA->m_width,
788 h = M_IMGDATA->m_height;
789
790 wxCHECK_RET( x >=0 && y >= 0 && x < w && y < h, wxT("invalid image index") );
791
792 M_IMGDATA->m_alpha[y*w + x] = alpha;
793}
794
d30ee785 795unsigned char wxImage::GetAlpha(int x, int y) const
487659e0
VZ
796{
797 wxCHECK_MSG( Ok() && HasAlpha(), 0, wxT("invalid image or no alpha channel") );
798
799 int w = M_IMGDATA->m_width,
800 h = M_IMGDATA->m_height;
801
802 wxCHECK_MSG( x >=0 && y >= 0 && x < w && y < h, 0, wxT("invalid image index") );
803
804 return M_IMGDATA->m_alpha[y*w + x];
805}
806
6408deed
RR
807bool wxImage::ConvertColourToAlpha( unsigned char r, unsigned char g, unsigned char b )
808{
809 SetAlpha( NULL );
810
811 int w = M_IMGDATA->m_width,
812 h = M_IMGDATA->m_height;
813
814 unsigned char *alpha = GetAlpha();
815 unsigned char *data = GetData();
816
817 int x,y;
818 for (y = 0; y < h; y++)
819 for (x = 0; x < w; x++)
820 {
821 *alpha = *data;
822 alpha++;
823 *data = r;
824 data++;
825 *data = g;
826 data++;
827 *data = b;
828 data++;
829 }
830
831 return true;
832}
833
487659e0
VZ
834void wxImage::SetAlpha( unsigned char *alpha )
835{
836 wxCHECK_RET( Ok(), wxT("invalid image") );
837
838 if ( !alpha )
839 {
edf8e8e0 840 alpha = (unsigned char *)malloc(M_IMGDATA->m_width*M_IMGDATA->m_height);
487659e0
VZ
841 }
842
5402d21d 843 free(M_IMGDATA->m_alpha);
487659e0
VZ
844 M_IMGDATA->m_alpha = alpha;
845}
846
847unsigned char *wxImage::GetAlpha() const
848{
849 wxCHECK_MSG( Ok(), (unsigned char *)NULL, wxT("invalid image") );
850
851 return M_IMGDATA->m_alpha;
852}
853
854// ----------------------------------------------------------------------------
855// mask support
856// ----------------------------------------------------------------------------
857
01111366
RR
858void wxImage::SetMaskColour( unsigned char r, unsigned char g, unsigned char b )
859{
223d09f6 860 wxCHECK_RET( Ok(), wxT("invalid image") );
c7abc967 861
fd0eed64
RR
862 M_IMGDATA->m_maskRed = r;
863 M_IMGDATA->m_maskGreen = g;
864 M_IMGDATA->m_maskBlue = b;
70cd62e9 865 M_IMGDATA->m_hasMask = true;
01111366
RR
866}
867
868unsigned char wxImage::GetMaskRed() const
869{
223d09f6 870 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 871
fd0eed64 872 return M_IMGDATA->m_maskRed;
01111366
RR
873}
874
875unsigned char wxImage::GetMaskGreen() const
876{
223d09f6 877 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 878
fd0eed64 879 return M_IMGDATA->m_maskGreen;
01111366
RR
880}
881
882unsigned char wxImage::GetMaskBlue() const
883{
223d09f6 884 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 885
fd0eed64 886 return M_IMGDATA->m_maskBlue;
01111366 887}
4698648f 888
01111366
RR
889void wxImage::SetMask( bool mask )
890{
223d09f6 891 wxCHECK_RET( Ok(), wxT("invalid image") );
c7abc967 892
fd0eed64 893 M_IMGDATA->m_hasMask = mask;
01111366
RR
894}
895
896bool wxImage::HasMask() const
897{
70cd62e9 898 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
c7abc967 899
fd0eed64 900 return M_IMGDATA->m_hasMask;
01111366
RR
901}
902
4698648f
VZ
903int wxImage::GetWidth() const
904{
223d09f6 905 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 906
4698648f 907 return M_IMGDATA->m_width;
01111366
RR
908}
909
4698648f
VZ
910int wxImage::GetHeight() const
911{
223d09f6 912 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
c7abc967 913
4698648f 914 return M_IMGDATA->m_height;
01111366
RR
915}
916
487659e0 917bool wxImage::SetMaskFromImage(const wxImage& mask,
1f5b2017 918 unsigned char mr, unsigned char mg, unsigned char mb)
52b64b0a 919{
52b64b0a
RR
920 // check that the images are the same size
921 if ( (M_IMGDATA->m_height != mask.GetHeight() ) || (M_IMGDATA->m_width != mask.GetWidth () ) )
922 {
bc88f66f 923 wxLogError( _("Image and mask have different sizes.") );
70cd62e9 924 return false;
52b64b0a 925 }
487659e0 926
52b64b0a
RR
927 // find unused colour
928 unsigned char r,g,b ;
1f5b2017 929 if (!FindFirstUnusedColour(&r, &g, &b))
52b64b0a 930 {
bc88f66f 931 wxLogError( _("No unused colour in image being masked.") );
70cd62e9 932 return false ;
52b64b0a 933 }
487659e0
VZ
934
935 unsigned char *imgdata = GetData();
936 unsigned char *maskdata = mask.GetData();
52b64b0a
RR
937
938 const int w = GetWidth();
939 const int h = GetHeight();
940
941 for (int j = 0; j < h; j++)
1f5b2017 942 {
52b64b0a
RR
943 for (int i = 0; i < w; i++)
944 {
1f5b2017 945 if ((maskdata[0] == mr) && (maskdata[1] == mg) && (maskdata[2] == mb))
52b64b0a
RR
946 {
947 imgdata[0] = r;
948 imgdata[1] = g;
949 imgdata[2] = b;
950 }
951 imgdata += 3;
952 maskdata += 3;
953 }
1f5b2017 954 }
52b64b0a 955
1f5b2017 956 SetMaskColour(r, g, b);
70cd62e9 957 SetMask(true);
487659e0 958
70cd62e9 959 return true;
52b64b0a 960}
7beb59f3 961
8f2b21e4 962bool wxImage::ConvertAlphaToMask(unsigned char threshold)
ff5ad794
VS
963{
964 if (!HasAlpha())
965 return true;
966
967 unsigned char mr, mg, mb;
968 if (!FindFirstUnusedColour(&mr, &mg, &mb))
969 {
970 wxLogError( _("No unused colour in image being masked.") );
971 return false;
972 }
94406a49 973
ff5ad794
VS
974 SetMask(true);
975 SetMaskColour(mr, mg, mb);
94406a49 976
ff5ad794
VS
977 unsigned char *imgdata = GetData();
978 unsigned char *alphadata = GetAlpha();
979
8f2b21e4
VS
980 int w = GetWidth();
981 int h = GetHeight();
ff5ad794 982
8f2b21e4 983 for (int y = 0; y < h; y++)
ff5ad794 984 {
8f2b21e4 985 for (int x = 0; x < w; x++, imgdata += 3, alphadata++)
ff5ad794 986 {
e95f0d79 987 if (*alphadata < threshold)
ff5ad794
VS
988 {
989 imgdata[0] = mr;
990 imgdata[1] = mg;
991 imgdata[2] = mb;
992 }
993 }
994 }
995
996 free(M_IMGDATA->m_alpha);
997 M_IMGDATA->m_alpha = NULL;
94406a49
DS
998
999 return true;
ff5ad794 1000}
52b64b0a 1001
d275c7eb
VZ
1002#if wxUSE_PALETTE
1003
5e5437e0
JS
1004// Palette functions
1005
1006bool wxImage::HasPalette() const
1007{
1008 if (!Ok())
70cd62e9 1009 return false;
5e5437e0
JS
1010
1011 return M_IMGDATA->m_palette.Ok();
1012}
1013
1014const wxPalette& wxImage::GetPalette() const
1015{
1016 wxCHECK_MSG( Ok(), wxNullPalette, wxT("invalid image") );
1017
1018 return M_IMGDATA->m_palette;
1019}
1020
1021void wxImage::SetPalette(const wxPalette& palette)
1022{
1023 wxCHECK_RET( Ok(), wxT("invalid image") );
1024
1025 M_IMGDATA->m_palette = palette;
1026}
1027
d275c7eb
VZ
1028#endif // wxUSE_PALETTE
1029
5e5437e0
JS
1030// Option functions (arbitrary name/value mapping)
1031void wxImage::SetOption(const wxString& name, const wxString& value)
1032{
1033 wxCHECK_RET( Ok(), wxT("invalid image") );
1034
70cd62e9 1035 int idx = M_IMGDATA->m_optionNames.Index(name, false);
5e5437e0
JS
1036 if (idx == wxNOT_FOUND)
1037 {
1038 M_IMGDATA->m_optionNames.Add(name);
1039 M_IMGDATA->m_optionValues.Add(value);
1040 }
1041 else
1042 {
1043 M_IMGDATA->m_optionNames[idx] = name;
1044 M_IMGDATA->m_optionValues[idx] = value;
1045 }
1046}
1047
1048void wxImage::SetOption(const wxString& name, int value)
1049{
1050 wxString valStr;
1051 valStr.Printf(wxT("%d"), value);
1052 SetOption(name, valStr);
1053}
1054
1055wxString wxImage::GetOption(const wxString& name) const
1056{
1057 wxCHECK_MSG( Ok(), wxEmptyString, wxT("invalid image") );
1058
70cd62e9 1059 int idx = M_IMGDATA->m_optionNames.Index(name, false);
5e5437e0
JS
1060 if (idx == wxNOT_FOUND)
1061 return wxEmptyString;
1062 else
1063 return M_IMGDATA->m_optionValues[idx];
1064}
1065
1066int wxImage::GetOptionInt(const wxString& name) const
1067{
1068 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
1069
1070 return wxAtoi(GetOption(name));
1071}
1072
1073bool wxImage::HasOption(const wxString& name) const
1074{
70cd62e9 1075 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
5e5437e0 1076
70cd62e9 1077 return (M_IMGDATA->m_optionNames.Index(name, false) != wxNOT_FOUND);
5e5437e0
JS
1078}
1079
60d43ad8 1080bool wxImage::LoadFile( const wxString& filename, long type, int index )
01111366 1081{
e02afc7a 1082#if wxUSE_STREAMS
d80207c3 1083 if (wxFileExists(filename))
6c28fd33 1084 {
d80207c3
KB
1085 wxFileInputStream stream(filename);
1086 wxBufferedInputStream bstream( stream );
60d43ad8 1087 return LoadFile(bstream, type, index);
6c28fd33 1088 }
d80207c3 1089 else
6c28fd33 1090 {
d80207c3
KB
1091 wxLogError( _("Can't load image from file '%s': file does not exist."), filename.c_str() );
1092
70cd62e9 1093 return false;
6c28fd33 1094 }
9e9ee68e 1095#else // !wxUSE_STREAMS
70cd62e9 1096 return false;
9e9ee68e
VS
1097#endif // wxUSE_STREAMS
1098}
1099
60d43ad8 1100bool wxImage::LoadFile( const wxString& filename, const wxString& mimetype, int index )
9e9ee68e
VS
1101{
1102#if wxUSE_STREAMS
d80207c3 1103 if (wxFileExists(filename))
6c28fd33 1104 {
d80207c3
KB
1105 wxFileInputStream stream(filename);
1106 wxBufferedInputStream bstream( stream );
60d43ad8 1107 return LoadFile(bstream, mimetype, index);
6c28fd33 1108 }
d80207c3 1109 else
6c28fd33 1110 {
d80207c3
KB
1111 wxLogError( _("Can't load image from file '%s': file does not exist."), filename.c_str() );
1112
70cd62e9 1113 return false;
6c28fd33 1114 }
e02afc7a 1115#else // !wxUSE_STREAMS
70cd62e9 1116 return false;
e02afc7a 1117#endif // wxUSE_STREAMS
1ccbb61a
VZ
1118}
1119
45647dcf
VS
1120
1121
1122bool wxImage::SaveFile( const wxString& filename ) const
1123{
1124 wxString ext = filename.AfterLast('.').Lower();
487659e0 1125
45647dcf
VS
1126 wxImageHandler * pHandler = FindHandler(ext, -1);
1127 if (pHandler)
1128 {
1129 SaveFile(filename, pHandler->GetType());
70cd62e9 1130 return true;
45647dcf
VS
1131 }
1132
1133 wxLogError(_("Can't save image to file '%s': unknown extension."), filename.c_str());
1134
70cd62e9 1135 return false;
45647dcf
VS
1136}
1137
e0a76d8d 1138bool wxImage::SaveFile( const wxString& filename, int type ) const
1ccbb61a 1139{
e02afc7a 1140#if wxUSE_STREAMS
36aac195 1141 ((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
fd94e8aa 1142
1ccbb61a 1143 wxFileOutputStream stream(filename);
9e9ee68e 1144
2b5f62a0 1145 if ( stream.IsOk() )
1b055864 1146 {
069d0f27 1147 wxBufferedOutputStream bstream( stream );
1b055864
RR
1148 return SaveFile(bstream, type);
1149 }
e02afc7a 1150#endif // wxUSE_STREAMS
3ca6a5f0 1151
70cd62e9 1152 return false;
3d05544e 1153}
01111366 1154
e0a76d8d 1155bool wxImage::SaveFile( const wxString& filename, const wxString& mimetype ) const
9e9ee68e
VS
1156{
1157#if wxUSE_STREAMS
36aac195 1158 ((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
fd94e8aa 1159
9e9ee68e 1160 wxFileOutputStream stream(filename);
c7abc967 1161
2b5f62a0 1162 if ( stream.IsOk() )
1b055864 1163 {
069d0f27 1164 wxBufferedOutputStream bstream( stream );
1b055864
RR
1165 return SaveFile(bstream, mimetype);
1166 }
9e9ee68e 1167#endif // wxUSE_STREAMS
3ca6a5f0 1168
70cd62e9 1169 return false;
9e9ee68e
VS
1170}
1171
87202f78
SB
1172bool wxImage::CanRead( const wxString &name )
1173{
1174#if wxUSE_STREAMS
1175 wxFileInputStream stream(name);
1176 return CanRead(stream);
1177#else
70cd62e9 1178 return false;
87202f78
SB
1179#endif
1180}
1181
649d13e8 1182int wxImage::GetImageCount( const wxString &name, long type )
60d43ad8
VS
1183{
1184#if wxUSE_STREAMS
1185 wxFileInputStream stream(name);
2c0a4e08 1186 if (stream.Ok())
08811762 1187 return GetImageCount(stream, type);
60d43ad8 1188#endif
2c0a4e08
VZ
1189
1190 return 0;
60d43ad8
VS
1191}
1192
e02afc7a 1193#if wxUSE_STREAMS
deb2fec0 1194
87202f78
SB
1195bool wxImage::CanRead( wxInputStream &stream )
1196{
79fa2374 1197 const wxList& list = GetHandlers();
004fd0c8 1198
222ed1d6 1199 for ( wxList::compatibility_iterator node = list.GetFirst(); node; node = node->GetNext() )
004fd0c8 1200 {
60d43ad8
VS
1201 wxImageHandler *handler=(wxImageHandler*)node->GetData();
1202 if (handler->CanRead( stream ))
70cd62e9 1203 return true;
87202f78
SB
1204 }
1205
70cd62e9 1206 return false;
60d43ad8
VS
1207}
1208
649d13e8 1209int wxImage::GetImageCount( wxInputStream &stream, long type )
60d43ad8
VS
1210{
1211 wxImageHandler *handler;
1212
1213 if ( type == wxBITMAP_TYPE_ANY )
1214 {
1215 wxList &list=GetHandlers();
1216
222ed1d6 1217 for (wxList::compatibility_iterator node = list.GetFirst(); node; node = node->GetNext())
60d43ad8
VS
1218 {
1219 handler=(wxImageHandler*)node->GetData();
1220 if ( handler->CanRead(stream) )
649d13e8 1221 return handler->GetImageCount(stream);
60d43ad8
VS
1222
1223 }
1224
1225 wxLogWarning(_("No handler found for image type."));
1226 return 0;
1227 }
1228
1229 handler = FindHandler(type);
1230
1231 if ( !handler )
1232 {
1233 wxLogWarning(_("No image handler for type %d defined."), type);
70cd62e9 1234 return false;
60d43ad8
VS
1235 }
1236
1237 if ( handler->CanRead(stream) )
1238 {
649d13e8 1239 return handler->GetImageCount(stream);
60d43ad8
VS
1240 }
1241 else
1242 {
1243 wxLogError(_("Image file is not of type %d."), type);
1244 return 0;
1245 }
87202f78
SB
1246}
1247
60d43ad8 1248bool wxImage::LoadFile( wxInputStream& stream, long type, int index )
3d05544e
JS
1249{
1250 UnRef();
c7abc967 1251
fd0eed64 1252 m_refData = new wxImageRefData;
c7abc967 1253
deb2fec0
SB
1254 wxImageHandler *handler;
1255
60d43ad8 1256 if ( type == wxBITMAP_TYPE_ANY )
deb2fec0 1257 {
995612e2 1258 wxList &list=GetHandlers();
deb2fec0 1259
222ed1d6 1260 for ( wxList::compatibility_iterator node = list.GetFirst(); node; node = node->GetNext() )
995612e2
VZ
1261 {
1262 handler=(wxImageHandler*)node->GetData();
60d43ad8 1263 if ( handler->CanRead(stream) )
70cd62e9 1264 return handler->LoadFile(this, stream, true/*verbose*/, index);
7b2471a0 1265
995612e2 1266 }
deb2fec0 1267
58c837a4 1268 wxLogWarning( _("No handler found for image type.") );
70cd62e9 1269 return false;
deb2fec0
SB
1270 }
1271
1272 handler = FindHandler(type);
c7abc967 1273
2b5f62a0 1274 if (handler == 0)
fd0eed64 1275 {
58c837a4 1276 wxLogWarning( _("No image handler for type %d defined."), type );
c7abc967 1277
70cd62e9 1278 return false;
fd0eed64 1279 }
c7abc967 1280
70cd62e9 1281 return handler->LoadFile(this, stream, true/*verbose*/, index);
01111366
RR
1282}
1283
60d43ad8 1284bool wxImage::LoadFile( wxInputStream& stream, const wxString& mimetype, int index )
9e9ee68e
VS
1285{
1286 UnRef();
1287
1288 m_refData = new wxImageRefData;
1289
1290 wxImageHandler *handler = FindHandlerMime(mimetype);
1291
2b5f62a0 1292 if (handler == 0)
9e9ee68e 1293 {
58c837a4 1294 wxLogWarning( _("No image handler for type %s defined."), mimetype.GetData() );
9e9ee68e 1295
70cd62e9 1296 return false;
9e9ee68e
VS
1297 }
1298
70cd62e9 1299 return handler->LoadFile( this, stream, true/*verbose*/, index );
9e9ee68e
VS
1300}
1301
e0a76d8d 1302bool wxImage::SaveFile( wxOutputStream& stream, int type ) const
01111366 1303{
70cd62e9 1304 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
c7abc967 1305
fd0eed64 1306 wxImageHandler *handler = FindHandler(type);
c7abc967 1307
2b5f62a0 1308 if (handler == 0)
fd0eed64 1309 {
58c837a4 1310 wxLogWarning( _("No image handler for type %d defined."), type );
9e9ee68e 1311
70cd62e9 1312 return false;
9e9ee68e
VS
1313 }
1314
e0a76d8d 1315 return handler->SaveFile( (wxImage*)this, stream );
9e9ee68e
VS
1316}
1317
e0a76d8d 1318bool wxImage::SaveFile( wxOutputStream& stream, const wxString& mimetype ) const
9e9ee68e 1319{
70cd62e9 1320 wxCHECK_MSG( Ok(), false, wxT("invalid image") );
c7abc967 1321
9e9ee68e 1322 wxImageHandler *handler = FindHandlerMime(mimetype);
c7abc967 1323
2b5f62a0 1324 if (handler == 0)
9e9ee68e 1325 {
58c837a4 1326 wxLogWarning( _("No image handler for type %s defined."), mimetype.GetData() );
c7abc967 1327
70cd62e9 1328 return false;
fd0eed64 1329 }
c7abc967 1330
e0a76d8d 1331 return handler->SaveFile( (wxImage*)this, stream );
01111366 1332}
e02afc7a 1333#endif // wxUSE_STREAMS
01111366
RR
1334
1335void wxImage::AddHandler( wxImageHandler *handler )
1336{
2b5f62a0
VZ
1337 // Check for an existing handler of the type being added.
1338 if (FindHandler( handler->GetType() ) == 0)
1339 {
1340 sm_handlers.Append( handler );
1341 }
1342 else
1343 {
1344 // This is not documented behaviour, merely the simplest 'fix'
1345 // for preventing duplicate additions. If someone ever has
1346 // a good reason to add and remove duplicate handlers (and they
1347 // may) we should probably refcount the duplicates.
1348 // also an issue in InsertHandler below.
1349
1350 wxLogDebug( _T("Adding duplicate image handler for '%s'"),
1351 handler->GetName().c_str() );
1352 delete handler;
1353 }
01111366
RR
1354}
1355
1356void wxImage::InsertHandler( wxImageHandler *handler )
1357{
2b5f62a0
VZ
1358 // Check for an existing handler of the type being added.
1359 if (FindHandler( handler->GetType() ) == 0)
1360 {
1361 sm_handlers.Insert( handler );
1362 }
1363 else
1364 {
1365 // see AddHandler for additional comments.
1366 wxLogDebug( _T("Inserting duplicate image handler for '%s'"),
1367 handler->GetName().c_str() );
1368 delete handler;
1369 }
01111366
RR
1370}
1371
1372bool wxImage::RemoveHandler( const wxString& name )
1373{
fd0eed64
RR
1374 wxImageHandler *handler = FindHandler(name);
1375 if (handler)
1376 {
1377 sm_handlers.DeleteObject(handler);
222ed1d6 1378 delete handler;
70cd62e9 1379 return true;
fd0eed64
RR
1380 }
1381 else
70cd62e9 1382 return false;
01111366
RR
1383}
1384
1385wxImageHandler *wxImage::FindHandler( const wxString& name )
1386{
222ed1d6 1387 wxList::compatibility_iterator node = sm_handlers.GetFirst();
fd0eed64
RR
1388 while (node)
1389 {
b1d4dd7a 1390 wxImageHandler *handler = (wxImageHandler*)node->GetData();
ce3ed50d 1391 if (handler->GetName().Cmp(name) == 0) return handler;
c7abc967 1392
b1d4dd7a 1393 node = node->GetNext();
fd0eed64 1394 }
2b5f62a0 1395 return 0;
01111366
RR
1396}
1397
1398wxImageHandler *wxImage::FindHandler( const wxString& extension, long bitmapType )
1399{
222ed1d6 1400 wxList::compatibility_iterator node = sm_handlers.GetFirst();
fd0eed64
RR
1401 while (node)
1402 {
b1d4dd7a 1403 wxImageHandler *handler = (wxImageHandler*)node->GetData();
ce3ed50d 1404 if ( (handler->GetExtension().Cmp(extension) == 0) &&
fd0eed64 1405 (bitmapType == -1 || handler->GetType() == bitmapType) )
dbda9e86 1406 return handler;
b1d4dd7a 1407 node = node->GetNext();
fd0eed64 1408 }
2b5f62a0 1409 return 0;
01111366
RR
1410}
1411
1412wxImageHandler *wxImage::FindHandler( long bitmapType )
1413{
222ed1d6 1414 wxList::compatibility_iterator node = sm_handlers.GetFirst();
fd0eed64
RR
1415 while (node)
1416 {
b1d4dd7a 1417 wxImageHandler *handler = (wxImageHandler *)node->GetData();
fd0eed64 1418 if (handler->GetType() == bitmapType) return handler;
b1d4dd7a 1419 node = node->GetNext();
fd0eed64 1420 }
2b5f62a0 1421 return 0;
fd0eed64
RR
1422}
1423
9e9ee68e
VS
1424wxImageHandler *wxImage::FindHandlerMime( const wxString& mimetype )
1425{
222ed1d6 1426 wxList::compatibility_iterator node = sm_handlers.GetFirst();
9e9ee68e
VS
1427 while (node)
1428 {
b1d4dd7a 1429 wxImageHandler *handler = (wxImageHandler *)node->GetData();
70cd62e9 1430 if (handler->GetMimeType().IsSameAs(mimetype, false)) return handler;
b1d4dd7a 1431 node = node->GetNext();
9e9ee68e 1432 }
2b5f62a0 1433 return 0;
9e9ee68e
VS
1434}
1435
fd0eed64
RR
1436void wxImage::InitStandardHandlers()
1437{
77fac225 1438#if wxUSE_STREAMS
66e23ad2 1439 AddHandler(new wxBMPHandler);
77fac225 1440#endif // wxUSE_STREAMS
01111366
RR
1441}
1442
1443void wxImage::CleanUpHandlers()
1444{
222ed1d6 1445 wxList::compatibility_iterator node = sm_handlers.GetFirst();
fd0eed64
RR
1446 while (node)
1447 {
b1d4dd7a 1448 wxImageHandler *handler = (wxImageHandler *)node->GetData();
222ed1d6 1449 wxList::compatibility_iterator next = node->GetNext();
fd0eed64 1450 delete handler;
fd0eed64
RR
1451 node = next;
1452 }
01111366 1453
222ed1d6
MB
1454 sm_handlers.Clear();
1455}
ff865c13 1456
939fadc8
JS
1457wxString wxImage::GetImageExtWildcard()
1458{
1459 wxString fmts;
1460
1461 wxList& Handlers = wxImage::GetHandlers();
222ed1d6 1462 wxList::compatibility_iterator Node = Handlers.GetFirst();
939fadc8
JS
1463 while ( Node )
1464 {
1465 wxImageHandler* Handler = (wxImageHandler*)Node->GetData();
1466 fmts += wxT("*.") + Handler->GetExtension();
1467 Node = Node->GetNext();
1468 if ( Node ) fmts += wxT(";");
1469 }
1470
1471 return wxT("(") + fmts + wxT(")|") + fmts;
1472}
1473
01111366
RR
1474//-----------------------------------------------------------------------------
1475// wxImageHandler
1476//-----------------------------------------------------------------------------
1477
63d963a1 1478IMPLEMENT_ABSTRACT_CLASS(wxImageHandler,wxObject)
01111366 1479
e02afc7a 1480#if wxUSE_STREAMS
700ec454 1481bool wxImageHandler::LoadFile( wxImage *WXUNUSED(image), wxInputStream& WXUNUSED(stream), bool WXUNUSED(verbose), int WXUNUSED(index) )
01111366 1482{
70cd62e9 1483 return false;
01111366
RR
1484}
1485
deb2fec0 1486bool wxImageHandler::SaveFile( wxImage *WXUNUSED(image), wxOutputStream& WXUNUSED(stream), bool WXUNUSED(verbose) )
01111366 1487{
70cd62e9 1488 return false;
01111366 1489}
0828c087 1490
649d13e8 1491int wxImageHandler::GetImageCount( wxInputStream& WXUNUSED(stream) )
700ec454
RR
1492{
1493 return 1;
1494}
1495
0828c087
VS
1496bool wxImageHandler::CanRead( const wxString& name )
1497{
0828c087
VS
1498 if (wxFileExists(name))
1499 {
1500 wxFileInputStream stream(name);
1501 return CanRead(stream);
1502 }
1503
39d16996 1504 wxLogError( _("Can't check image format of file '%s': file does not exist."), name.c_str() );
0828c087 1505
70cd62e9 1506 return false;
39d16996
VZ
1507}
1508
1509bool wxImageHandler::CallDoCanRead(wxInputStream& stream)
1510{
30984dea 1511 wxFileOffset posOld = stream.TellI();
39d16996
VZ
1512 if ( posOld == wxInvalidOffset )
1513 {
1514 // can't test unseekable stream
70cd62e9 1515 return false;
39d16996
VZ
1516 }
1517
1518 bool ok = DoCanRead(stream);
1519
1520 // restore the old position to be able to test other formats and so on
1521 if ( stream.SeekI(posOld) == wxInvalidOffset )
1522 {
1523 wxLogDebug(_T("Failed to rewind the stream in wxImageHandler!"));
1524
1525 // reading would fail anyhow as we're not at the right position
70cd62e9 1526 return false;
0828c087 1527 }
39d16996
VZ
1528
1529 return ok;
0828c087
VS
1530}
1531
e02afc7a 1532#endif // wxUSE_STREAMS
01111366 1533
487659e0
VZ
1534// ----------------------------------------------------------------------------
1535// image histogram stuff
1536// ----------------------------------------------------------------------------
1537
1538bool
1539wxImageHistogram::FindFirstUnusedColour(unsigned char *r,
1540 unsigned char *g,
1541 unsigned char *b,
1542 unsigned char r2,
1543 unsigned char b2,
1544 unsigned char g2) const
1545{
1546 unsigned long key = MakeKey(r2, g2, b2);
1547
1548 while ( find(key) != end() )
1549 {
1550 // color already used
1551 r2++;
1552 if ( r2 >= 255 )
1553 {
1554 r2 = 0;
1555 g2++;
1556 if ( g2 >= 255 )
1557 {
1558 g2 = 0;
1559 b2++;
1560 if ( b2 >= 255 )
1561 {
bc88f66f 1562 wxLogError(_("No unused colour in image.") );
70cd62e9 1563 return false;
487659e0
VZ
1564 }
1565 }
1566 }
1567
1568 key = MakeKey(r2, g2, b2);
1569 }
1570
1571 if ( r )
1572 *r = r2;
1573 if ( g )
1574 *g = g2;
1575 if ( b )
1576 *b = b2;
1577
70cd62e9 1578 return true;
487659e0
VZ
1579}
1580
1581bool
1582wxImage::FindFirstUnusedColour(unsigned char *r,
1583 unsigned char *g,
1584 unsigned char *b,
1585 unsigned char r2,
1586 unsigned char b2,
1587 unsigned char g2) const
1588{
1589 wxImageHistogram histogram;
1590
1591 ComputeHistogram(histogram);
1592
1593 return histogram.FindFirstUnusedColour(r, g, b, r2, g2, b2);
1594}
1595
1596
c9d01afd 1597
89d00456
GRG
1598// GRG, Dic/99
1599// Counts and returns the number of different colours. Optionally stops
cc9f7d79
GRG
1600// when it exceeds 'stopafter' different colours. This is useful, for
1601// example, to see if the image can be saved as 8-bit (256 colour or
1602// less, in this case it would be invoked as CountColours(256)). Default
1603// value for stopafter is -1 (don't care).
89d00456 1604//
e0a76d8d 1605unsigned long wxImage::CountColours( unsigned long stopafter ) const
89d00456
GRG
1606{
1607 wxHashTable h;
ad30de59 1608 wxObject dummy;
33ac7e6f 1609 unsigned char r, g, b;
eeca3a46 1610 unsigned char *p;
89d00456
GRG
1611 unsigned long size, nentries, key;
1612
1613 p = GetData();
1614 size = GetWidth() * GetHeight();
1615 nentries = 0;
1616
cc9f7d79 1617 for (unsigned long j = 0; (j < size) && (nentries <= stopafter) ; j++)
89d00456
GRG
1618 {
1619 r = *(p++);
1620 g = *(p++);
1621 b = *(p++);
487659e0 1622 key = wxImageHistogram::MakeKey(r, g, b);
89d00456 1623
ad30de59 1624 if (h.Get(key) == NULL)
89d00456 1625 {
ad30de59 1626 h.Put(key, &dummy);
89d00456
GRG
1627 nentries++;
1628 }
1629 }
1630
89d00456
GRG
1631 return nentries;
1632}
1633
1634
e0a76d8d 1635unsigned long wxImage::ComputeHistogram( wxImageHistogram &h ) const
c9d01afd 1636{
487659e0
VZ
1637 unsigned char *p = GetData();
1638 unsigned long nentries = 0;
952ae1e8
VS
1639
1640 h.clear();
c9d01afd 1641
487659e0 1642 const unsigned long size = GetWidth() * GetHeight();
c9d01afd 1643
487659e0
VZ
1644 unsigned char r, g, b;
1645 for ( unsigned long n = 0; n < size; n++ )
c9d01afd 1646 {
487659e0
VZ
1647 r = *p++;
1648 g = *p++;
1649 b = *p++;
1650
1651 wxImageHistogramEntry& entry = h[wxImageHistogram::MakeKey(r, g, b)];
c9d01afd 1652
952ae1e8
VS
1653 if ( entry.value++ == 0 )
1654 entry.index = nentries++;
c9d01afd
GRG
1655 }
1656
1657 return nentries;
1658}
1659
7a632f10
JS
1660/*
1661 * Rotation code by Carlos Moreno
1662 */
1663
b5c91ac6
GRG
1664// GRG: I've removed wxRotationPoint - we already have wxRealPoint which
1665// does exactly the same thing. And I also got rid of wxRotationPixel
1666// bacause of potential problems in architectures where alignment
1667// is an issue, so I had to rewrite parts of the code.
7a632f10 1668
7a632f10
JS
1669static const double gs_Epsilon = 1e-10;
1670
1671static inline int wxCint (double x)
1672{
1673 return (x > 0) ? (int) (x + 0.5) : (int) (x - 0.5);
1674}
1675
1676
1677// Auxiliary function to rotate a point (x,y) with respect to point p0
1678// make it inline and use a straight return to facilitate optimization
1679// also, the function receives the sine and cosine of the angle to avoid
1680// repeating the time-consuming calls to these functions -- sin/cos can
1681// be computed and stored in the calling function.
1682
b5c91ac6 1683inline wxRealPoint rotated_point (const wxRealPoint & p, double cos_angle, double sin_angle, const wxRealPoint & p0)
7a632f10 1684{
b5c91ac6
GRG
1685 return wxRealPoint (p0.x + (p.x - p0.x) * cos_angle - (p.y - p0.y) * sin_angle,
1686 p0.y + (p.y - p0.y) * cos_angle + (p.x - p0.x) * sin_angle);
7a632f10
JS
1687}
1688
b5c91ac6 1689inline wxRealPoint rotated_point (double x, double y, double cos_angle, double sin_angle, const wxRealPoint & p0)
7a632f10 1690{
b5c91ac6 1691 return rotated_point (wxRealPoint(x,y), cos_angle, sin_angle, p0);
7a632f10
JS
1692}
1693
1694wxImage wxImage::Rotate(double angle, const wxPoint & centre_of_rotation, bool interpolating, wxPoint * offset_after_rotation) const
1695{
7a632f10
JS
1696 int i;
1697 angle = -angle; // screen coordinates are a mirror image of "real" coordinates
6408deed
RR
1698
1699 bool has_alpha = HasAlpha();
7a632f10 1700
ad30de59 1701 // Create pointer-based array to accelerate access to wxImage's data
b5c91ac6 1702 unsigned char ** data = new unsigned char * [GetHeight()];
b5c91ac6 1703 data[0] = GetData();
b5c91ac6
GRG
1704 for (i = 1; i < GetHeight(); i++)
1705 data[i] = data[i - 1] + (3 * GetWidth());
7a632f10 1706
6408deed
RR
1707 // Same for alpha channel
1708 unsigned char ** alpha = NULL;
1709 if (has_alpha)
1710 {
1711 alpha = new unsigned char * [GetHeight()];
1712 alpha[0] = GetAlpha();
1713 for (i = 1; i < GetHeight(); i++)
1714 alpha[i] = alpha[i - 1] + GetWidth();
1715 }
1716
b5c91ac6 1717 // precompute coefficients for rotation formula
ad30de59 1718 // (sine and cosine of the angle)
7a632f10
JS
1719 const double cos_angle = cos(angle);
1720 const double sin_angle = sin(angle);
1721
ad30de59
GRG
1722 // Create new Image to store the result
1723 // First, find rectangle that covers the rotated image; to do that,
1724 // rotate the four corners
7a632f10 1725
b5c91ac6 1726 const wxRealPoint p0(centre_of_rotation.x, centre_of_rotation.y);
7a632f10 1727
b5c91ac6
GRG
1728 wxRealPoint p1 = rotated_point (0, 0, cos_angle, sin_angle, p0);
1729 wxRealPoint p2 = rotated_point (0, GetHeight(), cos_angle, sin_angle, p0);
1730 wxRealPoint p3 = rotated_point (GetWidth(), 0, cos_angle, sin_angle, p0);
1731 wxRealPoint p4 = rotated_point (GetWidth(), GetHeight(), cos_angle, sin_angle, p0);
7a632f10 1732
57c1c6cb
BJ
1733 int x1 = (int) floor (wxMin (wxMin(p1.x, p2.x), wxMin(p3.x, p4.x)));
1734 int y1 = (int) floor (wxMin (wxMin(p1.y, p2.y), wxMin(p3.y, p4.y)));
57c1c6cb
BJ
1735 int x2 = (int) ceil (wxMax (wxMax(p1.x, p2.x), wxMax(p3.x, p4.x)));
1736 int y2 = (int) ceil (wxMax (wxMax(p1.y, p2.y), wxMax(p3.y, p4.y)));
7a632f10 1737
6408deed 1738 // Create rotated image
ff865c13 1739 wxImage rotated (x2 - x1 + 1, y2 - y1 + 1, false);
6408deed
RR
1740 // With alpha channel
1741 if (has_alpha)
1742 rotated.SetAlpha();
7a632f10
JS
1743
1744 if (offset_after_rotation != NULL)
1745 {
06b466c7 1746 *offset_after_rotation = wxPoint (x1, y1);
7a632f10
JS
1747 }
1748
b5c91ac6
GRG
1749 // GRG: The rotated (destination) image is always accessed
1750 // sequentially, so there is no need for a pointer-based
1751 // array here (and in fact it would be slower).
1752 //
1753 unsigned char * dst = rotated.GetData();
6408deed
RR
1754
1755 unsigned char * alpha_dst = NULL;
1756 if (has_alpha)
1757 alpha_dst = rotated.GetAlpha();
7a632f10 1758
ad30de59
GRG
1759 // GRG: if the original image has a mask, use its RGB values
1760 // as the blank pixel, else, fall back to default (black).
1761 //
b5c91ac6
GRG
1762 unsigned char blank_r = 0;
1763 unsigned char blank_g = 0;
1764 unsigned char blank_b = 0;
ad30de59
GRG
1765
1766 if (HasMask())
1767 {
b5c91ac6
GRG
1768 blank_r = GetMaskRed();
1769 blank_g = GetMaskGreen();
1770 blank_b = GetMaskBlue();
1771 rotated.SetMaskColour( blank_r, blank_g, blank_b );
ad30de59
GRG
1772 }
1773
1774 // Now, for each point of the rotated image, find where it came from, by
1775 // performing an inverse rotation (a rotation of -angle) and getting the
1776 // pixel at those coordinates
1777
b5c91ac6
GRG
1778 // GRG: I've taken the (interpolating) test out of the loops, so that
1779 // it is done only once, instead of repeating it for each pixel.
7a632f10
JS
1780
1781 int x;
b5c91ac6 1782 if (interpolating)
7a632f10
JS
1783 {
1784 for (int y = 0; y < rotated.GetHeight(); y++)
1785 {
b5c91ac6 1786 for (x = 0; x < rotated.GetWidth(); x++)
7a632f10 1787 {
b5c91ac6
GRG
1788 wxRealPoint src = rotated_point (x + x1, y + y1, cos_angle, -sin_angle, p0);
1789
f2506310
JS
1790 if (-0.25 < src.x && src.x < GetWidth() - 0.75 &&
1791 -0.25 < src.y && src.y < GetHeight() - 0.75)
7a632f10 1792 {
ad30de59
GRG
1793 // interpolate using the 4 enclosing grid-points. Those
1794 // points can be obtained using floor and ceiling of the
1795 // exact coordinates of the point
f2506310 1796 // C.M. 2000-02-17: when the point is near the border, special care is required.
7a632f10 1797
f2506310
JS
1798 int x1, y1, x2, y2;
1799
1800 if (0 < src.x && src.x < GetWidth() - 1)
1801 {
1802 x1 = wxCint(floor(src.x));
1803 x2 = wxCint(ceil(src.x));
1804 }
1805 else // else means that x is near one of the borders (0 or width-1)
1806 {
1807 x1 = x2 = wxCint (src.x);
1808 }
1809
1810 if (0 < src.y && src.y < GetHeight() - 1)
1811 {
1812 y1 = wxCint(floor(src.y));
1813 y2 = wxCint(ceil(src.y));
1814 }
1815 else
1816 {
1817 y1 = y2 = wxCint (src.y);
1818 }
7a632f10 1819
ad30de59
GRG
1820 // get four points and the distances (square of the distance,
1821 // for efficiency reasons) for the interpolation formula
b5c91ac6
GRG
1822
1823 // GRG: Do not calculate the points until they are
1824 // really needed -- this way we can calculate
1825 // just one, instead of four, if d1, d2, d3
1826 // or d4 are < gs_Epsilon
7a632f10
JS
1827
1828 const double d1 = (src.x - x1) * (src.x - x1) + (src.y - y1) * (src.y - y1);
1829 const double d2 = (src.x - x2) * (src.x - x2) + (src.y - y1) * (src.y - y1);
1830 const double d3 = (src.x - x2) * (src.x - x2) + (src.y - y2) * (src.y - y2);
1831 const double d4 = (src.x - x1) * (src.x - x1) + (src.y - y2) * (src.y - y2);
1832
ad30de59
GRG
1833 // Now interpolate as a weighted average of the four surrounding
1834 // points, where the weights are the distances to each of those points
7a632f10 1835
ad30de59
GRG
1836 // If the point is exactly at one point of the grid of the source
1837 // image, then don't interpolate -- just assign the pixel
7a632f10 1838
06b466c7 1839 if (d1 < gs_Epsilon) // d1,d2,d3,d4 are positive -- no need for abs()
7a632f10 1840 {
b5c91ac6
GRG
1841 unsigned char *p = data[y1] + (3 * x1);
1842 *(dst++) = *(p++);
1843 *(dst++) = *(p++);
6408deed
RR
1844 *(dst++) = *p;
1845
1846 if (has_alpha)
1847 {
1848 unsigned char *p = alpha[y1] + x1;
1849 *(alpha_dst++) = *p;
1850 }
7a632f10
JS
1851 }
1852 else if (d2 < gs_Epsilon)
1853 {
b5c91ac6
GRG
1854 unsigned char *p = data[y1] + (3 * x2);
1855 *(dst++) = *(p++);
1856 *(dst++) = *(p++);
6408deed
RR
1857 *(dst++) = *p;
1858
1859 if (has_alpha)
1860 {
1861 unsigned char *p = alpha[y1] + x2;
1862 *(alpha_dst++) = *p;
1863 }
7a632f10
JS
1864 }
1865 else if (d3 < gs_Epsilon)
1866 {
b5c91ac6
GRG
1867 unsigned char *p = data[y2] + (3 * x2);
1868 *(dst++) = *(p++);
1869 *(dst++) = *(p++);
6408deed
RR
1870 *(dst++) = *p;
1871
1872 if (has_alpha)
1873 {
1874 unsigned char *p = alpha[y2] + x2;
1875 *(alpha_dst++) = *p;
1876 }
7a632f10
JS
1877 }
1878 else if (d4 < gs_Epsilon)
1879 {
b5c91ac6
GRG
1880 unsigned char *p = data[y2] + (3 * x1);
1881 *(dst++) = *(p++);
1882 *(dst++) = *(p++);
6408deed
RR
1883 *(dst++) = *p;
1884
1885 if (has_alpha)
1886 {
1887 unsigned char *p = alpha[y2] + x1;
1888 *(alpha_dst++) = *p;
1889 }
7a632f10
JS
1890 }
1891 else
1892 {
06b466c7 1893 // weights for the weighted average are proportional to the inverse of the distance
b5c91ac6
GRG
1894 unsigned char *v1 = data[y1] + (3 * x1);
1895 unsigned char *v2 = data[y1] + (3 * x2);
1896 unsigned char *v3 = data[y2] + (3 * x2);
1897 unsigned char *v4 = data[y2] + (3 * x1);
1898
06b466c7
VZ
1899 const double w1 = 1/d1, w2 = 1/d2, w3 = 1/d3, w4 = 1/d4;
1900
b5c91ac6
GRG
1901 // GRG: Unrolled.
1902
1903 *(dst++) = (unsigned char)
1904 ( (w1 * *(v1++) + w2 * *(v2++) +
1905 w3 * *(v3++) + w4 * *(v4++)) /
1906 (w1 + w2 + w3 + w4) );
1907 *(dst++) = (unsigned char)
1908 ( (w1 * *(v1++) + w2 * *(v2++) +
1909 w3 * *(v3++) + w4 * *(v4++)) /
1910 (w1 + w2 + w3 + w4) );
1911 *(dst++) = (unsigned char)
999836aa
VZ
1912 ( (w1 * *v1 + w2 * *v2 +
1913 w3 * *v3 + w4 * *v4) /
b5c91ac6 1914 (w1 + w2 + w3 + w4) );
6408deed
RR
1915
1916 if (has_alpha)
1917 {
1918 unsigned char *v1 = alpha[y1] + (x1);
1919 unsigned char *v2 = alpha[y1] + (x2);
1920 unsigned char *v3 = alpha[y2] + (x2);
1921 unsigned char *v4 = alpha[y2] + (x1);
1922
1923 *(alpha_dst++) = (unsigned char)
1924 ( (w1 * *v1 + w2 * *v2 +
1925 w3 * *v3 + w4 * *v4) /
1926 (w1 + w2 + w3 + w4) );
1927 }
7a632f10
JS
1928 }
1929 }
1930 else
1931 {
b5c91ac6
GRG
1932 *(dst++) = blank_r;
1933 *(dst++) = blank_g;
1934 *(dst++) = blank_b;
6408deed
RR
1935
1936 if (has_alpha)
1937 *(alpha_dst++) = 0;
7a632f10
JS
1938 }
1939 }
b5c91ac6
GRG
1940 }
1941 }
1942 else // not interpolating
1943 {
1944 for (int y = 0; y < rotated.GetHeight(); y++)
1945 {
1946 for (x = 0; x < rotated.GetWidth(); x++)
7a632f10 1947 {
b5c91ac6
GRG
1948 wxRealPoint src = rotated_point (x + x1, y + y1, cos_angle, -sin_angle, p0);
1949
1950 const int xs = wxCint (src.x); // wxCint rounds to the
457e6c54 1951 const int ys = wxCint (src.y); // closest integer
7a632f10 1952
b5c91ac6
GRG
1953 if (0 <= xs && xs < GetWidth() &&
1954 0 <= ys && ys < GetHeight())
7a632f10 1955 {
b5c91ac6
GRG
1956 unsigned char *p = data[ys] + (3 * xs);
1957 *(dst++) = *(p++);
1958 *(dst++) = *(p++);
999836aa 1959 *(dst++) = *p;
6408deed
RR
1960
1961 if (has_alpha)
1962 {
1963 unsigned char *p = alpha[ys] + (xs);
1964 *(alpha_dst++) = *p;
1965 }
7a632f10
JS
1966 }
1967 else
1968 {
b5c91ac6
GRG
1969 *(dst++) = blank_r;
1970 *(dst++) = blank_g;
1971 *(dst++) = blank_b;
6408deed
RR
1972
1973 if (has_alpha)
1974 *(alpha_dst++) = 255;
7a632f10
JS
1975 }
1976 }
1977 }
1978 }
1979
4aff28fc 1980 delete [] data;
6408deed
RR
1981
1982 if (has_alpha)
1983 delete [] alpha;
4aff28fc 1984
7a632f10
JS
1985 return rotated;
1986}
c9d01afd 1987
ef8f37e0
VS
1988
1989
1990
1991
1992// A module to allow wxImage initialization/cleanup
1993// without calling these functions from app.cpp or from
1994// the user's application.
1995
1996class wxImageModule: public wxModule
1997{
1998DECLARE_DYNAMIC_CLASS(wxImageModule)
1999public:
2000 wxImageModule() {}
70cd62e9 2001 bool OnInit() { wxImage::InitStandardHandlers(); return true; };
ef8f37e0
VS
2002 void OnExit() { wxImage::CleanUpHandlers(); };
2003};
2004
2005IMPLEMENT_DYNAMIC_CLASS(wxImageModule, wxModule)
2006
2007
c96ea657 2008#endif // wxUSE_IMAGE