1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxImage class
4 // Author: Robert Roebling
5 // Copyright: (c) Robert Roebling
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
16 #include "wx/object.h"
17 #include "wx/string.h"
18 #include "wx/gdicmn.h"
19 #include "wx/hashmap.h"
20 #include "wx/arrstr.h"
23 # include "wx/stream.h"
26 // on some systems (Unixware 7.x) index is defined as a macro in the headers
27 // which breaks the compilation below
30 #define wxIMAGE_OPTION_QUALITY wxString(wxS("quality"))
31 #define wxIMAGE_OPTION_FILENAME wxString(wxS("FileName"))
33 #define wxIMAGE_OPTION_RESOLUTION wxString(wxS("Resolution"))
34 #define wxIMAGE_OPTION_RESOLUTIONX wxString(wxS("ResolutionX"))
35 #define wxIMAGE_OPTION_RESOLUTIONY wxString(wxS("ResolutionY"))
37 #define wxIMAGE_OPTION_RESOLUTIONUNIT wxString(wxS("ResolutionUnit"))
39 #define wxIMAGE_OPTION_MAX_WIDTH wxString(wxS("MaxWidth"))
40 #define wxIMAGE_OPTION_MAX_HEIGHT wxString(wxS("MaxHeight"))
42 #define wxIMAGE_OPTION_ORIGINAL_WIDTH wxString(wxS("OriginalWidth"))
43 #define wxIMAGE_OPTION_ORIGINAL_HEIGHT wxString(wxS("OriginalHeight"))
45 // constants used with wxIMAGE_OPTION_RESOLUTIONUNIT
47 // NB: don't change these values, they correspond to libjpeg constants
48 enum wxImageResolution
50 // Resolution not specified
51 wxIMAGE_RESOLUTION_NONE
= 0,
53 // Resolution specified in inches
54 wxIMAGE_RESOLUTION_INCHES
= 1,
56 // Resolution specified in centimeters
57 wxIMAGE_RESOLUTION_CM
= 2
60 // Constants for wxImage::Scale() for determining the level of quality
61 enum wxImageResizeQuality
63 // different image resizing algorithms used by Scale() and Rescale()
64 wxIMAGE_QUALITY_NEAREST
= 0,
65 wxIMAGE_QUALITY_BILINEAR
= 1,
66 wxIMAGE_QUALITY_BICUBIC
= 2,
67 wxIMAGE_QUALITY_BOX_AVERAGE
= 3,
69 // default quality is low (but fast)
70 wxIMAGE_QUALITY_NORMAL
= wxIMAGE_QUALITY_NEAREST
,
72 // highest (but best) quality
73 wxIMAGE_QUALITY_HIGH
= 4
76 // alpha channel values: fully transparent, default threshold separating
77 // transparent pixels from opaque for a few functions dealing with alpha and
79 const unsigned char wxIMAGE_ALPHA_TRANSPARENT
= 0;
80 const unsigned char wxIMAGE_ALPHA_THRESHOLD
= 0x80;
81 const unsigned char wxIMAGE_ALPHA_OPAQUE
= 0xff;
83 //-----------------------------------------------------------------------------
85 //-----------------------------------------------------------------------------
87 class WXDLLIMPEXP_FWD_CORE wxImageHandler
;
88 class WXDLLIMPEXP_FWD_CORE wxImage
;
89 class WXDLLIMPEXP_FWD_CORE wxPalette
;
91 //-----------------------------------------------------------------------------
93 //-----------------------------------------------------------------------------
96 #include "wx/variant.h"
97 DECLARE_VARIANT_OBJECT_EXPORTED(wxImage
,WXDLLIMPEXP_CORE
)
100 //-----------------------------------------------------------------------------
102 //-----------------------------------------------------------------------------
104 class WXDLLIMPEXP_CORE wxImageHandler
: public wxObject
108 : m_name(wxEmptyString
), m_extension(wxEmptyString
), m_mime(), m_type(wxBITMAP_TYPE_INVALID
)
112 // NOTE: LoadFile and SaveFile are not pure virtuals to allow derived classes
113 // to implement only one of the two
114 virtual bool LoadFile( wxImage
*WXUNUSED(image
), wxInputStream
& WXUNUSED(stream
),
115 bool WXUNUSED(verbose
)=true, int WXUNUSED(index
)=-1 )
117 virtual bool SaveFile( wxImage
*WXUNUSED(image
), wxOutputStream
& WXUNUSED(stream
),
118 bool WXUNUSED(verbose
)=true )
121 int GetImageCount( wxInputStream
& stream
);
122 // save the stream position, call DoGetImageCount() and restore the position
124 bool CanRead( wxInputStream
& stream
) { return CallDoCanRead(stream
); }
125 bool CanRead( const wxString
& name
);
126 #endif // wxUSE_STREAMS
128 void SetName(const wxString
& name
) { m_name
= name
; }
129 void SetExtension(const wxString
& ext
) { m_extension
= ext
; }
130 void SetAltExtensions(const wxArrayString
& exts
) { m_altExtensions
= exts
; }
131 void SetType(wxBitmapType type
) { m_type
= type
; }
132 void SetMimeType(const wxString
& type
) { m_mime
= type
; }
133 const wxString
& GetName() const { return m_name
; }
134 const wxString
& GetExtension() const { return m_extension
; }
135 const wxArrayString
& GetAltExtensions() const { return m_altExtensions
; }
136 wxBitmapType
GetType() const { return m_type
; }
137 const wxString
& GetMimeType() const { return m_mime
; }
139 #if WXWIN_COMPATIBILITY_2_8
141 void SetType(long type
) { SetType((wxBitmapType
)type
); }
143 #endif // WXWIN_COMPATIBILITY_2_8
147 // NOTE: this function is allowed to change the current stream position
148 // since GetImageCount() will take care of restoring it later
149 virtual int DoGetImageCount( wxInputStream
& WXUNUSED(stream
) )
150 { return 1; } // default return value is 1 image
152 // NOTE: this function is allowed to change the current stream position
153 // since CallDoCanRead() will take care of restoring it later
154 virtual bool DoCanRead( wxInputStream
& stream
) = 0;
156 // save the stream position, call DoCanRead() and restore the position
157 bool CallDoCanRead(wxInputStream
& stream
);
158 #endif // wxUSE_STREAMS
160 // helper for the derived classes SaveFile() implementations: returns the
161 // values of x- and y-resolution options specified as the image options if
163 static wxImageResolution
164 GetResolutionFromOptions(const wxImage
& image
, int *x
, int *y
);
168 wxString m_extension
;
169 wxArrayString m_altExtensions
;
174 DECLARE_CLASS(wxImageHandler
)
177 //-----------------------------------------------------------------------------
179 //-----------------------------------------------------------------------------
181 class WXDLLIMPEXP_CORE wxImageHistogramEntry
184 wxImageHistogramEntry() { index
= value
= 0; }
189 WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry
,
190 wxIntegerHash
, wxIntegerEqual
,
191 wxImageHistogramBase
);
193 class WXDLLIMPEXP_CORE wxImageHistogram
: public wxImageHistogramBase
196 wxImageHistogram() : wxImageHistogramBase(256) { }
198 // get the key in the histogram for the given RGB values
199 static unsigned long MakeKey(unsigned char r
,
203 return (r
<< 16) | (g
<< 8) | b
;
206 // find first colour that is not used in the image and has higher
207 // RGB values than RGB(startR, startG, startB)
209 // returns true and puts this colour in r, g, b (each of which may be NULL)
210 // on success or returns false if there are no more free colours
211 bool FindFirstUnusedColour(unsigned char *r
,
214 unsigned char startR
= 1,
215 unsigned char startG
= 0,
216 unsigned char startB
= 0 ) const;
219 //-----------------------------------------------------------------------------
221 //-----------------------------------------------------------------------------
223 class WXDLLIMPEXP_CORE wxImage
: public wxObject
226 // red, green and blue are 8 bit unsigned integers in the range of 0..255
227 // We use the identifier RGBValue instead of RGB, since RGB is #defined
231 RGBValue(unsigned char r
=0, unsigned char g
=0, unsigned char b
=0)
232 : red(r
), green(g
), blue(b
) {}
238 // hue, saturation and value are doubles in the range 0.0..1.0
242 HSVValue(double h
=0.0, double s
=0.0, double v
=0.0)
243 : hue(h
), saturation(s
), value(v
) {}
250 wxImage( int width
, int height
, bool clear
= true )
251 { Create( width
, height
, clear
); }
252 wxImage( int width
, int height
, unsigned char* data
, bool static_data
= false )
253 { Create( width
, height
, data
, static_data
); }
254 wxImage( int width
, int height
, unsigned char* data
, unsigned char* alpha
, bool static_data
= false )
255 { Create( width
, height
, data
, alpha
, static_data
); }
257 // ctor variants using wxSize:
258 wxImage( const wxSize
& sz
, bool clear
= true )
259 { Create( sz
, clear
); }
260 wxImage( const wxSize
& sz
, unsigned char* data
, bool static_data
= false )
261 { Create( sz
, data
, static_data
); }
262 wxImage( const wxSize
& sz
, unsigned char* data
, unsigned char* alpha
, bool static_data
= false )
263 { Create( sz
, data
, alpha
, static_data
); }
265 wxImage( const wxString
& name
, wxBitmapType type
= wxBITMAP_TYPE_ANY
, int index
= -1 )
266 { LoadFile( name
, type
, index
); }
267 wxImage( const wxString
& name
, const wxString
& mimetype
, int index
= -1 )
268 { LoadFile( name
, mimetype
, index
); }
269 wxImage( const char* const* xpmData
)
273 wxImage( wxInputStream
& stream
, wxBitmapType type
= wxBITMAP_TYPE_ANY
, int index
= -1 )
274 { LoadFile( stream
, type
, index
); }
275 wxImage( wxInputStream
& stream
, const wxString
& mimetype
, int index
= -1 )
276 { LoadFile( stream
, mimetype
, index
); }
277 #endif // wxUSE_STREAMS
279 bool Create( const char* const* xpmData
);
281 // needed for Borland 5.5
282 wxImage( char** xpmData
) { Create(const_cast<const char* const*>(xpmData
)); }
283 bool Create( char** xpmData
) { return Create(const_cast<const char* const*>(xpmData
)); }
286 bool Create( int width
, int height
, bool clear
= true );
287 bool Create( int width
, int height
, unsigned char* data
, bool static_data
= false );
288 bool Create( int width
, int height
, unsigned char* data
, unsigned char* alpha
, bool static_data
= false );
290 // Create() variants using wxSize:
291 bool Create( const wxSize
& sz
, bool clear
= true )
292 { return Create(sz
.GetWidth(), sz
.GetHeight(), clear
); }
293 bool Create( const wxSize
& sz
, unsigned char* data
, bool static_data
= false )
294 { return Create(sz
.GetWidth(), sz
.GetHeight(), data
, static_data
); }
295 bool Create( const wxSize
& sz
, unsigned char* data
, unsigned char* alpha
, bool static_data
= false )
296 { return Create(sz
.GetWidth(), sz
.GetHeight(), data
, alpha
, static_data
); }
300 // initialize the image data with zeroes
301 void Clear(unsigned char value
= 0);
303 // creates an identical copy of the image (the = operator
304 // just raises the ref count)
305 wxImage
Copy() const;
307 // return the new image with size width*height
308 wxImage
GetSubImage( const wxRect
& rect
) const;
310 // Paste the image or part of this image into an image of the given size at the pos
311 // any newly exposed areas will be filled with the rgb colour
312 // by default if r = g = b = -1 then fill with this image's mask colour or find and
313 // set a suitable mask colour
314 wxImage
Size( const wxSize
& size
, const wxPoint
& pos
,
315 int r
= -1, int g
= -1, int b
= -1 ) const;
317 // pastes image into this instance and takes care of
318 // the mask colour and out of bounds problems
319 void Paste( const wxImage
&image
, int x
, int y
);
321 // return the new image with size width*height
322 wxImage
Scale( int width
, int height
,
323 wxImageResizeQuality quality
= wxIMAGE_QUALITY_NORMAL
) const;
325 // box averager and bicubic filters for up/down sampling
326 wxImage
ResampleNearest(int width
, int height
) const;
327 wxImage
ResampleBox(int width
, int height
) const;
328 wxImage
ResampleBilinear(int width
, int height
) const;
329 wxImage
ResampleBicubic(int width
, int height
) const;
331 // blur the image according to the specified pixel radius
332 wxImage
Blur(int radius
) const;
333 wxImage
BlurHorizontal(int radius
) const;
334 wxImage
BlurVertical(int radius
) const;
336 wxImage
ShrinkBy( int xFactor
, int yFactor
) const ;
338 // rescales the image in place
339 wxImage
& Rescale( int width
, int height
,
340 wxImageResizeQuality quality
= wxIMAGE_QUALITY_NORMAL
)
341 { return *this = Scale(width
, height
, quality
); }
343 // resizes the image in place
344 wxImage
& Resize( const wxSize
& size
, const wxPoint
& pos
,
345 int r
= -1, int g
= -1, int b
= -1 ) { return *this = Size(size
, pos
, r
, g
, b
); }
347 // Rotates the image about the given point, 'angle' radians.
348 // Returns the rotated image, leaving this image intact.
349 wxImage
Rotate(double angle
, const wxPoint
& centre_of_rotation
,
350 bool interpolating
= true, wxPoint
* offset_after_rotation
= NULL
) const;
352 wxImage
Rotate90( bool clockwise
= true ) const;
353 wxImage
Rotate180() const;
354 wxImage
Mirror( bool horizontally
= true ) const;
356 // replace one colour with another
357 void Replace( unsigned char r1
, unsigned char g1
, unsigned char b1
,
358 unsigned char r2
, unsigned char g2
, unsigned char b2
);
360 // Convert to greyscale image. Uses the luminance component (Y) of the image.
361 // The luma value (YUV) is calculated using (R * weight_r) + (G * weight_g) + (B * weight_b), defaults to ITU-T BT.601
362 wxImage
ConvertToGreyscale(double weight_r
, double weight_g
, double weight_b
) const;
363 wxImage
ConvertToGreyscale(void) const;
365 // convert to monochrome image (<r,g,b> will be replaced by white,
366 // everything else by black)
367 wxImage
ConvertToMono( unsigned char r
, unsigned char g
, unsigned char b
) const;
369 // Convert to disabled (dimmed) image.
370 wxImage
ConvertToDisabled(unsigned char brightness
= 255) const;
372 // these routines are slow but safe
373 void SetRGB( int x
, int y
, unsigned char r
, unsigned char g
, unsigned char b
);
374 void SetRGB( const wxRect
& rect
, unsigned char r
, unsigned char g
, unsigned char b
);
375 unsigned char GetRed( int x
, int y
) const;
376 unsigned char GetGreen( int x
, int y
) const;
377 unsigned char GetBlue( int x
, int y
) const;
379 void SetAlpha(int x
, int y
, unsigned char alpha
);
380 unsigned char GetAlpha(int x
, int y
) const;
382 // find first colour that is not used in the image and has higher
383 // RGB values than <startR,startG,startB>
384 bool FindFirstUnusedColour( unsigned char *r
, unsigned char *g
, unsigned char *b
,
385 unsigned char startR
= 1, unsigned char startG
= 0,
386 unsigned char startB
= 0 ) const;
387 // Set image's mask to the area of 'mask' that has <r,g,b> colour
388 bool SetMaskFromImage(const wxImage
& mask
,
389 unsigned char mr
, unsigned char mg
, unsigned char mb
);
391 // converts image's alpha channel to mask (choosing mask colour
392 // automatically or using the specified colour for the mask), if it has
393 // any, does nothing otherwise:
394 bool ConvertAlphaToMask(unsigned char threshold
= wxIMAGE_ALPHA_THRESHOLD
);
395 bool ConvertAlphaToMask(unsigned char mr
, unsigned char mg
, unsigned char mb
,
396 unsigned char threshold
= wxIMAGE_ALPHA_THRESHOLD
);
399 // This method converts an image where the original alpha
400 // information is only available as a shades of a colour
401 // (actually shades of grey) typically when you draw anti-
402 // aliased text into a bitmap. The DC drawinf routines
403 // draw grey values on the black background although they
404 // actually mean to draw white with differnt alpha values.
405 // This method reverses it, assuming a black (!) background
406 // and white text (actually only the red channel is read).
407 // The method will then fill up the whole image with the
409 bool ConvertColourToAlpha( unsigned char r
, unsigned char g
, unsigned char b
);
411 static bool CanRead( const wxString
& name
);
412 static int GetImageCount( const wxString
& name
, wxBitmapType type
= wxBITMAP_TYPE_ANY
);
413 virtual bool LoadFile( const wxString
& name
, wxBitmapType type
= wxBITMAP_TYPE_ANY
, int index
= -1 );
414 virtual bool LoadFile( const wxString
& name
, const wxString
& mimetype
, int index
= -1 );
417 static bool CanRead( wxInputStream
& stream
);
418 static int GetImageCount( wxInputStream
& stream
, wxBitmapType type
= wxBITMAP_TYPE_ANY
);
419 virtual bool LoadFile( wxInputStream
& stream
, wxBitmapType type
= wxBITMAP_TYPE_ANY
, int index
= -1 );
420 virtual bool LoadFile( wxInputStream
& stream
, const wxString
& mimetype
, int index
= -1 );
423 virtual bool SaveFile( const wxString
& name
) const;
424 virtual bool SaveFile( const wxString
& name
, wxBitmapType type
) const;
425 virtual bool SaveFile( const wxString
& name
, const wxString
& mimetype
) const;
428 virtual bool SaveFile( wxOutputStream
& stream
, wxBitmapType type
) const;
429 virtual bool SaveFile( wxOutputStream
& stream
, const wxString
& mimetype
) const;
432 bool Ok() const { return IsOk(); }
434 int GetWidth() const;
435 int GetHeight() const;
437 wxSize
GetSize() const
438 { return wxSize(GetWidth(), GetHeight()); }
440 // Gets the type of image found by LoadFile or specified with SaveFile
441 wxBitmapType
GetType() const;
443 // Set the image type, this is normally only called if the image is being
444 // created from data in the given format but not using LoadFile() (e.g.
445 // wxGIFDecoder uses this)
446 void SetType(wxBitmapType type
);
448 // these functions provide fastest access to wxImage data but should be
449 // used carefully as no checks are done
450 unsigned char *GetData() const;
451 void SetData( unsigned char *data
, bool static_data
=false );
452 void SetData( unsigned char *data
, int new_width
, int new_height
, bool static_data
=false );
454 unsigned char *GetAlpha() const; // may return NULL!
455 bool HasAlpha() const { return GetAlpha() != NULL
; }
456 void SetAlpha(unsigned char *alpha
= NULL
, bool static_data
=false);
460 // return true if this pixel is masked or has alpha less than specified
462 bool IsTransparent(int x
, int y
,
463 unsigned char threshold
= wxIMAGE_ALPHA_THRESHOLD
) const;
466 void SetMaskColour( unsigned char r
, unsigned char g
, unsigned char b
);
467 // Get the current mask colour or find a suitable colour
468 // returns true if using current mask colour
469 bool GetOrFindMaskColour( unsigned char *r
, unsigned char *g
, unsigned char *b
) const;
470 unsigned char GetMaskRed() const;
471 unsigned char GetMaskGreen() const;
472 unsigned char GetMaskBlue() const;
473 void SetMask( bool mask
= true );
474 bool HasMask() const;
478 bool HasPalette() const;
479 const wxPalette
& GetPalette() const;
480 void SetPalette(const wxPalette
& palette
);
481 #endif // wxUSE_PALETTE
483 // Option functions (arbitrary name/value mapping)
484 void SetOption(const wxString
& name
, const wxString
& value
);
485 void SetOption(const wxString
& name
, int value
);
486 wxString
GetOption(const wxString
& name
) const;
487 int GetOptionInt(const wxString
& name
) const;
488 bool HasOption(const wxString
& name
) const;
490 unsigned long CountColours( unsigned long stopafter
= (unsigned long) -1 ) const;
492 // Computes the histogram of the image and fills a hash table, indexed
493 // with integer keys built as 0xRRGGBB, containing wxImageHistogramEntry
494 // objects. Each of them contains an 'index' (useful to build a palette
495 // with the image colours) and a 'value', which is the number of pixels
496 // in the image with that colour.
497 // Returned value: # of entries in the histogram
498 unsigned long ComputeHistogram( wxImageHistogram
&h
) const;
500 // Rotates the hue of each pixel of the image. angle is a double in the range
501 // -1.0..1.0 where -1.0 is -360 degrees and 1.0 is 360 degrees
502 void RotateHue(double angle
);
504 static wxList
& GetHandlers() { return sm_handlers
; }
505 static void AddHandler( wxImageHandler
*handler
);
506 static void InsertHandler( wxImageHandler
*handler
);
507 static bool RemoveHandler( const wxString
& name
);
508 static wxImageHandler
*FindHandler( const wxString
& name
);
509 static wxImageHandler
*FindHandler( const wxString
& extension
, wxBitmapType imageType
);
510 static wxImageHandler
*FindHandler( wxBitmapType imageType
);
512 static wxImageHandler
*FindHandlerMime( const wxString
& mimetype
);
514 static wxString
GetImageExtWildcard();
516 static void CleanUpHandlers();
517 static void InitStandardHandlers();
519 static HSVValue
RGBtoHSV(const RGBValue
& rgb
);
520 static RGBValue
HSVtoRGB(const HSVValue
& hsv
);
522 #if WXWIN_COMPATIBILITY_2_8
523 wxDEPRECATED_CONSTRUCTOR(
524 wxImage(const wxString
& name
, long type
, int index
= -1)
526 LoadFile(name
, (wxBitmapType
)type
, index
);
531 wxDEPRECATED_CONSTRUCTOR(
532 wxImage(wxInputStream
& stream
, long type
, int index
= -1)
534 LoadFile(stream
, (wxBitmapType
)type
, index
);
539 bool LoadFile(wxInputStream
& stream
, long type
, int index
= -1)
541 return LoadFile(stream
, (wxBitmapType
)type
, index
);
546 bool SaveFile(wxOutputStream
& stream
, long type
) const
548 return SaveFile(stream
, (wxBitmapType
)type
);
551 #endif // wxUSE_STREAMS
554 bool LoadFile(const wxString
& name
, long type
, int index
= -1)
556 return LoadFile(name
, (wxBitmapType
)type
, index
);
561 bool SaveFile(const wxString
& name
, long type
) const
563 return SaveFile(name
, (wxBitmapType
)type
);
568 wxImageHandler
*FindHandler(const wxString
& ext
, long type
)
570 return FindHandler(ext
, (wxBitmapType
)type
);
575 wxImageHandler
*FindHandler(long imageType
)
577 return FindHandler((wxBitmapType
)imageType
);
580 #endif // WXWIN_COMPATIBILITY_2_8
583 static wxList sm_handlers
;
585 // return the index of the point with the given coordinates or -1 if the
586 // image is invalid of the coordinates are out of range
588 // note that index must be multiplied by 3 when using it with RGB array
589 long XYToIndex(int x
, int y
) const;
591 virtual wxObjectRefData
* CreateRefData() const;
592 virtual wxObjectRefData
* CloneRefData(const wxObjectRefData
* data
) const;
595 friend class WXDLLIMPEXP_FWD_CORE wxImageHandler
;
597 // Possible values for MakeEmptyClone() flags.
600 // Create an image with the same orientation as this one. This is the
601 // default and only exists for symmetry with SwapOrientation.
602 Clone_SameOrientation
= 0,
604 // Create an image with the same height as this image width and the
605 // same width as this image height.
606 Clone_SwapOrientation
= 1
609 // Returns a new blank image with the same dimensions (or with width and
610 // height swapped if Clone_SwapOrientation flag is given), alpha, and mask
611 // as this image itself. This is used by several functions creating
612 // modified versions of this image.
613 wxImage
MakeEmptyClone(int flags
= Clone_SameOrientation
) const;
616 // read the image from the specified stream updating image type if
618 bool DoLoad(wxImageHandler
& handler
, wxInputStream
& stream
, int index
);
620 // write the image to the specified stream and also update the image type
622 bool DoSave(wxImageHandler
& handler
, wxOutputStream
& stream
) const;
623 #endif // wxUSE_STREAMS
625 DECLARE_DYNAMIC_CLASS(wxImage
)
629 extern void WXDLLIMPEXP_CORE
wxInitAllImageHandlers();
631 extern WXDLLIMPEXP_DATA_CORE(wxImage
) wxNullImage
;
633 //-----------------------------------------------------------------------------
635 //-----------------------------------------------------------------------------
637 #include "wx/imagbmp.h"
638 #include "wx/imagpng.h"
639 #include "wx/imaggif.h"
640 #include "wx/imagpcx.h"
641 #include "wx/imagjpeg.h"
642 #include "wx/imagtga.h"
643 #include "wx/imagtiff.h"
644 #include "wx/imagpnm.h"
645 #include "wx/imagxpm.h"
646 #include "wx/imagiff.h"
648 #endif // wxUSE_IMAGE