]> git.saurik.com Git - wxWidgets.git/blame - include/wx/image.h
use a single wxBookCtrlEvent class for all wxBookCtrlBase-derived controls (#9667)
[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
361f4288
VZ
40//
41// NB: don't change these values, they correspond to libjpeg constants
42enum wxImageResolution
fe9308c6 43{
361f4288
VZ
44 // Resolution not specified
45 wxIMAGE_RESOLUTION_NONE = 0,
46
47 // Resolution specified in inches
fe9308c6 48 wxIMAGE_RESOLUTION_INCHES = 1,
361f4288
VZ
49
50 // Resolution specified in centimeters
fe9308c6
VZ
51 wxIMAGE_RESOLUTION_CM = 2
52};
53
07aaa1a4
RR
54// Constants for wxImage::Scale() for determining the level of quality
55enum
56{
57 wxIMAGE_QUALITY_NORMAL = 0,
58 wxIMAGE_QUALITY_HIGH = 1
59};
60
21dc4be5
VZ
61// alpha channel values: fully transparent, default threshold separating
62// transparent pixels from opaque for a few functions dealing with alpha and
63// fully opaque
64const unsigned char wxIMAGE_ALPHA_TRANSPARENT = 0;
65const unsigned char wxIMAGE_ALPHA_THRESHOLD = 0x80;
66const unsigned char wxIMAGE_ALPHA_OPAQUE = 0xff;
67
01111366
RR
68//-----------------------------------------------------------------------------
69// classes
70//-----------------------------------------------------------------------------
71
b5dbe15d
VS
72class WXDLLIMPEXP_FWD_CORE wxImageHandler;
73class WXDLLIMPEXP_FWD_CORE wxImage;
74class WXDLLIMPEXP_FWD_CORE wxPalette;
01111366 75
6f5d7825
RR
76//-----------------------------------------------------------------------------
77// wxVariant support
78//-----------------------------------------------------------------------------
79
80#if wxUSE_VARIANT
81#include "wx/variant.h"
53a2db12 82DECLARE_VARIANT_OBJECT_EXPORTED(wxImage,WXDLLIMPEXP_CORE)
6f5d7825
RR
83#endif
84
01111366
RR
85//-----------------------------------------------------------------------------
86// wxImageHandler
87//-----------------------------------------------------------------------------
88
53a2db12 89class WXDLLIMPEXP_CORE wxImageHandler: public wxObject
01111366 90{
01111366 91public:
d84afea9 92 wxImageHandler()
e98e625c 93 : m_name(wxEmptyString), m_extension(wxEmptyString), m_mime(), m_type(wxBITMAP_TYPE_INVALID)
d84afea9 94 { }
01111366 95
bf38cbff 96#if wxUSE_STREAMS
7beb59f3
WS
97 virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
98 virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
8f177c8e 99
649d13e8 100 virtual int GetImageCount( wxInputStream& stream );
0828c087 101
39d16996 102 bool CanRead( wxInputStream& stream ) { return CallDoCanRead(stream); }
be25e480 103 bool CanRead( const wxString& name );
8f177c8e 104#endif // wxUSE_STREAMS
01111366 105
be25e480
RR
106 void SetName(const wxString& name) { m_name = name; }
107 void SetExtension(const wxString& ext) { m_extension = ext; }
e98e625c 108 void SetType(wxBitmapType type) { m_type = type; }
be25e480 109 void SetMimeType(const wxString& type) { m_mime = type; }
452418c4
PC
110 const wxString& GetName() const { return m_name; }
111 const wxString& GetExtension() const { return m_extension; }
e98e625c 112 wxBitmapType GetType() const { return m_type; }
452418c4 113 const wxString& GetMimeType() const { return m_mime; }
9e9ee68e 114
831b64f3 115#if WXWIN_COMPATIBILITY_2_8
0ddec397
VZ
116 wxDEPRECATED(
117 void SetType(long type) { SetType((wxBitmapType)type); }
118 )
119#endif // WXWIN_COMPATIBILITY_2_8
120
01111366 121protected:
8f177c8e 122#if wxUSE_STREAMS
be25e480 123 virtual bool DoCanRead( wxInputStream& stream ) = 0;
995612e2 124
39d16996
VZ
125 // save the stream position, call DoCanRead() and restore the position
126 bool CallDoCanRead(wxInputStream& stream);
55472691 127#endif // wxUSE_STREAMS
39d16996 128
361f4288
VZ
129 // helper for the derived classes SaveFile() implementations: returns the
130 // values of x- and y-resolution options specified as the image options if
131 // any
132 static wxImageResolution
133 GetResolutionFromOptions(const wxImage& image, int *x, int *y);
134
135
be25e480
RR
136 wxString m_name;
137 wxString m_extension;
138 wxString m_mime;
e98e625c 139 wxBitmapType m_type;
aaf46fd6 140
be25e480
RR
141private:
142 DECLARE_CLASS(wxImageHandler)
8f177c8e
VZ
143};
144
01111366 145//-----------------------------------------------------------------------------
952ae1e8 146// wxImageHistogram
01111366
RR
147//-----------------------------------------------------------------------------
148
53a2db12 149class WXDLLIMPEXP_CORE wxImageHistogramEntry
c9d01afd
GRG
150{
151public:
66f21994 152 wxImageHistogramEntry() { index = value = 0; }
c9d01afd
GRG
153 unsigned long index;
154 unsigned long value;
155};
156
952ae1e8
VS
157WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry,
158 wxIntegerHash, wxIntegerEqual,
3f5c62f9 159 wxImageHistogramBase);
487659e0 160
53a2db12 161class WXDLLIMPEXP_CORE wxImageHistogram : public wxImageHistogramBase
487659e0
VZ
162{
163public:
164 wxImageHistogram() : wxImageHistogramBase(256) { }
165
166 // get the key in the histogram for the given RGB values
167 static unsigned long MakeKey(unsigned char r,
168 unsigned char g,
169 unsigned char b)
170 {
171 return (r << 16) | (g << 8) | b;
172 }
173
174 // find first colour that is not used in the image and has higher
175 // RGB values than RGB(startR, startG, startB)
176 //
177 // returns true and puts this colour in r, g, b (each of which may be NULL)
178 // on success or returns false if there are no more free colours
179 bool FindFirstUnusedColour(unsigned char *r,
180 unsigned char *g,
181 unsigned char *b,
182 unsigned char startR = 1,
183 unsigned char startG = 0,
184 unsigned char startB = 0 ) const;
185};
952ae1e8
VS
186
187//-----------------------------------------------------------------------------
188// wxImage
189//-----------------------------------------------------------------------------
190
53a2db12 191class WXDLLIMPEXP_CORE wxImage: public wxObject
01111366 192{
01111366 193public:
978d3d36
VZ
194 // red, green and blue are 8 bit unsigned integers in the range of 0..255
195 // We use the identifier RGBValue instead of RGB, since RGB is #defined
196 class RGBValue
197 {
198 public:
199 RGBValue(unsigned char r=0, unsigned char g=0, unsigned char b=0)
200 : red(r), green(g), blue(b) {}
ec85956a 201 unsigned char red;
978d3d36
VZ
202 unsigned char green;
203 unsigned char blue;
204 };
205
206 // hue, saturation and value are doubles in the range 0.0..1.0
207 class HSVValue
208 {
209 public:
210 HSVValue(double h=0.0, double s=0.0, double v=0.0)
211 : hue(h), saturation(s), value(v) {}
ec85956a 212 double hue;
978d3d36
VZ
213 double saturation;
214 double value;
215 };
978d3d36 216
e98e625c 217 wxImage() {}
ff865c13 218 wxImage( int width, int height, bool clear = true );
7beb59f3 219 wxImage( int width, int height, unsigned char* data, bool static_data = false );
4ea56379 220 wxImage( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false );
e98e625c 221 wxImage( const wxString& name, wxBitmapType type = wxBITMAP_TYPE_ANY, int index = -1 );
60d43ad8 222 wxImage( const wxString& name, const wxString& mimetype, int index = -1 );
452418c4 223 wxImage( const char* const* xpmData );
aaf46fd6
VZ
224
225#if wxUSE_STREAMS
e98e625c 226 wxImage( wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY, int index = -1 );
60d43ad8 227 wxImage( wxInputStream& stream, const wxString& mimetype, int index = -1 );
aaf46fd6 228#endif // wxUSE_STREAMS
01111366 229
aaa97828 230 bool Create( int width, int height, bool clear = true );
7beb59f3 231 bool Create( int width, int height, unsigned char* data, bool static_data = false );
4ea56379 232 bool Create( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false );
452418c4 233 bool Create( const char* const* xpmData );
29b7b6ca
PC
234#ifdef __BORLANDC__
235 // needed for Borland 5.5
236 wxImage( char** xpmData ) { Create(wx_const_cast(const char* const*, xpmData)); }
237 bool Create( char** xpmData ) { return Create(wx_const_cast(const char* const*, xpmData)); }
238#endif
be25e480 239 void Destroy();
01111366 240
f6bcfd97
BP
241 // creates an identical copy of the image (the = operator
242 // just raises the ref count)
243 wxImage Copy() const;
aaf46fd6 244
be25e480 245 // return the new image with size width*height
b737ad10
RR
246 wxImage GetSubImage( const wxRect& rect) const;
247
248 // Paste the image or part of this image into an image of the given size at the pos
249 // any newly exposed areas will be filled with the rgb colour
2ecf902b 250 // by default if r = g = b = -1 then fill with this image's mask colour or find and
b737ad10 251 // set a suitable mask colour
2ecf902b 252 wxImage Size( const wxSize& size, const wxPoint& pos,
b737ad10 253 int r = -1, int g = -1, int b = -1 ) const;
aaf46fd6 254
f6bcfd97
BP
255 // pastes image into this instance and takes care of
256 // the mask colour and out of bounds problems
aaf46fd6 257 void Paste( const wxImage &image, int x, int y );
23280650 258
be25e480 259 // return the new image with size width*height
07aaa1a4
RR
260 wxImage Scale( int width, int height, int quality = wxIMAGE_QUALITY_NORMAL ) const;
261
262 // box averager and bicubic filters for up/down sampling
263 wxImage ResampleBox(int width, int height) const;
264 wxImage ResampleBicubic(int width, int height) const;
265
266 // blur the image according to the specified pixel radius
24904055
VZ
267 wxImage Blur(int radius) const;
268 wxImage BlurHorizontal(int radius) const;
269 wxImage BlurVertical(int radius) const;
bf78c81c 270
534f0312 271 wxImage ShrinkBy( int xFactor , int yFactor ) const ;
7b2471a0 272
be25e480 273 // rescales the image in place
07aaa1a4 274 wxImage& Rescale( int width, int height, int quality = wxIMAGE_QUALITY_NORMAL ) { return *this = Scale(width, height, quality); }
ce9a75d2 275
b737ad10 276 // resizes the image in place
2ecf902b 277 wxImage& Resize( const wxSize& size, const wxPoint& pos,
b737ad10
RR
278 int r = -1, int g = -1, int b = -1 ) { return *this = Size(size, pos, r, g, b); }
279
7a632f10
JS
280 // Rotates the image about the given point, 'angle' radians.
281 // Returns the rotated image, leaving this image intact.
282 wxImage Rotate(double angle, const wxPoint & centre_of_rotation,
7beb59f3 283 bool interpolating = true, wxPoint * offset_after_rotation = (wxPoint*) NULL) const;
f6bcfd97 284
7beb59f3
WS
285 wxImage Rotate90( bool clockwise = true ) const;
286 wxImage Mirror( bool horizontally = true ) const;
7a632f10 287
be25e480
RR
288 // replace one colour with another
289 void Replace( unsigned char r1, unsigned char g1, unsigned char b1,
290 unsigned char r2, unsigned char g2, unsigned char b2 );
aaf46fd6 291
ec85956a
JS
292 // Convert to greyscale image. Uses the luminance component (Y) of the image.
293 // The luma value (YUV) is calculated using (R * lr) + (G * lg) + (B * lb), defaults to ITU-T BT.601
294 wxImage ConvertToGreyscale( double lr = 0.299, double lg = 0.587, double lb = 0.114 ) const;
295
ff5ad794
VS
296 // convert to monochrome image (<r,g,b> will be replaced by white,
297 // everything else by black)
f515c25a 298 wxImage ConvertToMono( unsigned char r, unsigned char g, unsigned char b ) const;
ce9a75d2 299
be25e480
RR
300 // these routines are slow but safe
301 void SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b );
b737ad10 302 void SetRGB( const wxRect& rect, unsigned char r, unsigned char g, unsigned char b );
f6bcfd97
BP
303 unsigned char GetRed( int x, int y ) const;
304 unsigned char GetGreen( int x, int y ) const;
305 unsigned char GetBlue( int x, int y ) const;
23280650 306
487659e0 307 void SetAlpha(int x, int y, unsigned char alpha);
d30ee785 308 unsigned char GetAlpha(int x, int y) const;
487659e0 309
1f5b2017
VS
310 // find first colour that is not used in the image and has higher
311 // RGB values than <startR,startG,startB>
312 bool FindFirstUnusedColour( unsigned char *r, unsigned char *g, unsigned char *b,
aaf46fd6 313 unsigned char startR = 1, unsigned char startG = 0,
e0a76d8d 314 unsigned char startB = 0 ) const;
1f5b2017 315 // Set image's mask to the area of 'mask' that has <r,g,b> colour
aaf46fd6 316 bool SetMaskFromImage(const wxImage & mask,
1f5b2017 317 unsigned char mr, unsigned char mg, unsigned char mb);
52b64b0a 318
ff5ad794
VS
319 // converts image's alpha channel to mask, if it has any, does nothing
320 // otherwise:
21dc4be5 321 bool ConvertAlphaToMask(unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD);
ff5ad794 322
6408deed
RR
323 // This method converts an image where the original alpha
324 // information is only available as a shades of a colour
325 // (actually shades of grey) typically when you draw anti-
326 // aliased text into a bitmap. The DC drawinf routines
327 // draw grey values on the black background although they
328 // actually mean to draw white with differnt alpha values.
329 // This method reverses it, assuming a black (!) background
16cba29d 330 // and white text (actually only the red channel is read).
6408deed
RR
331 // The method will then fill up the whole image with the
332 // colour given.
16cba29d 333 bool ConvertColourToAlpha( unsigned char r, unsigned char g, unsigned char b );
6408deed 334
be25e480 335 static bool CanRead( const wxString& name );
e98e625c
VZ
336 static int GetImageCount( const wxString& name, wxBitmapType type = wxBITMAP_TYPE_ANY );
337 virtual bool LoadFile( const wxString& name, wxBitmapType type = wxBITMAP_TYPE_ANY, int index = -1 );
60d43ad8 338 virtual bool LoadFile( const wxString& name, const wxString& mimetype, int index = -1 );
bf38cbff
JS
339
340#if wxUSE_STREAMS
be25e480 341 static bool CanRead( wxInputStream& stream );
e98e625c
VZ
342 static int GetImageCount( wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY );
343 virtual bool LoadFile( wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY, int index = -1 );
60d43ad8 344 virtual bool LoadFile( wxInputStream& stream, const wxString& mimetype, int index = -1 );
bf38cbff
JS
345#endif
346
45647dcf 347 virtual bool SaveFile( const wxString& name ) const;
e98e625c 348 virtual bool SaveFile( const wxString& name, wxBitmapType type ) const;
e0a76d8d 349 virtual bool SaveFile( const wxString& name, const wxString& mimetype ) const;
bf38cbff
JS
350
351#if wxUSE_STREAMS
e98e625c 352 virtual bool SaveFile( wxOutputStream& stream, wxBitmapType type ) const;
e0a76d8d 353 virtual bool SaveFile( wxOutputStream& stream, const wxString& mimetype ) const;
bf38cbff 354#endif
01111366 355
b7cacb43
VZ
356 bool Ok() const { return IsOk(); }
357 bool IsOk() const;
be25e480
RR
358 int GetWidth() const;
359 int GetHeight() const;
360
591d3fa2
VZ
361 // Gets the type of image found by LoadFile or specified with SaveFile
362 wxBitmapType GetType() const;
363
487659e0
VZ
364 // these functions provide fastest access to wxImage data but should be
365 // used carefully as no checks are done
366 unsigned char *GetData() const;
4013de12
RD
367 void SetData( unsigned char *data, bool static_data=false );
368 void SetData( unsigned char *data, int new_width, int new_height, bool static_data=false );
487659e0
VZ
369
370 unsigned char *GetAlpha() const; // may return NULL!
371 bool HasAlpha() const { return GetAlpha() != NULL; }
4013de12 372 void SetAlpha(unsigned char *alpha = NULL, bool static_data=false);
828f0936 373 void InitAlpha();
5e5437e0 374
21dc4be5
VZ
375 // return true if this pixel is masked or has alpha less than specified
376 // threshold
377 bool IsTransparent(int x, int y,
378 unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD) const;
379
5e5437e0 380 // Mask functions
be25e480 381 void SetMaskColour( unsigned char r, unsigned char g, unsigned char b );
b737ad10
RR
382 // Get the current mask colour or find a suitable colour
383 // returns true if using current mask colour
384 bool GetOrFindMaskColour( unsigned char *r, unsigned char *g, unsigned char *b ) const;
be25e480
RR
385 unsigned char GetMaskRed() const;
386 unsigned char GetMaskGreen() const;
387 unsigned char GetMaskBlue() const;
7beb59f3 388 void SetMask( bool mask = true );
be25e480
RR
389 bool HasMask() const;
390
d275c7eb 391#if wxUSE_PALETTE
5e5437e0
JS
392 // Palette functions
393 bool HasPalette() const;
394 const wxPalette& GetPalette() const;
395 void SetPalette(const wxPalette& palette);
d275c7eb 396#endif // wxUSE_PALETTE
5e5437e0
JS
397
398 // Option functions (arbitrary name/value mapping)
399 void SetOption(const wxString& name, const wxString& value);
400 void SetOption(const wxString& name, int value);
401 wxString GetOption(const wxString& name) const;
402 int GetOptionInt(const wxString& name) const;
403 bool HasOption(const wxString& name) const;
3f4fc796 404
e0a76d8d 405 unsigned long CountColours( unsigned long stopafter = (unsigned long) -1 ) const;
952ae1e8
VS
406
407 // Computes the histogram of the image and fills a hash table, indexed
408 // with integer keys built as 0xRRGGBB, containing wxImageHistogramEntry
bf78c81c
RD
409 // objects. Each of them contains an 'index' (useful to build a palette
410 // with the image colours) and a 'value', which is the number of pixels
952ae1e8
VS
411 // in the image with that colour.
412 // Returned value: # of entries in the histogram
e0a76d8d 413 unsigned long ComputeHistogram( wxImageHistogram &h ) const;
be25e480 414
978d3d36
VZ
415 // Rotates the hue of each pixel of the image. angle is a double in the range
416 // -1.0..1.0 where -1.0 is -360 degrees and 1.0 is 360 degrees
417 void RotateHue(double angle);
978d3d36 418
be25e480
RR
419 static wxList& GetHandlers() { return sm_handlers; }
420 static void AddHandler( wxImageHandler *handler );
421 static void InsertHandler( wxImageHandler *handler );
422 static bool RemoveHandler( const wxString& name );
423 static wxImageHandler *FindHandler( const wxString& name );
e98e625c
VZ
424 static wxImageHandler *FindHandler( const wxString& extension, wxBitmapType imageType );
425 static wxImageHandler *FindHandler( wxBitmapType imageType );
9e0560c1 426
be25e480
RR
427 static wxImageHandler *FindHandlerMime( const wxString& mimetype );
428
939fadc8
JS
429 static wxString GetImageExtWildcard();
430
be25e480
RR
431 static void CleanUpHandlers();
432 static void InitStandardHandlers();
c9d01afd 433
978d3d36
VZ
434 static HSVValue RGBtoHSV(const RGBValue& rgb);
435 static RGBValue HSVtoRGB(const HSVValue& hsv);
978d3d36 436
831b64f3 437#if WXWIN_COMPATIBILITY_2_8
0ddec397
VZ
438 wxDEPRECATED(
439 wxImage(const wxString& name, long type, int index = -1)
440 {
441 LoadFile(name, (wxBitmapType)type, index);
442 }
443 )
444
445#if wxUSE_STREAMS
446 wxDEPRECATED(
447 wxImage(wxInputStream& stream, long type, int index = -1)
448 {
449 LoadFile(stream, (wxBitmapType)type, index);
450 }
451 )
452
453 wxDEPRECATED(
454 bool LoadFile(wxInputStream& stream, long type, int index = -1)
455 {
456 return LoadFile(stream, (wxBitmapType)type, index);
457 }
458 )
459
460 wxDEPRECATED(
461 bool SaveFile(wxOutputStream& stream, long type) const
462 {
463 return SaveFile(stream, (wxBitmapType)type);
464 }
465 )
466#endif // wxUSE_STREAMS
467
9e0560c1
VZ
468 wxDEPRECATED(
469 bool LoadFile(const wxString& name, long type, int index = -1)
470 {
471 return LoadFile(name, (wxBitmapType)type, index);
472 }
473 )
474
0ddec397
VZ
475 wxDEPRECATED(
476 bool SaveFile(const wxString& name, long type) const
477 {
478 return SaveFile(name, (wxBitmapType)type);
479 }
480 )
481
482 wxDEPRECATED(
483 static wxImageHandler *FindHandler(const wxString& ext, long type)
484 {
485 return FindHandler(ext, (wxBitmapType)type);
486 }
487 )
488
9e0560c1
VZ
489 wxDEPRECATED(
490 static wxImageHandler *FindHandler(long imageType)
491 {
492 return FindHandler((wxBitmapType)imageType);
493 }
494 )
495#endif // WXWIN_COMPATIBILITY_2_8
978d3d36 496
01111366 497protected:
5e5437e0 498 static wxList sm_handlers;
01111366 499
5644ac46
VZ
500 // return the index of the point with the given coordinates or -1 if the
501 // image is invalid of the coordinates are out of range
502 //
503 // note that index must be multiplied by 3 when using it with RGB array
504 long XYToIndex(int x, int y) const;
505
a0f81e9f
PC
506 virtual wxObjectRefData* CreateRefData() const;
507 virtual wxObjectRefData* CloneRefData(const wxObjectRefData* data) const;
508
be25e480 509private:
b5dbe15d 510 friend class WXDLLIMPEXP_FWD_CORE wxImageHandler;
23280650 511
591d3fa2
VZ
512#if wxUSE_STREAMS
513 // read the image from the specified stream updating image type if
514 // successful
515 bool DoLoad(wxImageHandler& handler, wxInputStream& stream, int index);
516
517 // write the image to the specified stream and also update the image type
518 // if successful
519 bool DoSave(wxImageHandler& handler, wxOutputStream& stream) const;
520#endif // wxUSE_STREAMS
521
be25e480 522 DECLARE_DYNAMIC_CLASS(wxImage)
01111366
RR
523};
524
8f493002 525
53a2db12 526extern void WXDLLIMPEXP_CORE wxInitAllImageHandlers();
b5a4a47d 527
53a2db12 528extern WXDLLIMPEXP_DATA_CORE(wxImage) wxNullImage;
8f493002
VS
529
530//-----------------------------------------------------------------------------
531// wxImage handlers
532//-----------------------------------------------------------------------------
533
534#include "wx/imagbmp.h"
535#include "wx/imagpng.h"
536#include "wx/imaggif.h"
537#include "wx/imagpcx.h"
538#include "wx/imagjpeg.h"
3af706cc 539#include "wx/imagtga.h"
8f493002
VS
540#include "wx/imagtiff.h"
541#include "wx/imagpnm.h"
775c6f0c 542#include "wx/imagxpm.h"
4b6b4dfc 543#include "wx/imagiff.h"
775c6f0c
VS
544
545#endif // wxUSE_IMAGE
8f493002 546
01111366
RR
547#endif
548 // _WX_IMAGE_H_