1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "image.h"
14 // For compilers that support precompilation, includes "wx.h".
15 #include "wx/wxprec.h"
26 #include "wx/bitmap.h"
30 #include "wx/filefn.h"
31 #include "wx/wfstream.h"
33 #include "wx/module.h"
44 //-----------------------------------------------------------------------------
46 //-----------------------------------------------------------------------------
48 class wxImageRefData
: public wxObjectRefData
56 unsigned char *m_data
;
58 unsigned char m_maskRed
,m_maskGreen
,m_maskBlue
;
63 #endif // wxUSE_PALETTE
64 wxArrayString m_optionNames
;
65 wxArrayString m_optionValues
;
67 DECLARE_NO_COPY_CLASS(wxImageRefData
)
70 wxImageRefData::wxImageRefData()
74 m_data
= (unsigned char*) NULL
;
83 wxImageRefData::~wxImageRefData()
85 if (m_data
&& !m_static
)
89 wxList
wxImage::sm_handlers
;
93 //-----------------------------------------------------------------------------
95 #define M_IMGDATA ((wxImageRefData *)m_refData)
97 IMPLEMENT_DYNAMIC_CLASS(wxImage
, wxObject
)
103 wxImage::wxImage( int width
, int height
)
105 Create( width
, height
);
108 wxImage::wxImage( int width
, int height
, unsigned char* data
, bool static_data
)
110 Create( width
, height
, data
, static_data
);
113 wxImage::wxImage( const wxString
& name
, long type
, int index
)
115 LoadFile( name
, type
, index
);
118 wxImage::wxImage( const wxString
& name
, const wxString
& mimetype
, int index
)
120 LoadFile( name
, mimetype
, index
);
124 wxImage::wxImage( wxInputStream
& stream
, long type
, int index
)
126 LoadFile( stream
, type
, index
);
129 wxImage::wxImage( wxInputStream
& stream
, const wxString
& mimetype
, int index
)
131 LoadFile( stream
, mimetype
, index
);
133 #endif // wxUSE_STREAMS
135 wxImage::wxImage( const wxImage
& image
)
141 wxImage::wxImage( const wxImage
* image
)
143 if (image
) Ref(*image
);
146 void wxImage::Create( int width
, int height
)
150 m_refData
= new wxImageRefData();
152 M_IMGDATA
->m_data
= (unsigned char *) malloc( width
*height
*3 );
153 if (M_IMGDATA
->m_data
)
155 for (int l
= 0; l
< width
*height
*3; l
++) M_IMGDATA
->m_data
[l
] = 0;
157 M_IMGDATA
->m_width
= width
;
158 M_IMGDATA
->m_height
= height
;
159 M_IMGDATA
->m_ok
= TRUE
;
167 void wxImage::Create( int width
, int height
, unsigned char* data
, bool static_data
)
171 m_refData
= new wxImageRefData();
173 M_IMGDATA
->m_data
= data
;
174 if (M_IMGDATA
->m_data
)
176 M_IMGDATA
->m_width
= width
;
177 M_IMGDATA
->m_height
= height
;
178 M_IMGDATA
->m_ok
= TRUE
;
179 M_IMGDATA
->m_static
= static_data
;
187 void wxImage::Destroy()
192 wxImage
wxImage::Copy() const
196 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
198 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
);
200 char unsigned *data
= image
.GetData();
202 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
204 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
205 image
.SetMask( M_IMGDATA
->m_hasMask
);
207 memcpy( data
, GetData(), M_IMGDATA
->m_width
*M_IMGDATA
->m_height
*3 );
212 wxImage
wxImage::Scale( int width
, int height
) const
216 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
218 // can't scale to/from 0 size
219 wxCHECK_MSG( (width
> 0) && (height
> 0), image
,
220 wxT("invalid new image size") );
222 long old_height
= M_IMGDATA
->m_height
,
223 old_width
= M_IMGDATA
->m_width
;
224 wxCHECK_MSG( (old_height
> 0) && (old_width
> 0), image
,
225 wxT("invalid old image size") );
227 image
.Create( width
, height
);
229 char unsigned *data
= image
.GetData();
231 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
233 if (M_IMGDATA
->m_hasMask
)
235 image
.SetMaskColour( M_IMGDATA
->m_maskRed
,
236 M_IMGDATA
->m_maskGreen
,
237 M_IMGDATA
->m_maskBlue
);
240 char unsigned *source_data
= M_IMGDATA
->m_data
;
241 char unsigned *target_data
= data
;
244 // This is nonsense, RR.
246 // We do (x, y) -> (x, y)*oldSize/newSize but the valid values of x and y
247 // are from 0 to size-1, hence all decrement the sizes
248 long old_old_width
= old_width
;
253 for ( long j
= 0; j
<= height
; j
++ )
255 // don't crash for images with height == 1
256 long y_offset
= height
? (j
* old_height
/ height
)* old_old_width
: 0;
258 for ( long i
= 0; i
<= width
; i
++ )
260 long x_offset
= width
? (i
* old_width
) / width
: 0;
262 memcpy( target_data
, source_data
+ 3*(y_offset
+ x_offset
), 3 );
267 for (long j
= 0; j
< height
; j
++)
269 long y_offset
= (j
* old_height
/ height
) * old_width
;
271 for (long i
= 0; i
< width
; i
++)
274 source_data
+ 3*(y_offset
+ ((i
* old_width
)/ width
)),
281 // In case this is a cursor, make sure the hotspot is scalled accordingly:
282 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
) )
283 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X
,
284 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X
)*width
)/old_width
);
285 if ( HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
) )
286 image
.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y
,
287 (GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y
)*height
)/old_height
);
292 wxImage
wxImage::Rotate90( bool clockwise
) const
296 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
298 image
.Create( M_IMGDATA
->m_height
, M_IMGDATA
->m_width
);
300 char unsigned *data
= image
.GetData();
302 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
304 if (M_IMGDATA
->m_hasMask
)
305 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
307 long height
= M_IMGDATA
->m_height
;
308 long width
= M_IMGDATA
->m_width
;
310 char unsigned *source_data
= M_IMGDATA
->m_data
;
311 char unsigned *target_data
;
313 for (long j
= 0; j
< height
; j
++)
315 for (long i
= 0; i
< width
; i
++)
318 target_data
= data
+ (((i
+1)*height
) - j
- 1)*3;
320 target_data
= data
+ ((height
*(width
-1)) + j
- (i
*height
))*3;
321 memcpy( target_data
, source_data
, 3 );
329 wxImage
wxImage::Mirror( bool horizontally
) const
333 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
335 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
);
337 char unsigned *data
= image
.GetData();
339 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
341 if (M_IMGDATA
->m_hasMask
)
342 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
344 long height
= M_IMGDATA
->m_height
;
345 long width
= M_IMGDATA
->m_width
;
347 char unsigned *source_data
= M_IMGDATA
->m_data
;
348 char unsigned *target_data
;
352 for (long j
= 0; j
< height
; j
++)
355 target_data
= data
-3;
356 for (long i
= 0; i
< width
; i
++)
358 memcpy( target_data
, source_data
, 3 );
366 for (long i
= 0; i
< height
; i
++)
368 target_data
= data
+ 3*width
*(height
-1-i
);
369 memcpy( target_data
, source_data
, (size_t)3*width
);
370 source_data
+= 3*width
;
377 wxImage
wxImage::GetSubImage( const wxRect
&rect
) const
381 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
383 wxCHECK_MSG( (rect
.GetLeft()>=0) && (rect
.GetTop()>=0) && (rect
.GetRight()<=GetWidth()) && (rect
.GetBottom()<=GetHeight()),
384 image
, wxT("invalid subimage size") );
386 int subwidth
=rect
.GetWidth();
387 const int subheight
=rect
.GetHeight();
389 image
.Create( subwidth
, subheight
);
391 char unsigned *subdata
= image
.GetData(), *data
=GetData();
393 wxCHECK_MSG( subdata
, image
, wxT("unable to create image") );
395 if (M_IMGDATA
->m_hasMask
)
396 image
.SetMaskColour( M_IMGDATA
->m_maskRed
, M_IMGDATA
->m_maskGreen
, M_IMGDATA
->m_maskBlue
);
398 const int subleft
=3*rect
.GetLeft();
399 const int width
=3*GetWidth();
402 data
+=rect
.GetTop()*width
+subleft
;
404 for (long j
= 0; j
< subheight
; ++j
)
406 memcpy( subdata
, data
, subwidth
);
414 void wxImage::Paste( const wxImage
&image
, int x
, int y
)
416 wxCHECK_RET( Ok(), wxT("invalid image") );
417 wxCHECK_RET( image
.Ok(), wxT("invalid image") );
421 int width
= image
.GetWidth();
422 int height
= image
.GetHeight();
435 if ((x
+xx
)+width
> M_IMGDATA
->m_width
)
436 width
= M_IMGDATA
->m_width
- (x
+xx
);
437 if ((y
+yy
)+height
> M_IMGDATA
->m_height
)
438 height
= M_IMGDATA
->m_height
- (y
+yy
);
440 if (width
< 1) return;
441 if (height
< 1) return;
443 if ((!HasMask() && !image
.HasMask()) ||
444 ((HasMask() && image
.HasMask() &&
445 (GetMaskRed()==image
.GetMaskRed()) &&
446 (GetMaskGreen()==image
.GetMaskGreen()) &&
447 (GetMaskBlue()==image
.GetMaskBlue()))))
450 unsigned char* source_data
= image
.GetData() + xx
*3 + yy
*3*image
.GetWidth();
451 int source_step
= image
.GetWidth()*3;
453 unsigned char* target_data
= GetData() + (x
+xx
)*3 + (y
+yy
)*3*M_IMGDATA
->m_width
;
454 int target_step
= M_IMGDATA
->m_width
*3;
455 for (int j
= 0; j
< height
; j
++)
457 memcpy( target_data
, source_data
, width
);
458 source_data
+= source_step
;
459 target_data
+= target_step
;
464 if (!HasMask() && image
.HasMask())
466 unsigned char r
= image
.GetMaskRed();
467 unsigned char g
= image
.GetMaskGreen();
468 unsigned char b
= image
.GetMaskBlue();
471 unsigned char* source_data
= image
.GetData() + xx
*3 + yy
*3*image
.GetWidth();
472 int source_step
= image
.GetWidth()*3;
474 unsigned char* target_data
= GetData() + (x
+xx
)*3 + (y
+yy
)*3*M_IMGDATA
->m_width
;
475 int target_step
= M_IMGDATA
->m_width
*3;
477 for (int j
= 0; j
< height
; j
++)
479 for (int i
= 0; i
< width
; i
+=3)
481 if ((source_data
[i
] != r
) &&
482 (source_data
[i
+1] != g
) &&
483 (source_data
[i
+2] != b
))
485 memcpy( target_data
+i
, source_data
+i
, 3 );
488 source_data
+= source_step
;
489 target_data
+= target_step
;
494 void wxImage::Replace( unsigned char r1
, unsigned char g1
, unsigned char b1
,
495 unsigned char r2
, unsigned char g2
, unsigned char b2
)
497 wxCHECK_RET( Ok(), wxT("invalid image") );
499 char unsigned *data
= GetData();
501 const int w
= GetWidth();
502 const int h
= GetHeight();
504 for (int j
= 0; j
< h
; j
++)
505 for (int i
= 0; i
< w
; i
++)
507 if ((data
[0] == r1
) && (data
[1] == g1
) && (data
[2] == b1
))
517 wxImage
wxImage::ConvertToMono( unsigned char r
, unsigned char g
, unsigned char b
) const
521 wxCHECK_MSG( Ok(), image
, wxT("invalid image") );
523 image
.Create( M_IMGDATA
->m_width
, M_IMGDATA
->m_height
);
525 char unsigned *data
= image
.GetData();
527 wxCHECK_MSG( data
, image
, wxT("unable to create image") );
529 if (M_IMGDATA
->m_hasMask
)
531 if (M_IMGDATA
->m_maskRed
== r
&& M_IMGDATA
->m_maskGreen
== g
&&
532 M_IMGDATA
->m_maskBlue
== b
)
533 image
.SetMaskColour( 255, 255, 255 );
535 image
.SetMaskColour( 0, 0, 0 );
538 long size
= M_IMGDATA
->m_height
* M_IMGDATA
->m_width
;
540 char unsigned *srcd
= M_IMGDATA
->m_data
;
541 char unsigned *tard
= image
.GetData();
543 for ( long i
= 0; i
< size
; i
++, srcd
+= 3, tard
+= 3 )
545 if (srcd
[0] == r
&& srcd
[1] == g
&& srcd
[2] == b
)
546 tard
[0] = tard
[1] = tard
[2] = 255;
548 tard
[0] = tard
[1] = tard
[2] = 0;
554 void wxImage::SetRGB( int x
, int y
, unsigned char r
, unsigned char g
, unsigned char b
)
556 wxCHECK_RET( Ok(), wxT("invalid image") );
558 int w
= M_IMGDATA
->m_width
;
559 int h
= M_IMGDATA
->m_height
;
561 wxCHECK_RET( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), wxT("invalid image index") );
563 long pos
= (y
* w
+ x
) * 3;
565 M_IMGDATA
->m_data
[ pos
] = r
;
566 M_IMGDATA
->m_data
[ pos
+1 ] = g
;
567 M_IMGDATA
->m_data
[ pos
+2 ] = b
;
570 unsigned char wxImage::GetRed( int x
, int y
) const
572 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
574 int w
= M_IMGDATA
->m_width
;
575 int h
= M_IMGDATA
->m_height
;
577 wxCHECK_MSG( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), 0, wxT("invalid image index") );
579 long pos
= (y
* w
+ x
) * 3;
581 return M_IMGDATA
->m_data
[pos
];
584 unsigned char wxImage::GetGreen( int x
, int y
) const
586 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
588 int w
= M_IMGDATA
->m_width
;
589 int h
= M_IMGDATA
->m_height
;
591 wxCHECK_MSG( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), 0, wxT("invalid image index") );
593 long pos
= (y
* w
+ x
) * 3;
595 return M_IMGDATA
->m_data
[pos
+1];
598 unsigned char wxImage::GetBlue( int x
, int y
) const
600 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
602 int w
= M_IMGDATA
->m_width
;
603 int h
= M_IMGDATA
->m_height
;
605 wxCHECK_MSG( (x
>=0) && (y
>=0) && (x
<w
) && (y
<h
), 0, wxT("invalid image index") );
607 long pos
= (y
* w
+ x
) * 3;
609 return M_IMGDATA
->m_data
[pos
+2];
612 bool wxImage::Ok() const
614 // image of 0 width or height can't be considered ok - at least because it
615 // causes crashes in ConvertToBitmap() if we don't catch it in time
616 wxImageRefData
*data
= M_IMGDATA
;
617 return data
&& data
->m_ok
&& data
->m_width
&& data
->m_height
;
620 char unsigned *wxImage::GetData() const
622 wxCHECK_MSG( Ok(), (char unsigned *)NULL
, wxT("invalid image") );
624 return M_IMGDATA
->m_data
;
627 void wxImage::SetData( char unsigned *data
)
629 wxCHECK_RET( Ok(), wxT("invalid image") );
631 wxImageRefData
*newRefData
= new wxImageRefData();
633 newRefData
->m_width
= M_IMGDATA
->m_width
;
634 newRefData
->m_height
= M_IMGDATA
->m_height
;
635 newRefData
->m_data
= data
;
636 newRefData
->m_ok
= TRUE
;
637 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
638 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
639 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
640 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
644 m_refData
= newRefData
;
647 void wxImage::SetData( char unsigned *data
, int new_width
, int new_height
)
649 wxImageRefData
*newRefData
= new wxImageRefData();
653 newRefData
->m_width
= new_width
;
654 newRefData
->m_height
= new_height
;
655 newRefData
->m_data
= data
;
656 newRefData
->m_ok
= TRUE
;
657 newRefData
->m_maskRed
= M_IMGDATA
->m_maskRed
;
658 newRefData
->m_maskGreen
= M_IMGDATA
->m_maskGreen
;
659 newRefData
->m_maskBlue
= M_IMGDATA
->m_maskBlue
;
660 newRefData
->m_hasMask
= M_IMGDATA
->m_hasMask
;
664 newRefData
->m_width
= new_width
;
665 newRefData
->m_height
= new_height
;
666 newRefData
->m_data
= data
;
667 newRefData
->m_ok
= TRUE
;
672 m_refData
= newRefData
;
675 void wxImage::SetMaskColour( unsigned char r
, unsigned char g
, unsigned char b
)
677 wxCHECK_RET( Ok(), wxT("invalid image") );
679 M_IMGDATA
->m_maskRed
= r
;
680 M_IMGDATA
->m_maskGreen
= g
;
681 M_IMGDATA
->m_maskBlue
= b
;
682 M_IMGDATA
->m_hasMask
= TRUE
;
685 unsigned char wxImage::GetMaskRed() const
687 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
689 return M_IMGDATA
->m_maskRed
;
692 unsigned char wxImage::GetMaskGreen() const
694 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
696 return M_IMGDATA
->m_maskGreen
;
699 unsigned char wxImage::GetMaskBlue() const
701 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
703 return M_IMGDATA
->m_maskBlue
;
706 void wxImage::SetMask( bool mask
)
708 wxCHECK_RET( Ok(), wxT("invalid image") );
710 M_IMGDATA
->m_hasMask
= mask
;
713 bool wxImage::HasMask() const
715 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid image") );
717 return M_IMGDATA
->m_hasMask
;
720 int wxImage::GetWidth() const
722 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
724 return M_IMGDATA
->m_width
;
727 int wxImage::GetHeight() const
729 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
731 return M_IMGDATA
->m_height
;
735 bool wxImage::FindFirstUnusedColour(
736 unsigned char *r
, unsigned char *g
, unsigned char *b
,
737 unsigned char startR
, unsigned char startG
, unsigned char startB
) const
739 wxImageHistogram histogram
;
742 ComputeHistogram(histogram
);
744 unsigned char r2
= startR
;
745 unsigned char g2
= startG
;
746 unsigned char b2
= startB
;
748 key
= (r2
<< 16) | (g2
<< 8) | b2
;
750 while ( histogram
.find(key
) != histogram
.end() )
752 // color already used
764 wxLogError( _("GetUnusedColour:: No Unused Color in image ") );
770 key
= (r2
<< 16) | (g2
<< 8) | b2
;
781 bool wxImage::SetMaskFromImage(const wxImage
& mask
,
782 unsigned char mr
, unsigned char mg
, unsigned char mb
)
784 // check that the images are the same size
785 if ( (M_IMGDATA
->m_height
!= mask
.GetHeight() ) || (M_IMGDATA
->m_width
!= mask
.GetWidth () ) )
787 wxLogError( _("Image and Mask have different sizes") );
791 // find unused colour
792 unsigned char r
,g
,b
;
793 if (!FindFirstUnusedColour(&r
, &g
, &b
))
795 wxLogError( _("No Unused Color in image being masked") );
799 char unsigned *imgdata
= GetData();
800 char unsigned *maskdata
= mask
.GetData();
802 const int w
= GetWidth();
803 const int h
= GetHeight();
805 for (int j
= 0; j
< h
; j
++)
807 for (int i
= 0; i
< w
; i
++)
809 if ((maskdata
[0] == mr
) && (maskdata
[1] == mg
) && (maskdata
[2] == mb
))
820 SetMaskColour(r
, g
, b
);
830 bool wxImage::HasPalette() const
835 return M_IMGDATA
->m_palette
.Ok();
838 const wxPalette
& wxImage::GetPalette() const
840 wxCHECK_MSG( Ok(), wxNullPalette
, wxT("invalid image") );
842 return M_IMGDATA
->m_palette
;
845 void wxImage::SetPalette(const wxPalette
& palette
)
847 wxCHECK_RET( Ok(), wxT("invalid image") );
849 M_IMGDATA
->m_palette
= palette
;
852 #endif // wxUSE_PALETTE
854 // Option functions (arbitrary name/value mapping)
855 void wxImage::SetOption(const wxString
& name
, const wxString
& value
)
857 wxCHECK_RET( Ok(), wxT("invalid image") );
859 int idx
= M_IMGDATA
->m_optionNames
.Index(name
, FALSE
);
860 if (idx
== wxNOT_FOUND
)
862 M_IMGDATA
->m_optionNames
.Add(name
);
863 M_IMGDATA
->m_optionValues
.Add(value
);
867 M_IMGDATA
->m_optionNames
[idx
] = name
;
868 M_IMGDATA
->m_optionValues
[idx
] = value
;
872 void wxImage::SetOption(const wxString
& name
, int value
)
875 valStr
.Printf(wxT("%d"), value
);
876 SetOption(name
, valStr
);
879 wxString
wxImage::GetOption(const wxString
& name
) const
881 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid image") );
883 int idx
= M_IMGDATA
->m_optionNames
.Index(name
, FALSE
);
884 if (idx
== wxNOT_FOUND
)
885 return wxEmptyString
;
887 return M_IMGDATA
->m_optionValues
[idx
];
890 int wxImage::GetOptionInt(const wxString
& name
) const
892 wxCHECK_MSG( Ok(), 0, wxT("invalid image") );
894 return wxAtoi(GetOption(name
));
897 bool wxImage::HasOption(const wxString
& name
) const
899 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid image") );
901 return (M_IMGDATA
->m_optionNames
.Index(name
, FALSE
) != wxNOT_FOUND
);
904 bool wxImage::LoadFile( const wxString
& filename
, long type
, int index
)
907 if (wxFileExists(filename
))
909 wxFileInputStream
stream(filename
);
910 wxBufferedInputStream
bstream( stream
);
911 return LoadFile(bstream
, type
, index
);
915 wxLogError( _("Can't load image from file '%s': file does not exist."), filename
.c_str() );
919 #else // !wxUSE_STREAMS
921 #endif // wxUSE_STREAMS
924 bool wxImage::LoadFile( const wxString
& filename
, const wxString
& mimetype
, int index
)
927 if (wxFileExists(filename
))
929 wxFileInputStream
stream(filename
);
930 wxBufferedInputStream
bstream( stream
);
931 return LoadFile(bstream
, mimetype
, index
);
935 wxLogError( _("Can't load image from file '%s': file does not exist."), filename
.c_str() );
939 #else // !wxUSE_STREAMS
941 #endif // wxUSE_STREAMS
946 bool wxImage::SaveFile( const wxString
& filename
) const
948 wxString ext
= filename
.AfterLast('.').Lower();
950 wxImageHandler
* pHandler
= FindHandler(ext
, -1);
953 SaveFile(filename
, pHandler
->GetType());
957 wxLogError(_("Can't save image to file '%s': unknown extension."), filename
.c_str());
962 bool wxImage::SaveFile( const wxString
& filename
, int type
) const
965 ((wxImage
*)this)->SetOption(wxIMAGE_OPTION_FILENAME
, filename
);
967 wxFileOutputStream
stream(filename
);
971 wxBufferedOutputStream
bstream( stream
);
972 return SaveFile(bstream
, type
);
974 #endif // wxUSE_STREAMS
979 bool wxImage::SaveFile( const wxString
& filename
, const wxString
& mimetype
) const
982 ((wxImage
*)this)->SetOption(wxIMAGE_OPTION_FILENAME
, filename
);
984 wxFileOutputStream
stream(filename
);
988 wxBufferedOutputStream
bstream( stream
);
989 return SaveFile(bstream
, mimetype
);
991 #endif // wxUSE_STREAMS
996 bool wxImage::CanRead( const wxString
&name
)
999 wxFileInputStream
stream(name
);
1000 return CanRead(stream
);
1006 int wxImage::GetImageCount( const wxString
&name
, long type
)
1009 wxFileInputStream
stream(name
);
1011 return GetImageCount(stream
, type
);
1019 bool wxImage::CanRead( wxInputStream
&stream
)
1021 const wxList
& list
= GetHandlers();
1023 for ( wxList::Node
*node
= list
.GetFirst(); node
; node
= node
->GetNext() )
1025 wxImageHandler
*handler
=(wxImageHandler
*)node
->GetData();
1026 if (handler
->CanRead( stream
))
1033 int wxImage::GetImageCount( wxInputStream
&stream
, long type
)
1035 wxImageHandler
*handler
;
1037 if ( type
== wxBITMAP_TYPE_ANY
)
1039 wxList
&list
=GetHandlers();
1041 for (wxList::Node
*node
= list
.GetFirst(); node
; node
= node
->GetNext())
1043 handler
=(wxImageHandler
*)node
->GetData();
1044 if ( handler
->CanRead(stream
) )
1045 return handler
->GetImageCount(stream
);
1049 wxLogWarning(_("No handler found for image type."));
1053 handler
= FindHandler(type
);
1057 wxLogWarning(_("No image handler for type %d defined."), type
);
1061 if ( handler
->CanRead(stream
) )
1063 return handler
->GetImageCount(stream
);
1067 wxLogError(_("Image file is not of type %d."), type
);
1072 bool wxImage::LoadFile( wxInputStream
& stream
, long type
, int index
)
1076 m_refData
= new wxImageRefData
;
1078 wxImageHandler
*handler
;
1080 if ( type
== wxBITMAP_TYPE_ANY
)
1082 wxList
&list
=GetHandlers();
1084 for ( wxList::Node
*node
= list
.GetFirst(); node
; node
= node
->GetNext() )
1086 handler
=(wxImageHandler
*)node
->GetData();
1087 if ( handler
->CanRead(stream
) )
1088 return handler
->LoadFile(this, stream
, TRUE
/*verbose*/, index
);
1092 wxLogWarning( _("No handler found for image type.") );
1096 handler
= FindHandler(type
);
1100 wxLogWarning( _("No image handler for type %d defined."), type
);
1105 return handler
->LoadFile(this, stream
, TRUE
/*verbose*/, index
);
1108 bool wxImage::LoadFile( wxInputStream
& stream
, const wxString
& mimetype
, int index
)
1112 m_refData
= new wxImageRefData
;
1114 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
1118 wxLogWarning( _("No image handler for type %s defined."), mimetype
.GetData() );
1123 return handler
->LoadFile( this, stream
, TRUE
/*verbose*/, index
);
1126 bool wxImage::SaveFile( wxOutputStream
& stream
, int type
) const
1128 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid image") );
1130 wxImageHandler
*handler
= FindHandler(type
);
1134 wxLogWarning( _("No image handler for type %d defined."), type
);
1139 return handler
->SaveFile( (wxImage
*)this, stream
);
1142 bool wxImage::SaveFile( wxOutputStream
& stream
, const wxString
& mimetype
) const
1144 wxCHECK_MSG( Ok(), FALSE
, wxT("invalid image") );
1146 wxImageHandler
*handler
= FindHandlerMime(mimetype
);
1150 wxLogWarning( _("No image handler for type %s defined."), mimetype
.GetData() );
1155 return handler
->SaveFile( (wxImage
*)this, stream
);
1157 #endif // wxUSE_STREAMS
1159 void wxImage::AddHandler( wxImageHandler
*handler
)
1161 // make sure that the memory will be freed at the program end
1162 sm_handlers
.DeleteContents(TRUE
);
1164 // Check for an existing handler of the type being added.
1165 if (FindHandler( handler
->GetType() ) == 0)
1167 sm_handlers
.Append( handler
);
1171 // This is not documented behaviour, merely the simplest 'fix'
1172 // for preventing duplicate additions. If someone ever has
1173 // a good reason to add and remove duplicate handlers (and they
1174 // may) we should probably refcount the duplicates.
1175 // also an issue in InsertHandler below.
1177 wxLogDebug( _T("Adding duplicate image handler for '%s'"),
1178 handler
->GetName().c_str() );
1183 void wxImage::InsertHandler( wxImageHandler
*handler
)
1185 // make sure that the memory will be freed at the program end
1186 sm_handlers
.DeleteContents(TRUE
);
1188 // Check for an existing handler of the type being added.
1189 if (FindHandler( handler
->GetType() ) == 0)
1191 sm_handlers
.Insert( handler
);
1195 // see AddHandler for additional comments.
1196 wxLogDebug( _T("Inserting duplicate image handler for '%s'"),
1197 handler
->GetName().c_str() );
1202 bool wxImage::RemoveHandler( const wxString
& name
)
1204 wxImageHandler
*handler
= FindHandler(name
);
1207 sm_handlers
.DeleteObject(handler
);
1214 wxImageHandler
*wxImage::FindHandler( const wxString
& name
)
1216 wxNode
*node
= sm_handlers
.GetFirst();
1219 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1220 if (handler
->GetName().Cmp(name
) == 0) return handler
;
1222 node
= node
->GetNext();
1227 wxImageHandler
*wxImage::FindHandler( const wxString
& extension
, long bitmapType
)
1229 wxNode
*node
= sm_handlers
.GetFirst();
1232 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1233 if ( (handler
->GetExtension().Cmp(extension
) == 0) &&
1234 (bitmapType
== -1 || handler
->GetType() == bitmapType
) )
1236 node
= node
->GetNext();
1241 wxImageHandler
*wxImage::FindHandler( long bitmapType
)
1243 wxNode
*node
= sm_handlers
.GetFirst();
1246 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1247 if (handler
->GetType() == bitmapType
) return handler
;
1248 node
= node
->GetNext();
1253 wxImageHandler
*wxImage::FindHandlerMime( const wxString
& mimetype
)
1255 wxNode
*node
= sm_handlers
.GetFirst();
1258 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1259 if (handler
->GetMimeType().IsSameAs(mimetype
, FALSE
)) return handler
;
1260 node
= node
->GetNext();
1265 void wxImage::InitStandardHandlers()
1268 AddHandler(new wxBMPHandler
);
1269 #endif // wxUSE_STREAMS
1272 void wxImage::CleanUpHandlers()
1274 wxNode
*node
= sm_handlers
.GetFirst();
1277 wxImageHandler
*handler
= (wxImageHandler
*)node
->GetData();
1278 wxNode
*next
= node
->GetNext();
1285 //-----------------------------------------------------------------------------
1287 //-----------------------------------------------------------------------------
1289 IMPLEMENT_ABSTRACT_CLASS(wxImageHandler
,wxObject
)
1292 bool wxImageHandler::LoadFile( wxImage
*WXUNUSED(image
), wxInputStream
& WXUNUSED(stream
), bool WXUNUSED(verbose
), int WXUNUSED(index
) )
1297 bool wxImageHandler::SaveFile( wxImage
*WXUNUSED(image
), wxOutputStream
& WXUNUSED(stream
), bool WXUNUSED(verbose
) )
1302 int wxImageHandler::GetImageCount( wxInputStream
& WXUNUSED(stream
) )
1307 bool wxImageHandler::CanRead( const wxString
& name
)
1309 if (wxFileExists(name
))
1311 wxFileInputStream
stream(name
);
1312 return CanRead(stream
);
1315 wxLogError( _("Can't check image format of file '%s': file does not exist."), name
.c_str() );
1320 bool wxImageHandler::CallDoCanRead(wxInputStream
& stream
)
1322 off_t posOld
= stream
.TellI();
1323 if ( posOld
== wxInvalidOffset
)
1325 // can't test unseekable stream
1329 bool ok
= DoCanRead(stream
);
1331 // restore the old position to be able to test other formats and so on
1332 if ( stream
.SeekI(posOld
) == wxInvalidOffset
)
1334 wxLogDebug(_T("Failed to rewind the stream in wxImageHandler!"));
1336 // reading would fail anyhow as we're not at the right position
1343 #endif // wxUSE_STREAMS
1347 //-----------------------------------------------------------------------------
1348 // Deprecated wxBitmap conversion routines
1349 //-----------------------------------------------------------------------------
1351 #if WXWIN_COMPATIBILITY_2_2 && wxUSE_GUI
1354 wxBitmap
wxImage::ConvertToMonoBitmap( unsigned char red
, unsigned char green
, unsigned char blue
) const
1356 wxImage mono
= this->ConvertToMono( red
, green
, blue
);
1357 wxBitmap
bitmap( mono
, 1 );
1362 wxBitmap
wxImage::ConvertToBitmap() const
1364 wxBitmap
bitmap( *this );
1368 wxImage::wxImage( const wxBitmap
&bitmap
)
1370 *this = bitmap
.ConvertToImage();
1373 #endif // WXWIN_COMPATIBILITY_2_2 && wxUSE_GUI
1376 //-----------------------------------------------------------------------------
1379 // Counts and returns the number of different colours. Optionally stops
1380 // when it exceeds 'stopafter' different colours. This is useful, for
1381 // example, to see if the image can be saved as 8-bit (256 colour or
1382 // less, in this case it would be invoked as CountColours(256)). Default
1383 // value for stopafter is -1 (don't care).
1385 unsigned long wxImage::CountColours( unsigned long stopafter
) const
1389 unsigned char r
, g
, b
;
1391 unsigned long size
, nentries
, key
;
1394 size
= GetWidth() * GetHeight();
1397 for (unsigned long j
= 0; (j
< size
) && (nentries
<= stopafter
) ; j
++)
1402 key
= (r
<< 16) | (g
<< 8) | b
;
1404 if (h
.Get(key
) == NULL
)
1415 unsigned long wxImage::ComputeHistogram( wxImageHistogram
&h
) const
1417 unsigned char r
, g
, b
;
1419 unsigned long size
, nentries
, key
;
1424 size
= GetWidth() * GetHeight();
1427 for (unsigned long j
= 0; j
< size
; j
++)
1432 key
= (r
<< 16) | (g
<< 8) | b
;
1434 wxImageHistogramEntry
& entry
= h
[key
];
1435 if ( entry
.value
++ == 0 )
1436 entry
.index
= nentries
++;
1443 * Rotation code by Carlos Moreno
1446 // GRG: I've removed wxRotationPoint - we already have wxRealPoint which
1447 // does exactly the same thing. And I also got rid of wxRotationPixel
1448 // bacause of potential problems in architectures where alignment
1449 // is an issue, so I had to rewrite parts of the code.
1451 static const double gs_Epsilon
= 1e-10;
1453 static inline int wxCint (double x
)
1455 return (x
> 0) ? (int) (x
+ 0.5) : (int) (x
- 0.5);
1459 // Auxiliary function to rotate a point (x,y) with respect to point p0
1460 // make it inline and use a straight return to facilitate optimization
1461 // also, the function receives the sine and cosine of the angle to avoid
1462 // repeating the time-consuming calls to these functions -- sin/cos can
1463 // be computed and stored in the calling function.
1465 inline wxRealPoint
rotated_point (const wxRealPoint
& p
, double cos_angle
, double sin_angle
, const wxRealPoint
& p0
)
1467 return wxRealPoint (p0
.x
+ (p
.x
- p0
.x
) * cos_angle
- (p
.y
- p0
.y
) * sin_angle
,
1468 p0
.y
+ (p
.y
- p0
.y
) * cos_angle
+ (p
.x
- p0
.x
) * sin_angle
);
1471 inline wxRealPoint
rotated_point (double x
, double y
, double cos_angle
, double sin_angle
, const wxRealPoint
& p0
)
1473 return rotated_point (wxRealPoint(x
,y
), cos_angle
, sin_angle
, p0
);
1476 wxImage
wxImage::Rotate(double angle
, const wxPoint
& centre_of_rotation
, bool interpolating
, wxPoint
* offset_after_rotation
) const
1479 angle
= -angle
; // screen coordinates are a mirror image of "real" coordinates
1481 // Create pointer-based array to accelerate access to wxImage's data
1482 unsigned char ** data
= new unsigned char * [GetHeight()];
1484 data
[0] = GetData();
1486 for (i
= 1; i
< GetHeight(); i
++)
1487 data
[i
] = data
[i
- 1] + (3 * GetWidth());
1489 // precompute coefficients for rotation formula
1490 // (sine and cosine of the angle)
1491 const double cos_angle
= cos(angle
);
1492 const double sin_angle
= sin(angle
);
1494 // Create new Image to store the result
1495 // First, find rectangle that covers the rotated image; to do that,
1496 // rotate the four corners
1498 const wxRealPoint
p0(centre_of_rotation
.x
, centre_of_rotation
.y
);
1500 wxRealPoint p1
= rotated_point (0, 0, cos_angle
, sin_angle
, p0
);
1501 wxRealPoint p2
= rotated_point (0, GetHeight(), cos_angle
, sin_angle
, p0
);
1502 wxRealPoint p3
= rotated_point (GetWidth(), 0, cos_angle
, sin_angle
, p0
);
1503 wxRealPoint p4
= rotated_point (GetWidth(), GetHeight(), cos_angle
, sin_angle
, p0
);
1505 int x1
= (int) floor (wxMin (wxMin(p1
.x
, p2
.x
), wxMin(p3
.x
, p4
.x
)));
1506 int y1
= (int) floor (wxMin (wxMin(p1
.y
, p2
.y
), wxMin(p3
.y
, p4
.y
)));
1507 int x2
= (int) ceil (wxMax (wxMax(p1
.x
, p2
.x
), wxMax(p3
.x
, p4
.x
)));
1508 int y2
= (int) ceil (wxMax (wxMax(p1
.y
, p2
.y
), wxMax(p3
.y
, p4
.y
)));
1510 wxImage
rotated (x2
- x1
+ 1, y2
- y1
+ 1);
1512 if (offset_after_rotation
!= NULL
)
1514 *offset_after_rotation
= wxPoint (x1
, y1
);
1517 // GRG: The rotated (destination) image is always accessed
1518 // sequentially, so there is no need for a pointer-based
1519 // array here (and in fact it would be slower).
1521 unsigned char * dst
= rotated
.GetData();
1523 // GRG: if the original image has a mask, use its RGB values
1524 // as the blank pixel, else, fall back to default (black).
1526 unsigned char blank_r
= 0;
1527 unsigned char blank_g
= 0;
1528 unsigned char blank_b
= 0;
1532 blank_r
= GetMaskRed();
1533 blank_g
= GetMaskGreen();
1534 blank_b
= GetMaskBlue();
1535 rotated
.SetMaskColour( blank_r
, blank_g
, blank_b
);
1538 // Now, for each point of the rotated image, find where it came from, by
1539 // performing an inverse rotation (a rotation of -angle) and getting the
1540 // pixel at those coordinates
1542 // GRG: I've taken the (interpolating) test out of the loops, so that
1543 // it is done only once, instead of repeating it for each pixel.
1548 for (int y
= 0; y
< rotated
.GetHeight(); y
++)
1550 for (x
= 0; x
< rotated
.GetWidth(); x
++)
1552 wxRealPoint src
= rotated_point (x
+ x1
, y
+ y1
, cos_angle
, -sin_angle
, p0
);
1554 if (-0.25 < src
.x
&& src
.x
< GetWidth() - 0.75 &&
1555 -0.25 < src
.y
&& src
.y
< GetHeight() - 0.75)
1557 // interpolate using the 4 enclosing grid-points. Those
1558 // points can be obtained using floor and ceiling of the
1559 // exact coordinates of the point
1560 // C.M. 2000-02-17: when the point is near the border, special care is required.
1564 if (0 < src
.x
&& src
.x
< GetWidth() - 1)
1566 x1
= wxCint(floor(src
.x
));
1567 x2
= wxCint(ceil(src
.x
));
1569 else // else means that x is near one of the borders (0 or width-1)
1571 x1
= x2
= wxCint (src
.x
);
1574 if (0 < src
.y
&& src
.y
< GetHeight() - 1)
1576 y1
= wxCint(floor(src
.y
));
1577 y2
= wxCint(ceil(src
.y
));
1581 y1
= y2
= wxCint (src
.y
);
1584 // get four points and the distances (square of the distance,
1585 // for efficiency reasons) for the interpolation formula
1587 // GRG: Do not calculate the points until they are
1588 // really needed -- this way we can calculate
1589 // just one, instead of four, if d1, d2, d3
1590 // or d4 are < gs_Epsilon
1592 const double d1
= (src
.x
- x1
) * (src
.x
- x1
) + (src
.y
- y1
) * (src
.y
- y1
);
1593 const double d2
= (src
.x
- x2
) * (src
.x
- x2
) + (src
.y
- y1
) * (src
.y
- y1
);
1594 const double d3
= (src
.x
- x2
) * (src
.x
- x2
) + (src
.y
- y2
) * (src
.y
- y2
);
1595 const double d4
= (src
.x
- x1
) * (src
.x
- x1
) + (src
.y
- y2
) * (src
.y
- y2
);
1597 // Now interpolate as a weighted average of the four surrounding
1598 // points, where the weights are the distances to each of those points
1600 // If the point is exactly at one point of the grid of the source
1601 // image, then don't interpolate -- just assign the pixel
1603 if (d1
< gs_Epsilon
) // d1,d2,d3,d4 are positive -- no need for abs()
1605 unsigned char *p
= data
[y1
] + (3 * x1
);
1610 else if (d2
< gs_Epsilon
)
1612 unsigned char *p
= data
[y1
] + (3 * x2
);
1617 else if (d3
< gs_Epsilon
)
1619 unsigned char *p
= data
[y2
] + (3 * x2
);
1624 else if (d4
< gs_Epsilon
)
1626 unsigned char *p
= data
[y2
] + (3 * x1
);
1633 // weights for the weighted average are proportional to the inverse of the distance
1634 unsigned char *v1
= data
[y1
] + (3 * x1
);
1635 unsigned char *v2
= data
[y1
] + (3 * x2
);
1636 unsigned char *v3
= data
[y2
] + (3 * x2
);
1637 unsigned char *v4
= data
[y2
] + (3 * x1
);
1639 const double w1
= 1/d1
, w2
= 1/d2
, w3
= 1/d3
, w4
= 1/d4
;
1643 *(dst
++) = (unsigned char)
1644 ( (w1
* *(v1
++) + w2
* *(v2
++) +
1645 w3
* *(v3
++) + w4
* *(v4
++)) /
1646 (w1
+ w2
+ w3
+ w4
) );
1647 *(dst
++) = (unsigned char)
1648 ( (w1
* *(v1
++) + w2
* *(v2
++) +
1649 w3
* *(v3
++) + w4
* *(v4
++)) /
1650 (w1
+ w2
+ w3
+ w4
) );
1651 *(dst
++) = (unsigned char)
1652 ( (w1
* *(v1
++) + w2
* *(v2
++) +
1653 w3
* *(v3
++) + w4
* *(v4
++)) /
1654 (w1
+ w2
+ w3
+ w4
) );
1666 else // not interpolating
1668 for (int y
= 0; y
< rotated
.GetHeight(); y
++)
1670 for (x
= 0; x
< rotated
.GetWidth(); x
++)
1672 wxRealPoint src
= rotated_point (x
+ x1
, y
+ y1
, cos_angle
, -sin_angle
, p0
);
1674 const int xs
= wxCint (src
.x
); // wxCint rounds to the
1675 const int ys
= wxCint (src
.y
); // closest integer
1677 if (0 <= xs
&& xs
< GetWidth() &&
1678 0 <= ys
&& ys
< GetHeight())
1680 unsigned char *p
= data
[ys
] + (3 * xs
);
1704 // A module to allow wxImage initialization/cleanup
1705 // without calling these functions from app.cpp or from
1706 // the user's application.
1708 class wxImageModule
: public wxModule
1710 DECLARE_DYNAMIC_CLASS(wxImageModule
)
1713 bool OnInit() { wxImage::InitStandardHandlers(); return TRUE
; };
1714 void OnExit() { wxImage::CleanUpHandlers(); };
1717 IMPLEMENT_DYNAMIC_CLASS(wxImageModule
, wxModule
)
1720 #endif // wxUSE_IMAGE