1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxImage class
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
14 #pragma interface "image.h"
18 #include "wx/object.h"
19 #include "wx/string.h"
20 #include "wx/gdicmn.h"
21 #include "wx/bitmap.h"
24 # include "wx/stream.h"
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 class WXDLLEXPORT wxImageHandler
;
34 class WXDLLEXPORT wxImage
;
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 class WXDLLEXPORT wxImageHandler
: public wxObject
43 wxImageHandler() { m_name
= ""; m_extension
= ""; m_type
= 0; }
46 virtual bool LoadFile( wxImage
*image
, wxInputStream
& stream
, bool verbose
=TRUE
, int index
=0 );
47 virtual bool SaveFile( wxImage
*image
, wxOutputStream
& stream
, bool verbose
=TRUE
);
49 virtual int GetImageCount( wxInputStream
& stream
);
51 bool CanRead( wxInputStream
& stream
) { return DoCanRead(stream
); }
52 bool CanRead( const wxString
& name
);
53 #endif // wxUSE_STREAMS
55 void SetName(const wxString
& name
) { m_name
= name
; }
56 void SetExtension(const wxString
& ext
) { m_extension
= ext
; }
57 void SetType(long type
) { m_type
= type
; }
58 void SetMimeType(const wxString
& type
) { m_mime
= type
; }
59 wxString
GetName() const { return m_name
; }
60 wxString
GetExtension() const { return m_extension
; }
61 long GetType() const { return m_type
; }
62 wxString
GetMimeType() const { return m_mime
; }
66 virtual bool DoCanRead( wxInputStream
& stream
) = 0;
67 #endif // wxUSE_STREAMS
75 DECLARE_CLASS(wxImageHandler
)
78 //-----------------------------------------------------------------------------
80 //-----------------------------------------------------------------------------
82 class WXDLLEXPORT wxHNode
89 class WXDLLEXPORT wxImage
: public wxObject
93 wxImage( int width
, int height
);
94 wxImage( int width
, int height
, unsigned char* data
, bool static_data
= FALSE
);
95 wxImage( const wxString
& name
, long type
= wxBITMAP_TYPE_ANY
);
96 wxImage( wxInputStream
& stream
, long type
= wxBITMAP_TYPE_ANY
);
97 wxImage( const wxString
& name
, const wxString
& mimetype
);
98 wxImage( wxInputStream
& stream
, const wxString
& mimetype
);
100 wxImage( const wxImage
& image
);
101 wxImage( const wxImage
* image
);
104 // convertion to/from wxBitmap (deprecated, use wxBitmap's methods instead):
105 wxImage( const wxBitmap
&bitmap
);
106 operator wxBitmap() const { return ConvertToBitmap(); }
107 wxBitmap
ConvertToBitmap() const;
109 wxBitmap
ConvertToMonoBitmap( unsigned char red
, unsigned char green
, unsigned char blue
) const;
113 void Create( int width
, int height
);
114 void Create( int width
, int height
, unsigned char* data
, bool static_data
= FALSE
);
117 // creates an identical copy of the image (the = operator
118 // just raises the ref count)
119 wxImage
Copy() const;
121 // return the new image with size width*height
122 wxImage
GetSubImage( const wxRect
& ) const;
124 // pastes image into this instance and takes care of
125 // the mask colour and out of bounds problems
126 void Paste( const wxImage
&image
, int x
, int y
);
128 // return the new image with size width*height
129 wxImage
Scale( int width
, int height
) const;
131 // rescales the image in place
132 wxImage
& Rescale( int width
, int height
) { return *this = Scale(width
, height
); }
134 // Rotates the image about the given point, 'angle' radians.
135 // Returns the rotated image, leaving this image intact.
136 wxImage
Rotate(double angle
, const wxPoint
& centre_of_rotation
,
137 bool interpolating
= TRUE
, wxPoint
* offset_after_rotation
= (wxPoint
*) NULL
) const;
139 wxImage
Rotate90( bool clockwise
= TRUE
) const;
140 wxImage
Mirror( bool horizontally
= TRUE
) const;
142 // replace one colour with another
143 void Replace( unsigned char r1
, unsigned char g1
, unsigned char b1
,
144 unsigned char r2
, unsigned char g2
, unsigned char b2
);
146 // convert to monochrome image (<r,g,b> will be replaced by white, everything else by black)
147 wxImage
ConvertToMono( unsigned char r
, unsigned char g
, unsigned char b
) const;
149 // these routines are slow but safe
150 void SetRGB( int x
, int y
, unsigned char r
, unsigned char g
, unsigned char b
);
151 unsigned char GetRed( int x
, int y
) const;
152 unsigned char GetGreen( int x
, int y
) const;
153 unsigned char GetBlue( int x
, int y
) const;
155 static bool CanRead( const wxString
& name
);
156 virtual bool LoadFile( const wxString
& name
, long type
= wxBITMAP_TYPE_ANY
);
157 virtual bool LoadFile( const wxString
& name
, const wxString
& mimetype
);
160 static bool CanRead( wxInputStream
& stream
);
161 virtual bool LoadFile( wxInputStream
& stream
, long type
= wxBITMAP_TYPE_ANY
);
162 virtual bool LoadFile( wxInputStream
& stream
, const wxString
& mimetype
);
165 virtual bool SaveFile( const wxString
& name
, int type
);
166 virtual bool SaveFile( const wxString
& name
, const wxString
& mimetype
);
169 virtual bool SaveFile( wxOutputStream
& stream
, int type
);
170 virtual bool SaveFile( wxOutputStream
& stream
, const wxString
& mimetype
);
174 int GetWidth() const;
175 int GetHeight() const;
177 char unsigned *GetData() const;
178 void SetData( char unsigned *data
);
179 void SetData( char unsigned *data
, int new_width
, int new_height
);
182 void SetMaskColour( unsigned char r
, unsigned char g
, unsigned char b
);
183 unsigned char GetMaskRed() const;
184 unsigned char GetMaskGreen() const;
185 unsigned char GetMaskBlue() const;
186 void SetMask( bool mask
= TRUE
);
187 bool HasMask() const;
190 bool HasPalette() const;
191 const wxPalette
& GetPalette() const;
192 void SetPalette(const wxPalette
& palette
);
194 // Option functions (arbitrary name/value mapping)
195 void SetOption(const wxString
& name
, const wxString
& value
);
196 void SetOption(const wxString
& name
, int value
);
197 wxString
GetOption(const wxString
& name
) const;
198 int GetOptionInt(const wxString
& name
) const;
199 bool HasOption(const wxString
& name
) const;
201 unsigned long CountColours( unsigned long stopafter
= (unsigned long) -1 );
202 unsigned long ComputeHistogram( wxHashTable
&h
);
204 wxImage
& operator = (const wxImage
& image
)
206 if ( (*this) != image
)
211 bool operator == (const wxImage
& image
)
212 { return m_refData
== image
.m_refData
; }
213 bool operator != (const wxImage
& image
)
214 { return m_refData
!= image
.m_refData
; }
216 static wxList
& GetHandlers() { return sm_handlers
; }
217 static void AddHandler( wxImageHandler
*handler
);
218 static void InsertHandler( wxImageHandler
*handler
);
219 static bool RemoveHandler( const wxString
& name
);
220 static wxImageHandler
*FindHandler( const wxString
& name
);
221 static wxImageHandler
*FindHandler( const wxString
& extension
, long imageType
);
222 static wxImageHandler
*FindHandler( long imageType
);
223 static wxImageHandler
*FindHandlerMime( const wxString
& mimetype
);
225 static void CleanUpHandlers();
226 static void InitStandardHandlers();
229 static wxList sm_handlers
;
232 friend class WXDLLEXPORT wxImageHandler
;
234 DECLARE_DYNAMIC_CLASS(wxImage
)
238 extern void WXDLLEXPORT
wxInitAllImageHandlers();
240 WXDLLEXPORT_DATA(extern wxImage
) wxNullImage
;
242 //-----------------------------------------------------------------------------
244 //-----------------------------------------------------------------------------
246 #include "wx/imagbmp.h"
247 #include "wx/imagpng.h"
248 #include "wx/imaggif.h"
249 #include "wx/imagpcx.h"
250 #include "wx/imagjpeg.h"
251 #include "wx/imagtiff.h"
252 #include "wx/imagpnm.h"
253 #include "wx/imagxpm.h"
255 #endif // wxUSE_IMAGE