1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxImage class
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
13 #if defined(__GNUG__) && !defined(__APPLE__)
14 #pragma interface "image.h"
18 #include "wx/object.h"
19 #include "wx/string.h"
20 #include "wx/gdicmn.h"
21 #if WXWIN_COMPATIBILITY_2_2
22 # include "wx/bitmap.h"
24 #include "wx/hashmap.h"
27 # include "wx/stream.h"
32 #define wxIMAGE_OPTION_FILENAME wxString(_T("FileName"))
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 class WXDLLEXPORT wxImageHandler
;
39 class WXDLLEXPORT wxImage
;
40 class WXDLLEXPORT wxPalette
;
42 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
46 class WXDLLEXPORT wxImageHandler
: public wxObject
50 : m_name(wxT("")), m_extension(wxT("")), m_mime(), m_type(0)
54 virtual bool LoadFile( wxImage
*image
, wxInputStream
& stream
, bool verbose
=TRUE
, int index
=-1 );
55 virtual bool SaveFile( wxImage
*image
, wxOutputStream
& stream
, bool verbose
=TRUE
);
57 virtual int GetImageCount( wxInputStream
& stream
);
59 bool CanRead( wxInputStream
& stream
) { return CallDoCanRead(stream
); }
60 bool CanRead( const wxString
& name
);
61 #endif // wxUSE_STREAMS
63 void SetName(const wxString
& name
) { m_name
= name
; }
64 void SetExtension(const wxString
& ext
) { m_extension
= ext
; }
65 void SetType(long type
) { m_type
= type
; }
66 void SetMimeType(const wxString
& type
) { m_mime
= type
; }
67 wxString
GetName() const { return m_name
; }
68 wxString
GetExtension() const { return m_extension
; }
69 long GetType() const { return m_type
; }
70 wxString
GetMimeType() const { return m_mime
; }
74 virtual bool DoCanRead( wxInputStream
& stream
) = 0;
76 // save the stream position, call DoCanRead() and restore the position
77 bool CallDoCanRead(wxInputStream
& stream
);
78 #endif // wxUSE_STREAMS
86 DECLARE_CLASS(wxImageHandler
)
89 //-----------------------------------------------------------------------------
91 //-----------------------------------------------------------------------------
93 class WXDLLEXPORT wxImageHistogramEntry
96 wxImageHistogramEntry() : index(0), value(0) {}
101 WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry
,
102 wxIntegerHash
, wxIntegerEqual
,
105 //-----------------------------------------------------------------------------
107 //-----------------------------------------------------------------------------
109 class WXDLLEXPORT wxImage
: public wxObject
113 wxImage( int width
, int height
);
114 wxImage( int width
, int height
, unsigned char* data
, bool static_data
= FALSE
);
115 wxImage( const wxString
& name
, long type
= wxBITMAP_TYPE_ANY
, int index
= -1 );
116 wxImage( const wxString
& name
, const wxString
& mimetype
, int index
= -1 );
119 wxImage( wxInputStream
& stream
, long type
= wxBITMAP_TYPE_ANY
, int index
= -1 );
120 wxImage( wxInputStream
& stream
, const wxString
& mimetype
, int index
= -1 );
121 #endif // wxUSE_STREAMS
123 wxImage( const wxImage
& image
);
124 wxImage( const wxImage
* image
);
126 #if WXWIN_COMPATIBILITY_2_2 && wxUSE_GUI
127 // conversion to/from wxBitmap (deprecated, use wxBitmap's methods instead):
128 wxDEPRECATED( wxImage(const wxBitmap
&bitmap
) );
129 wxDEPRECATED( wxBitmap
ConvertToBitmap() const );
131 wxBitmap
ConvertToMonoBitmap( unsigned char red
, unsigned char green
, unsigned char blue
) const;
135 void Create( int width
, int height
);
136 void Create( int width
, int height
, unsigned char* data
, bool static_data
= FALSE
);
139 // creates an identical copy of the image (the = operator
140 // just raises the ref count)
141 wxImage
Copy() const;
143 // return the new image with size width*height
144 wxImage
GetSubImage( const wxRect
& ) const;
146 // pastes image into this instance and takes care of
147 // the mask colour and out of bounds problems
148 void Paste( const wxImage
&image
, int x
, int y
);
150 // return the new image with size width*height
151 wxImage
Scale( int width
, int height
) const;
153 // rescales the image in place
154 wxImage
& Rescale( int width
, int height
) { return *this = Scale(width
, height
); }
156 // Rotates the image about the given point, 'angle' radians.
157 // Returns the rotated image, leaving this image intact.
158 wxImage
Rotate(double angle
, const wxPoint
& centre_of_rotation
,
159 bool interpolating
= TRUE
, wxPoint
* offset_after_rotation
= (wxPoint
*) NULL
) const;
161 wxImage
Rotate90( bool clockwise
= TRUE
) const;
162 wxImage
Mirror( bool horizontally
= TRUE
) const;
164 // replace one colour with another
165 void Replace( unsigned char r1
, unsigned char g1
, unsigned char b1
,
166 unsigned char r2
, unsigned char g2
, unsigned char b2
);
168 // convert to monochrome image (<r,g,b> will be replaced by white, everything else by black)
169 wxImage
ConvertToMono( unsigned char r
, unsigned char g
, unsigned char b
) const;
171 // these routines are slow but safe
172 void SetRGB( int x
, int y
, unsigned char r
, unsigned char g
, unsigned char b
);
173 unsigned char GetRed( int x
, int y
) const;
174 unsigned char GetGreen( int x
, int y
) const;
175 unsigned char GetBlue( int x
, int y
) const;
177 // find first colour that is not used in the image and has higher
178 // RGB values than <startR,startG,startB>
179 bool FindFirstUnusedColour( unsigned char *r
, unsigned char *g
, unsigned char *b
,
180 unsigned char startR
= 1, unsigned char startG
= 0,
181 unsigned char startB
= 0 ) const;
182 // Set image's mask to the area of 'mask' that has <r,g,b> colour
183 bool SetMaskFromImage(const wxImage
& mask
,
184 unsigned char mr
, unsigned char mg
, unsigned char mb
);
186 static bool CanRead( const wxString
& name
);
187 static int GetImageCount( const wxString
& name
, long type
= wxBITMAP_TYPE_ANY
);
188 virtual bool LoadFile( const wxString
& name
, long type
= wxBITMAP_TYPE_ANY
, int index
= -1 );
189 virtual bool LoadFile( const wxString
& name
, const wxString
& mimetype
, int index
= -1 );
192 static bool CanRead( wxInputStream
& stream
);
193 static int GetImageCount( wxInputStream
& stream
, long type
= wxBITMAP_TYPE_ANY
);
194 virtual bool LoadFile( wxInputStream
& stream
, long type
= wxBITMAP_TYPE_ANY
, int index
= -1 );
195 virtual bool LoadFile( wxInputStream
& stream
, const wxString
& mimetype
, int index
= -1 );
198 virtual bool SaveFile( const wxString
& name
) const;
199 virtual bool SaveFile( const wxString
& name
, int type
) const;
200 virtual bool SaveFile( const wxString
& name
, const wxString
& mimetype
) const;
203 virtual bool SaveFile( wxOutputStream
& stream
, int type
) const;
204 virtual bool SaveFile( wxOutputStream
& stream
, const wxString
& mimetype
) const;
208 int GetWidth() const;
209 int GetHeight() const;
211 char unsigned *GetData() const;
212 void SetData( char unsigned *data
);
213 void SetData( char unsigned *data
, int new_width
, int new_height
);
216 void SetMaskColour( unsigned char r
, unsigned char g
, unsigned char b
);
217 unsigned char GetMaskRed() const;
218 unsigned char GetMaskGreen() const;
219 unsigned char GetMaskBlue() const;
220 void SetMask( bool mask
= TRUE
);
221 bool HasMask() const;
225 bool HasPalette() const;
226 const wxPalette
& GetPalette() const;
227 void SetPalette(const wxPalette
& palette
);
228 #endif // wxUSE_PALETTE
230 // Option functions (arbitrary name/value mapping)
231 void SetOption(const wxString
& name
, const wxString
& value
);
232 void SetOption(const wxString
& name
, int value
);
233 wxString
GetOption(const wxString
& name
) const;
234 int GetOptionInt(const wxString
& name
) const;
235 bool HasOption(const wxString
& name
) const;
237 unsigned long CountColours( unsigned long stopafter
= (unsigned long) -1 ) const;
239 // Computes the histogram of the image and fills a hash table, indexed
240 // with integer keys built as 0xRRGGBB, containing wxImageHistogramEntry
241 // objects. Each of them contains an 'index' (useful to build a palette
242 // with the image colours) and a 'value', which is the number of pixels
243 // in the image with that colour.
244 // Returned value: # of entries in the histogram
245 unsigned long ComputeHistogram( wxImageHistogram
&h
) const;
247 wxImage
& operator = (const wxImage
& image
)
249 if ( (*this) != image
)
254 bool operator == (const wxImage
& image
) const
255 { return m_refData
== image
.m_refData
; }
256 bool operator != (const wxImage
& image
) const
257 { return m_refData
!= image
.m_refData
; }
259 static wxList
& GetHandlers() { return sm_handlers
; }
260 static void AddHandler( wxImageHandler
*handler
);
261 static void InsertHandler( wxImageHandler
*handler
);
262 static bool RemoveHandler( const wxString
& name
);
263 static wxImageHandler
*FindHandler( const wxString
& name
);
264 static wxImageHandler
*FindHandler( const wxString
& extension
, long imageType
);
265 static wxImageHandler
*FindHandler( long imageType
);
266 static wxImageHandler
*FindHandlerMime( const wxString
& mimetype
);
268 static void CleanUpHandlers();
269 static void InitStandardHandlers();
272 static wxList sm_handlers
;
275 friend class WXDLLEXPORT wxImageHandler
;
277 DECLARE_DYNAMIC_CLASS(wxImage
)
281 extern void WXDLLEXPORT
wxInitAllImageHandlers();
283 WXDLLEXPORT_DATA(extern wxImage
) wxNullImage
;
285 //-----------------------------------------------------------------------------
287 //-----------------------------------------------------------------------------
289 #include "wx/imagbmp.h"
290 #include "wx/imagpng.h"
291 #include "wx/imaggif.h"
292 #include "wx/imagpcx.h"
293 #include "wx/imagjpeg.h"
294 #include "wx/imagtiff.h"
295 #include "wx/imagpnm.h"
296 #include "wx/imagxpm.h"
297 #include "wx/imagiff.h"
299 #endif // wxUSE_IMAGE