]> git.saurik.com Git - wxWidgets.git/blame - include/wx/image.h
clean DFB event buffer on shutdown
[wxWidgets.git] / include / wx / image.h
CommitLineData
01111366 1/////////////////////////////////////////////////////////////////////////////
155ecd4c 2// Name: wx/image.h
01111366
RR
3// Purpose: wxImage class
4// Author: Robert Roebling
5// RCS-ID: $Id$
6// Copyright: (c) Robert Roebling
65571936 7// Licence: wxWindows licence
01111366
RR
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_IMAGE_H_
11#define _WX_IMAGE_H_
12
2ecf902b 13#include "wx/defs.h"
155ecd4c
WS
14
15#if wxUSE_IMAGE
16
01111366
RR
17#include "wx/object.h"
18#include "wx/string.h"
19#include "wx/gdicmn.h"
952ae1e8 20#include "wx/hashmap.h"
bf38cbff
JS
21
22#if wxUSE_STREAMS
b9943f8e 23# include "wx/stream.h"
bf38cbff 24#endif
01111366 25
66f21994
VZ
26// on some systems (Unixware 7.x) index is defined as a macro in the headers
27// which breaks the compilation below
28#undef index
29
1fe7a7c7 30#define wxIMAGE_OPTION_QUALITY wxString(_T("quality"))
fd94e8aa
VS
31#define wxIMAGE_OPTION_FILENAME wxString(_T("FileName"))
32
fe9308c6
VZ
33#define wxIMAGE_OPTION_RESOLUTION wxString(_T("Resolution"))
34#define wxIMAGE_OPTION_RESOLUTIONX wxString(_T("ResolutionX"))
35#define wxIMAGE_OPTION_RESOLUTIONY wxString(_T("ResolutionY"))
36
37#define wxIMAGE_OPTION_RESOLUTIONUNIT wxString(_T("ResolutionUnit"))
38
39// constants used with wxIMAGE_OPTION_RESOLUTIONUNIT
40enum
41{
42 wxIMAGE_RESOLUTION_INCHES = 1,
43 wxIMAGE_RESOLUTION_CM = 2
44};
45
07aaa1a4
RR
46// Constants for wxImage::Scale() for determining the level of quality
47enum
48{
49 wxIMAGE_QUALITY_NORMAL = 0,
50 wxIMAGE_QUALITY_HIGH = 1
51};
52
21dc4be5
VZ
53// alpha channel values: fully transparent, default threshold separating
54// transparent pixels from opaque for a few functions dealing with alpha and
55// fully opaque
56const unsigned char wxIMAGE_ALPHA_TRANSPARENT = 0;
57const unsigned char wxIMAGE_ALPHA_THRESHOLD = 0x80;
58const unsigned char wxIMAGE_ALPHA_OPAQUE = 0xff;
59
01111366
RR
60//-----------------------------------------------------------------------------
61// classes
62//-----------------------------------------------------------------------------
63
64class WXDLLEXPORT wxImageHandler;
01111366 65class WXDLLEXPORT wxImage;
ed39ff57 66class WXDLLEXPORT wxPalette;
01111366
RR
67
68//-----------------------------------------------------------------------------
69// wxImageHandler
70//-----------------------------------------------------------------------------
71
72class WXDLLEXPORT wxImageHandler: public wxObject
73{
01111366 74public:
d84afea9 75 wxImageHandler()
fda7962d 76 : m_name(wxEmptyString), m_extension(wxEmptyString), m_mime(), m_type(0)
d84afea9 77 { }
01111366 78
bf38cbff 79#if wxUSE_STREAMS
7beb59f3
WS
80 virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
81 virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
8f177c8e 82
649d13e8 83 virtual int GetImageCount( wxInputStream& stream );
0828c087 84
39d16996 85 bool CanRead( wxInputStream& stream ) { return CallDoCanRead(stream); }
be25e480 86 bool CanRead( const wxString& name );
8f177c8e 87#endif // wxUSE_STREAMS
01111366 88
be25e480
RR
89 void SetName(const wxString& name) { m_name = name; }
90 void SetExtension(const wxString& ext) { m_extension = ext; }
91 void SetType(long type) { m_type = type; }
92 void SetMimeType(const wxString& type) { m_mime = type; }
93 wxString GetName() const { return m_name; }
94 wxString GetExtension() const { return m_extension; }
95 long GetType() const { return m_type; }
96 wxString GetMimeType() const { return m_mime; }
9e9ee68e 97
01111366 98protected:
8f177c8e 99#if wxUSE_STREAMS
be25e480 100 virtual bool DoCanRead( wxInputStream& stream ) = 0;
995612e2 101
39d16996
VZ
102 // save the stream position, call DoCanRead() and restore the position
103 bool CallDoCanRead(wxInputStream& stream);
55472691 104#endif // wxUSE_STREAMS
39d16996 105
be25e480
RR
106 wxString m_name;
107 wxString m_extension;
108 wxString m_mime;
109 long m_type;
aaf46fd6 110
be25e480
RR
111private:
112 DECLARE_CLASS(wxImageHandler)
8f177c8e
VZ
113};
114
01111366 115//-----------------------------------------------------------------------------
952ae1e8 116// wxImageHistogram
01111366
RR
117//-----------------------------------------------------------------------------
118
952ae1e8 119class WXDLLEXPORT wxImageHistogramEntry
c9d01afd
GRG
120{
121public:
66f21994 122 wxImageHistogramEntry() { index = value = 0; }
c9d01afd
GRG
123 unsigned long index;
124 unsigned long value;
125};
126
952ae1e8
VS
127WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry,
128 wxIntegerHash, wxIntegerEqual,
3f5c62f9 129 wxImageHistogramBase);
487659e0 130
bf78c81c 131class WXDLLEXPORT wxImageHistogram : public wxImageHistogramBase
487659e0
VZ
132{
133public:
134 wxImageHistogram() : wxImageHistogramBase(256) { }
135
136 // get the key in the histogram for the given RGB values
137 static unsigned long MakeKey(unsigned char r,
138 unsigned char g,
139 unsigned char b)
140 {
141 return (r << 16) | (g << 8) | b;
142 }
143
144 // find first colour that is not used in the image and has higher
145 // RGB values than RGB(startR, startG, startB)
146 //
147 // returns true and puts this colour in r, g, b (each of which may be NULL)
148 // on success or returns false if there are no more free colours
149 bool FindFirstUnusedColour(unsigned char *r,
150 unsigned char *g,
151 unsigned char *b,
152 unsigned char startR = 1,
153 unsigned char startG = 0,
154 unsigned char startB = 0 ) const;
155};
952ae1e8
VS
156
157//-----------------------------------------------------------------------------
158// wxImage
159//-----------------------------------------------------------------------------
160
01111366
RR
161class WXDLLEXPORT wxImage: public wxObject
162{
01111366 163public:
978d3d36
VZ
164 // red, green and blue are 8 bit unsigned integers in the range of 0..255
165 // We use the identifier RGBValue instead of RGB, since RGB is #defined
166 class RGBValue
167 {
168 public:
169 RGBValue(unsigned char r=0, unsigned char g=0, unsigned char b=0)
170 : red(r), green(g), blue(b) {}
ec85956a 171 unsigned char red;
978d3d36
VZ
172 unsigned char green;
173 unsigned char blue;
174 };
175
176 // hue, saturation and value are doubles in the range 0.0..1.0
177 class HSVValue
178 {
179 public:
180 HSVValue(double h=0.0, double s=0.0, double v=0.0)
181 : hue(h), saturation(s), value(v) {}
ec85956a 182 double hue;
978d3d36
VZ
183 double saturation;
184 double value;
185 };
978d3d36 186
1b941f2d 187 wxImage(){}
ff865c13 188 wxImage( int width, int height, bool clear = true );
7beb59f3 189 wxImage( int width, int height, unsigned char* data, bool static_data = false );
4ea56379 190 wxImage( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false );
60d43ad8
VS
191 wxImage( const wxString& name, long type = wxBITMAP_TYPE_ANY, int index = -1 );
192 wxImage( const wxString& name, const wxString& mimetype, int index = -1 );
cad61c3e
JS
193 wxImage( const char** xpmData );
194 wxImage( char** xpmData );
aaf46fd6
VZ
195
196#if wxUSE_STREAMS
60d43ad8
VS
197 wxImage( wxInputStream& stream, long type = wxBITMAP_TYPE_ANY, int index = -1 );
198 wxImage( wxInputStream& stream, const wxString& mimetype, int index = -1 );
aaf46fd6 199#endif // wxUSE_STREAMS
01111366 200
aaa97828 201 bool Create( int width, int height, bool clear = true );
7beb59f3 202 bool Create( int width, int height, unsigned char* data, bool static_data = false );
4ea56379 203 bool Create( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false );
cad61c3e 204 bool Create( const char** xpmData );
be25e480 205 void Destroy();
01111366 206
f6bcfd97
BP
207 // creates an identical copy of the image (the = operator
208 // just raises the ref count)
209 wxImage Copy() const;
aaf46fd6 210
be25e480 211 // return the new image with size width*height
b737ad10
RR
212 wxImage GetSubImage( const wxRect& rect) const;
213
214 // Paste the image or part of this image into an image of the given size at the pos
215 // any newly exposed areas will be filled with the rgb colour
2ecf902b 216 // by default if r = g = b = -1 then fill with this image's mask colour or find and
b737ad10 217 // set a suitable mask colour
2ecf902b 218 wxImage Size( const wxSize& size, const wxPoint& pos,
b737ad10 219 int r = -1, int g = -1, int b = -1 ) const;
aaf46fd6 220
f6bcfd97
BP
221 // pastes image into this instance and takes care of
222 // the mask colour and out of bounds problems
aaf46fd6 223 void Paste( const wxImage &image, int x, int y );
23280650 224
be25e480 225 // return the new image with size width*height
07aaa1a4
RR
226 wxImage Scale( int width, int height, int quality = wxIMAGE_QUALITY_NORMAL ) const;
227
228 // box averager and bicubic filters for up/down sampling
229 wxImage ResampleBox(int width, int height) const;
230 wxImage ResampleBicubic(int width, int height) const;
231
232 // blur the image according to the specified pixel radius
233 wxImage Blur(int radius);
234 wxImage BlurHorizontal(int radius);
235 wxImage BlurVertical(int radius);
bf78c81c 236
534f0312 237 wxImage ShrinkBy( int xFactor , int yFactor ) const ;
7b2471a0 238
be25e480 239 // rescales the image in place
07aaa1a4 240 wxImage& Rescale( int width, int height, int quality = wxIMAGE_QUALITY_NORMAL ) { return *this = Scale(width, height, quality); }
ce9a75d2 241
b737ad10 242 // resizes the image in place
2ecf902b 243 wxImage& Resize( const wxSize& size, const wxPoint& pos,
b737ad10
RR
244 int r = -1, int g = -1, int b = -1 ) { return *this = Size(size, pos, r, g, b); }
245
7a632f10
JS
246 // Rotates the image about the given point, 'angle' radians.
247 // Returns the rotated image, leaving this image intact.
248 wxImage Rotate(double angle, const wxPoint & centre_of_rotation,
7beb59f3 249 bool interpolating = true, wxPoint * offset_after_rotation = (wxPoint*) NULL) const;
f6bcfd97 250
7beb59f3
WS
251 wxImage Rotate90( bool clockwise = true ) const;
252 wxImage Mirror( bool horizontally = true ) const;
7a632f10 253
be25e480
RR
254 // replace one colour with another
255 void Replace( unsigned char r1, unsigned char g1, unsigned char b1,
256 unsigned char r2, unsigned char g2, unsigned char b2 );
aaf46fd6 257
ec85956a
JS
258 // Convert to greyscale image. Uses the luminance component (Y) of the image.
259 // The luma value (YUV) is calculated using (R * lr) + (G * lg) + (B * lb), defaults to ITU-T BT.601
260 wxImage ConvertToGreyscale( double lr = 0.299, double lg = 0.587, double lb = 0.114 ) const;
261
ff5ad794
VS
262 // convert to monochrome image (<r,g,b> will be replaced by white,
263 // everything else by black)
f515c25a 264 wxImage ConvertToMono( unsigned char r, unsigned char g, unsigned char b ) const;
ce9a75d2 265
be25e480
RR
266 // these routines are slow but safe
267 void SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b );
b737ad10 268 void SetRGB( const wxRect& rect, unsigned char r, unsigned char g, unsigned char b );
f6bcfd97
BP
269 unsigned char GetRed( int x, int y ) const;
270 unsigned char GetGreen( int x, int y ) const;
271 unsigned char GetBlue( int x, int y ) const;
23280650 272
487659e0 273 void SetAlpha(int x, int y, unsigned char alpha);
d30ee785 274 unsigned char GetAlpha(int x, int y) const;
487659e0 275
1f5b2017
VS
276 // find first colour that is not used in the image and has higher
277 // RGB values than <startR,startG,startB>
278 bool FindFirstUnusedColour( unsigned char *r, unsigned char *g, unsigned char *b,
aaf46fd6 279 unsigned char startR = 1, unsigned char startG = 0,
e0a76d8d 280 unsigned char startB = 0 ) const;
1f5b2017 281 // Set image's mask to the area of 'mask' that has <r,g,b> colour
aaf46fd6 282 bool SetMaskFromImage(const wxImage & mask,
1f5b2017 283 unsigned char mr, unsigned char mg, unsigned char mb);
52b64b0a 284
ff5ad794
VS
285 // converts image's alpha channel to mask, if it has any, does nothing
286 // otherwise:
21dc4be5 287 bool ConvertAlphaToMask(unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD);
ff5ad794 288
6408deed
RR
289 // This method converts an image where the original alpha
290 // information is only available as a shades of a colour
291 // (actually shades of grey) typically when you draw anti-
292 // aliased text into a bitmap. The DC drawinf routines
293 // draw grey values on the black background although they
294 // actually mean to draw white with differnt alpha values.
295 // This method reverses it, assuming a black (!) background
16cba29d 296 // and white text (actually only the red channel is read).
6408deed
RR
297 // The method will then fill up the whole image with the
298 // colour given.
16cba29d 299 bool ConvertColourToAlpha( unsigned char r, unsigned char g, unsigned char b );
6408deed 300
be25e480 301 static bool CanRead( const wxString& name );
649d13e8 302 static int GetImageCount( const wxString& name, long type = wxBITMAP_TYPE_ANY );
60d43ad8
VS
303 virtual bool LoadFile( const wxString& name, long type = wxBITMAP_TYPE_ANY, int index = -1 );
304 virtual bool LoadFile( const wxString& name, const wxString& mimetype, int index = -1 );
bf38cbff
JS
305
306#if wxUSE_STREAMS
be25e480 307 static bool CanRead( wxInputStream& stream );
649d13e8 308 static int GetImageCount( wxInputStream& stream, long type = wxBITMAP_TYPE_ANY );
60d43ad8
VS
309 virtual bool LoadFile( wxInputStream& stream, long type = wxBITMAP_TYPE_ANY, int index = -1 );
310 virtual bool LoadFile( wxInputStream& stream, const wxString& mimetype, int index = -1 );
bf38cbff
JS
311#endif
312
45647dcf 313 virtual bool SaveFile( const wxString& name ) const;
e0a76d8d
VS
314 virtual bool SaveFile( const wxString& name, int type ) const;
315 virtual bool SaveFile( const wxString& name, const wxString& mimetype ) const;
bf38cbff
JS
316
317#if wxUSE_STREAMS
e0a76d8d
VS
318 virtual bool SaveFile( wxOutputStream& stream, int type ) const;
319 virtual bool SaveFile( wxOutputStream& stream, const wxString& mimetype ) const;
bf38cbff 320#endif
01111366 321
be25e480
RR
322 bool Ok() const;
323 int GetWidth() const;
324 int GetHeight() const;
325
487659e0
VZ
326 // these functions provide fastest access to wxImage data but should be
327 // used carefully as no checks are done
328 unsigned char *GetData() const;
4013de12
RD
329 void SetData( unsigned char *data, bool static_data=false );
330 void SetData( unsigned char *data, int new_width, int new_height, bool static_data=false );
487659e0
VZ
331
332 unsigned char *GetAlpha() const; // may return NULL!
333 bool HasAlpha() const { return GetAlpha() != NULL; }
4013de12 334 void SetAlpha(unsigned char *alpha = NULL, bool static_data=false);
828f0936 335 void InitAlpha();
5e5437e0 336
21dc4be5
VZ
337 // return true if this pixel is masked or has alpha less than specified
338 // threshold
339 bool IsTransparent(int x, int y,
340 unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD) const;
341
5e5437e0 342 // Mask functions
be25e480 343 void SetMaskColour( unsigned char r, unsigned char g, unsigned char b );
b737ad10
RR
344 // Get the current mask colour or find a suitable colour
345 // returns true if using current mask colour
346 bool GetOrFindMaskColour( unsigned char *r, unsigned char *g, unsigned char *b ) const;
be25e480
RR
347 unsigned char GetMaskRed() const;
348 unsigned char GetMaskGreen() const;
349 unsigned char GetMaskBlue() const;
7beb59f3 350 void SetMask( bool mask = true );
be25e480
RR
351 bool HasMask() const;
352
d275c7eb 353#if wxUSE_PALETTE
5e5437e0
JS
354 // Palette functions
355 bool HasPalette() const;
356 const wxPalette& GetPalette() const;
357 void SetPalette(const wxPalette& palette);
d275c7eb 358#endif // wxUSE_PALETTE
5e5437e0
JS
359
360 // Option functions (arbitrary name/value mapping)
361 void SetOption(const wxString& name, const wxString& value);
362 void SetOption(const wxString& name, int value);
363 wxString GetOption(const wxString& name) const;
364 int GetOptionInt(const wxString& name) const;
365 bool HasOption(const wxString& name) const;
3f4fc796 366
e0a76d8d 367 unsigned long CountColours( unsigned long stopafter = (unsigned long) -1 ) const;
952ae1e8
VS
368
369 // Computes the histogram of the image and fills a hash table, indexed
370 // with integer keys built as 0xRRGGBB, containing wxImageHistogramEntry
bf78c81c
RD
371 // objects. Each of them contains an 'index' (useful to build a palette
372 // with the image colours) and a 'value', which is the number of pixels
952ae1e8
VS
373 // in the image with that colour.
374 // Returned value: # of entries in the histogram
e0a76d8d 375 unsigned long ComputeHistogram( wxImageHistogram &h ) const;
be25e480 376
978d3d36
VZ
377 // Rotates the hue of each pixel of the image. angle is a double in the range
378 // -1.0..1.0 where -1.0 is -360 degrees and 1.0 is 360 degrees
379 void RotateHue(double angle);
978d3d36 380
2b5f62a0 381 bool operator == (const wxImage& image) const
be25e480 382 { return m_refData == image.m_refData; }
2b5f62a0 383 bool operator != (const wxImage& image) const
be25e480
RR
384 { return m_refData != image.m_refData; }
385
386 static wxList& GetHandlers() { return sm_handlers; }
387 static void AddHandler( wxImageHandler *handler );
388 static void InsertHandler( wxImageHandler *handler );
389 static bool RemoveHandler( const wxString& name );
390 static wxImageHandler *FindHandler( const wxString& name );
391 static wxImageHandler *FindHandler( const wxString& extension, long imageType );
392 static wxImageHandler *FindHandler( long imageType );
393 static wxImageHandler *FindHandlerMime( const wxString& mimetype );
394
939fadc8
JS
395 static wxString GetImageExtWildcard();
396
be25e480
RR
397 static void CleanUpHandlers();
398 static void InitStandardHandlers();
c9d01afd 399
978d3d36
VZ
400 static HSVValue RGBtoHSV(const RGBValue& rgb);
401 static RGBValue HSVtoRGB(const HSVValue& hsv);
978d3d36
VZ
402
403
01111366 404protected:
5e5437e0 405 static wxList sm_handlers;
01111366 406
5644ac46
VZ
407 // return the index of the point with the given coordinates or -1 if the
408 // image is invalid of the coordinates are out of range
409 //
410 // note that index must be multiplied by 3 when using it with RGB array
411 long XYToIndex(int x, int y) const;
412
a0f81e9f
PC
413 virtual wxObjectRefData* CreateRefData() const;
414 virtual wxObjectRefData* CloneRefData(const wxObjectRefData* data) const;
415
be25e480
RR
416private:
417 friend class WXDLLEXPORT wxImageHandler;
23280650 418
be25e480 419 DECLARE_DYNAMIC_CLASS(wxImage)
01111366
RR
420};
421
8f493002 422
a091d18c 423extern void WXDLLEXPORT wxInitAllImageHandlers();
b5a4a47d 424
16cba29d 425extern WXDLLEXPORT_DATA(wxImage) wxNullImage;
8f493002
VS
426
427//-----------------------------------------------------------------------------
428// wxImage handlers
429//-----------------------------------------------------------------------------
430
431#include "wx/imagbmp.h"
432#include "wx/imagpng.h"
433#include "wx/imaggif.h"
434#include "wx/imagpcx.h"
435#include "wx/imagjpeg.h"
436#include "wx/imagtiff.h"
437#include "wx/imagpnm.h"
775c6f0c 438#include "wx/imagxpm.h"
4b6b4dfc 439#include "wx/imagiff.h"
775c6f0c
VS
440
441#endif // wxUSE_IMAGE
8f493002 442
01111366
RR
443#endif
444 // _WX_IMAGE_H_