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