]>
Commit | Line | Data |
---|---|---|
01111366 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: image.h | |
3 | // Purpose: wxImage class | |
4 | // Author: Robert Roebling | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) Robert Roebling | |
23280650 | 7 | // Licence: wxWindows licence |
01111366 RR |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifndef _WX_IMAGE_H_ | |
11 | #define _WX_IMAGE_H_ | |
12 | ||
af49c4b8 | 13 | #if defined(__GNUG__) && !defined(__APPLE__) |
01111366 RR |
14 | #pragma interface "image.h" |
15 | #endif | |
16 | ||
17 | #include "wx/setup.h" | |
18 | #include "wx/object.h" | |
19 | #include "wx/string.h" | |
20 | #include "wx/gdicmn.h" | |
ed39ff57 MB |
21 | #if WXWIN_COMPATIBILITY_2_2 |
22 | # include "wx/bitmap.h" | |
23 | #endif | |
952ae1e8 | 24 | #include "wx/hashmap.h" |
bf38cbff JS |
25 | |
26 | #if wxUSE_STREAMS | |
b9943f8e | 27 | # include "wx/stream.h" |
bf38cbff | 28 | #endif |
01111366 | 29 | |
775c6f0c VS |
30 | #if wxUSE_IMAGE |
31 | ||
fd94e8aa VS |
32 | #define wxIMAGE_OPTION_FILENAME wxString(_T("FileName")) |
33 | ||
01111366 RR |
34 | //----------------------------------------------------------------------------- |
35 | // classes | |
36 | //----------------------------------------------------------------------------- | |
37 | ||
38 | class WXDLLEXPORT wxImageHandler; | |
01111366 | 39 | class WXDLLEXPORT wxImage; |
ed39ff57 | 40 | class WXDLLEXPORT wxPalette; |
01111366 RR |
41 | |
42 | //----------------------------------------------------------------------------- | |
43 | // wxImageHandler | |
44 | //----------------------------------------------------------------------------- | |
45 | ||
46 | class WXDLLEXPORT wxImageHandler: public wxObject | |
47 | { | |
01111366 | 48 | public: |
d84afea9 | 49 | wxImageHandler() |
2b5f62a0 | 50 | : m_name(wxT("")), m_extension(wxT("")), m_mime(), m_type(0) |
d84afea9 | 51 | { } |
01111366 | 52 | |
bf38cbff | 53 | #if wxUSE_STREAMS |
d394f479 | 54 | virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=TRUE, int index=-1 ); |
be25e480 | 55 | virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=TRUE ); |
8f177c8e | 56 | |
649d13e8 | 57 | virtual int GetImageCount( wxInputStream& stream ); |
0828c087 | 58 | |
39d16996 | 59 | bool CanRead( wxInputStream& stream ) { return CallDoCanRead(stream); } |
be25e480 | 60 | bool CanRead( const wxString& name ); |
8f177c8e | 61 | #endif // wxUSE_STREAMS |
01111366 | 62 | |
be25e480 RR |
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; } | |
9e9ee68e | 71 | |
01111366 | 72 | protected: |
8f177c8e | 73 | #if wxUSE_STREAMS |
be25e480 | 74 | virtual bool DoCanRead( wxInputStream& stream ) = 0; |
995612e2 | 75 | |
39d16996 VZ |
76 | // save the stream position, call DoCanRead() and restore the position |
77 | bool CallDoCanRead(wxInputStream& stream); | |
55472691 | 78 | #endif // wxUSE_STREAMS |
39d16996 | 79 | |
be25e480 RR |
80 | wxString m_name; |
81 | wxString m_extension; | |
82 | wxString m_mime; | |
83 | long m_type; | |
aaf46fd6 | 84 | |
be25e480 RR |
85 | private: |
86 | DECLARE_CLASS(wxImageHandler) | |
8f177c8e VZ |
87 | }; |
88 | ||
01111366 | 89 | //----------------------------------------------------------------------------- |
952ae1e8 | 90 | // wxImageHistogram |
01111366 RR |
91 | //----------------------------------------------------------------------------- |
92 | ||
952ae1e8 | 93 | class WXDLLEXPORT wxImageHistogramEntry |
c9d01afd GRG |
94 | { |
95 | public: | |
952ae1e8 | 96 | wxImageHistogramEntry() : index(0), value(0) {} |
c9d01afd GRG |
97 | unsigned long index; |
98 | unsigned long value; | |
99 | }; | |
100 | ||
952ae1e8 VS |
101 | WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry, |
102 | wxIntegerHash, wxIntegerEqual, | |
487659e0 VZ |
103 | wxImageHistogramBase); |
104 | ||
bf78c81c | 105 | class WXDLLEXPORT wxImageHistogram : public wxImageHistogramBase |
487659e0 VZ |
106 | { |
107 | public: | |
108 | wxImageHistogram() : wxImageHistogramBase(256) { } | |
109 | ||
110 | // get the key in the histogram for the given RGB values | |
111 | static unsigned long MakeKey(unsigned char r, | |
112 | unsigned char g, | |
113 | unsigned char b) | |
114 | { | |
115 | return (r << 16) | (g << 8) | b; | |
116 | } | |
117 | ||
118 | // find first colour that is not used in the image and has higher | |
119 | // RGB values than RGB(startR, startG, startB) | |
120 | // | |
121 | // returns true and puts this colour in r, g, b (each of which may be NULL) | |
122 | // on success or returns false if there are no more free colours | |
123 | bool FindFirstUnusedColour(unsigned char *r, | |
124 | unsigned char *g, | |
125 | unsigned char *b, | |
126 | unsigned char startR = 1, | |
127 | unsigned char startG = 0, | |
128 | unsigned char startB = 0 ) const; | |
129 | }; | |
952ae1e8 VS |
130 | |
131 | //----------------------------------------------------------------------------- | |
132 | // wxImage | |
133 | //----------------------------------------------------------------------------- | |
134 | ||
01111366 RR |
135 | class WXDLLEXPORT wxImage: public wxObject |
136 | { | |
01111366 | 137 | public: |
be25e480 RR |
138 | wxImage(); |
139 | wxImage( int width, int height ); | |
f6bcfd97 | 140 | wxImage( int width, int height, unsigned char* data, bool static_data = FALSE ); |
60d43ad8 VS |
141 | wxImage( const wxString& name, long type = wxBITMAP_TYPE_ANY, int index = -1 ); |
142 | wxImage( const wxString& name, const wxString& mimetype, int index = -1 ); | |
aaf46fd6 VZ |
143 | |
144 | #if wxUSE_STREAMS | |
60d43ad8 VS |
145 | wxImage( wxInputStream& stream, long type = wxBITMAP_TYPE_ANY, int index = -1 ); |
146 | wxImage( wxInputStream& stream, const wxString& mimetype, int index = -1 ); | |
aaf46fd6 | 147 | #endif // wxUSE_STREAMS |
01111366 | 148 | |
be25e480 RR |
149 | wxImage( const wxImage& image ); |
150 | wxImage( const wxImage* image ); | |
9e9ee68e | 151 | |
ef8f37e0 | 152 | #if WXWIN_COMPATIBILITY_2_2 && wxUSE_GUI |
2b5f62a0 | 153 | // conversion to/from wxBitmap (deprecated, use wxBitmap's methods instead): |
b254d1fe VS |
154 | wxDEPRECATED( wxImage(const wxBitmap &bitmap) ); |
155 | wxDEPRECATED( wxBitmap ConvertToBitmap() const ); | |
82ea63e6 | 156 | #ifdef __WXGTK__ |
f515c25a | 157 | wxBitmap ConvertToMonoBitmap( unsigned char red, unsigned char green, unsigned char blue ) const; |
fd859211 | 158 | #endif |
82ea63e6 | 159 | #endif |
23280650 | 160 | |
be25e480 | 161 | void Create( int width, int height ); |
f6bcfd97 | 162 | void Create( int width, int height, unsigned char* data, bool static_data = FALSE ); |
be25e480 | 163 | void Destroy(); |
01111366 | 164 | |
f6bcfd97 BP |
165 | // creates an identical copy of the image (the = operator |
166 | // just raises the ref count) | |
167 | wxImage Copy() const; | |
aaf46fd6 | 168 | |
be25e480 RR |
169 | // return the new image with size width*height |
170 | wxImage GetSubImage( const wxRect& ) const; | |
aaf46fd6 | 171 | |
f6bcfd97 BP |
172 | // pastes image into this instance and takes care of |
173 | // the mask colour and out of bounds problems | |
aaf46fd6 | 174 | void Paste( const wxImage &image, int x, int y ); |
23280650 | 175 | |
be25e480 RR |
176 | // return the new image with size width*height |
177 | wxImage Scale( int width, int height ) const; | |
bf78c81c | 178 | |
534f0312 | 179 | wxImage ShrinkBy( int xFactor , int yFactor ) const ; |
7b2471a0 | 180 | |
be25e480 RR |
181 | // rescales the image in place |
182 | wxImage& Rescale( int width, int height ) { return *this = Scale(width, height); } | |
ce9a75d2 | 183 | |
7a632f10 JS |
184 | // Rotates the image about the given point, 'angle' radians. |
185 | // Returns the rotated image, leaving this image intact. | |
186 | wxImage Rotate(double angle, const wxPoint & centre_of_rotation, | |
f6bcfd97 BP |
187 | bool interpolating = TRUE, wxPoint * offset_after_rotation = (wxPoint*) NULL) const; |
188 | ||
189 | wxImage Rotate90( bool clockwise = TRUE ) const; | |
190 | wxImage Mirror( bool horizontally = TRUE ) const; | |
7a632f10 | 191 | |
be25e480 RR |
192 | // replace one colour with another |
193 | void Replace( unsigned char r1, unsigned char g1, unsigned char b1, | |
194 | unsigned char r2, unsigned char g2, unsigned char b2 ); | |
aaf46fd6 | 195 | |
fd859211 | 196 | // convert to monochrome image (<r,g,b> will be replaced by white, everything else by black) |
f515c25a | 197 | wxImage ConvertToMono( unsigned char r, unsigned char g, unsigned char b ) const; |
ce9a75d2 | 198 | |
be25e480 RR |
199 | // these routines are slow but safe |
200 | void SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b ); | |
f6bcfd97 BP |
201 | unsigned char GetRed( int x, int y ) const; |
202 | unsigned char GetGreen( int x, int y ) const; | |
203 | unsigned char GetBlue( int x, int y ) const; | |
23280650 | 204 | |
487659e0 VZ |
205 | void SetAlpha(int x, int y, unsigned char alpha); |
206 | unsigned char GetAlpha(int x, int y); | |
207 | ||
1f5b2017 VS |
208 | // find first colour that is not used in the image and has higher |
209 | // RGB values than <startR,startG,startB> | |
210 | bool FindFirstUnusedColour( unsigned char *r, unsigned char *g, unsigned char *b, | |
aaf46fd6 | 211 | unsigned char startR = 1, unsigned char startG = 0, |
e0a76d8d | 212 | unsigned char startB = 0 ) const; |
1f5b2017 | 213 | // Set image's mask to the area of 'mask' that has <r,g,b> colour |
aaf46fd6 | 214 | bool SetMaskFromImage(const wxImage & mask, |
1f5b2017 | 215 | unsigned char mr, unsigned char mg, unsigned char mb); |
52b64b0a | 216 | |
be25e480 | 217 | static bool CanRead( const wxString& name ); |
649d13e8 | 218 | static int GetImageCount( const wxString& name, long type = wxBITMAP_TYPE_ANY ); |
60d43ad8 VS |
219 | virtual bool LoadFile( const wxString& name, long type = wxBITMAP_TYPE_ANY, int index = -1 ); |
220 | virtual bool LoadFile( const wxString& name, const wxString& mimetype, int index = -1 ); | |
bf38cbff JS |
221 | |
222 | #if wxUSE_STREAMS | |
be25e480 | 223 | static bool CanRead( wxInputStream& stream ); |
649d13e8 | 224 | static int GetImageCount( wxInputStream& stream, long type = wxBITMAP_TYPE_ANY ); |
60d43ad8 VS |
225 | virtual bool LoadFile( wxInputStream& stream, long type = wxBITMAP_TYPE_ANY, int index = -1 ); |
226 | virtual bool LoadFile( wxInputStream& stream, const wxString& mimetype, int index = -1 ); | |
bf38cbff JS |
227 | #endif |
228 | ||
45647dcf | 229 | virtual bool SaveFile( const wxString& name ) const; |
e0a76d8d VS |
230 | virtual bool SaveFile( const wxString& name, int type ) const; |
231 | virtual bool SaveFile( const wxString& name, const wxString& mimetype ) const; | |
bf38cbff JS |
232 | |
233 | #if wxUSE_STREAMS | |
e0a76d8d VS |
234 | virtual bool SaveFile( wxOutputStream& stream, int type ) const; |
235 | virtual bool SaveFile( wxOutputStream& stream, const wxString& mimetype ) const; | |
bf38cbff | 236 | #endif |
01111366 | 237 | |
be25e480 RR |
238 | bool Ok() const; |
239 | int GetWidth() const; | |
240 | int GetHeight() const; | |
241 | ||
487659e0 VZ |
242 | // these functions provide fastest access to wxImage data but should be |
243 | // used carefully as no checks are done | |
244 | unsigned char *GetData() const; | |
245 | void SetData( unsigned char *data ); | |
246 | void SetData( unsigned char *data, int new_width, int new_height ); | |
247 | ||
248 | unsigned char *GetAlpha() const; // may return NULL! | |
249 | bool HasAlpha() const { return GetAlpha() != NULL; } | |
250 | void SetAlpha(unsigned char *alpha = NULL); | |
5e5437e0 JS |
251 | |
252 | // Mask functions | |
be25e480 RR |
253 | void SetMaskColour( unsigned char r, unsigned char g, unsigned char b ); |
254 | unsigned char GetMaskRed() const; | |
255 | unsigned char GetMaskGreen() const; | |
256 | unsigned char GetMaskBlue() const; | |
257 | void SetMask( bool mask = TRUE ); | |
258 | bool HasMask() const; | |
259 | ||
d275c7eb | 260 | #if wxUSE_PALETTE |
5e5437e0 JS |
261 | // Palette functions |
262 | bool HasPalette() const; | |
263 | const wxPalette& GetPalette() const; | |
264 | void SetPalette(const wxPalette& palette); | |
d275c7eb | 265 | #endif // wxUSE_PALETTE |
5e5437e0 JS |
266 | |
267 | // Option functions (arbitrary name/value mapping) | |
268 | void SetOption(const wxString& name, const wxString& value); | |
269 | void SetOption(const wxString& name, int value); | |
270 | wxString GetOption(const wxString& name) const; | |
271 | int GetOptionInt(const wxString& name) const; | |
272 | bool HasOption(const wxString& name) const; | |
3f4fc796 | 273 | |
e0a76d8d | 274 | unsigned long CountColours( unsigned long stopafter = (unsigned long) -1 ) const; |
952ae1e8 VS |
275 | |
276 | // Computes the histogram of the image and fills a hash table, indexed | |
277 | // with integer keys built as 0xRRGGBB, containing wxImageHistogramEntry | |
bf78c81c RD |
278 | // objects. Each of them contains an 'index' (useful to build a palette |
279 | // with the image colours) and a 'value', which is the number of pixels | |
952ae1e8 VS |
280 | // in the image with that colour. |
281 | // Returned value: # of entries in the histogram | |
e0a76d8d | 282 | unsigned long ComputeHistogram( wxImageHistogram &h ) const; |
be25e480 RR |
283 | |
284 | wxImage& operator = (const wxImage& image) | |
285 | { | |
286 | if ( (*this) != image ) | |
287 | Ref(image); | |
288 | return *this; | |
289 | } | |
290 | ||
2b5f62a0 | 291 | bool operator == (const wxImage& image) const |
be25e480 | 292 | { return m_refData == image.m_refData; } |
2b5f62a0 | 293 | bool operator != (const wxImage& image) const |
be25e480 RR |
294 | { return m_refData != image.m_refData; } |
295 | ||
296 | static wxList& GetHandlers() { return sm_handlers; } | |
297 | static void AddHandler( wxImageHandler *handler ); | |
298 | static void InsertHandler( wxImageHandler *handler ); | |
299 | static bool RemoveHandler( const wxString& name ); | |
300 | static wxImageHandler *FindHandler( const wxString& name ); | |
301 | static wxImageHandler *FindHandler( const wxString& extension, long imageType ); | |
302 | static wxImageHandler *FindHandler( long imageType ); | |
303 | static wxImageHandler *FindHandlerMime( const wxString& mimetype ); | |
304 | ||
305 | static void CleanUpHandlers(); | |
306 | static void InitStandardHandlers(); | |
c9d01afd | 307 | |
01111366 | 308 | protected: |
5e5437e0 | 309 | static wxList sm_handlers; |
01111366 | 310 | |
be25e480 RR |
311 | private: |
312 | friend class WXDLLEXPORT wxImageHandler; | |
23280650 | 313 | |
be25e480 | 314 | DECLARE_DYNAMIC_CLASS(wxImage) |
01111366 RR |
315 | }; |
316 | ||
8f493002 | 317 | |
a091d18c | 318 | extern void WXDLLEXPORT wxInitAllImageHandlers(); |
b5a4a47d | 319 | |
fd859211 | 320 | WXDLLEXPORT_DATA(extern wxImage) wxNullImage; |
8f493002 VS |
321 | |
322 | //----------------------------------------------------------------------------- | |
323 | // wxImage handlers | |
324 | //----------------------------------------------------------------------------- | |
325 | ||
326 | #include "wx/imagbmp.h" | |
327 | #include "wx/imagpng.h" | |
328 | #include "wx/imaggif.h" | |
329 | #include "wx/imagpcx.h" | |
330 | #include "wx/imagjpeg.h" | |
331 | #include "wx/imagtiff.h" | |
332 | #include "wx/imagpnm.h" | |
775c6f0c | 333 | #include "wx/imagxpm.h" |
4b6b4dfc | 334 | #include "wx/imagiff.h" |
775c6f0c VS |
335 | |
336 | #endif // wxUSE_IMAGE | |
8f493002 | 337 | |
01111366 RR |
338 | #endif |
339 | // _WX_IMAGE_H_ | |
9e9ee68e | 340 |