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