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"
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 class WXDLLEXPORT wxImageHandler
;
32 class WXDLLEXPORT wxImage
;
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 class WXDLLEXPORT wxImageHandler
: public wxObject
41 wxImageHandler() { m_name
= ""; m_extension
= ""; m_type
= 0; }
44 virtual bool LoadFile( wxImage
*image
, wxInputStream
& stream
, bool verbose
=TRUE
, int index
=0 );
45 virtual bool SaveFile( wxImage
*image
, wxOutputStream
& stream
, bool verbose
=TRUE
);
47 virtual int GetImageCount( wxInputStream
& stream
);
49 bool CanRead( wxInputStream
& stream
) { return DoCanRead(stream
); }
50 bool CanRead( const wxString
& name
);
51 #endif // wxUSE_STREAMS
53 void SetName(const wxString
& name
) { m_name
= name
; }
54 void SetExtension(const wxString
& ext
) { m_extension
= ext
; }
55 void SetType(long type
) { m_type
= type
; }
56 void SetMimeType(const wxString
& type
) { m_mime
= type
; }
57 wxString
GetName() const { return m_name
; }
58 wxString
GetExtension() const { return m_extension
; }
59 long GetType() const { return m_type
; }
60 wxString
GetMimeType() const { return m_mime
; }
64 virtual bool DoCanRead( wxInputStream
& stream
) = 0;
65 #endif // wxUSE_STREAMS
73 DECLARE_CLASS(wxImageHandler
)
76 //-----------------------------------------------------------------------------
78 //-----------------------------------------------------------------------------
80 class WXDLLEXPORT wxHNode
87 class WXDLLEXPORT wxImage
: public wxObject
91 wxImage( int width
, int height
);
92 wxImage( const wxString
& name
, long type
= wxBITMAP_TYPE_ANY
);
93 wxImage( wxInputStream
& stream
, long type
= wxBITMAP_TYPE_ANY
);
94 wxImage( const wxString
& name
, const wxString
& mimetype
);
95 wxImage( wxInputStream
& stream
, const wxString
& mimetype
);
97 wxImage( const wxImage
& image
);
98 wxImage( const wxImage
* image
);
100 // these functions get implemented in /src/(platform)/bitmap.cpp
101 wxImage( const wxBitmap
&bitmap
);
102 operator wxBitmap() const { return ConvertToBitmap(); }
103 wxBitmap
ConvertToBitmap() const;
105 wxBitmap
ConvertToMonoBitmap( unsigned char red
, unsigned char green
, unsigned char blue
);
108 void Create( int width
, int height
);
111 // return the new image with size width*height
112 wxImage
GetSubImage( const wxRect
& ) const;
114 // return the new image with size width*height
115 wxImage
Scale( int width
, int height
) const;
117 // rescales the image in place
118 wxImage
& Rescale( int width
, int height
) { return *this = Scale(width
, height
); }
120 // Rotates the image about the given point, 'angle' radians.
121 // Returns the rotated image, leaving this image intact.
122 wxImage
Rotate(double angle
, const wxPoint
& centre_of_rotation
,
123 bool interpolating
= TRUE
, wxPoint
* offset_after_rotation
= (wxPoint
*) NULL
) const ;
125 // replace one colour with another
126 void Replace( unsigned char r1
, unsigned char g1
, unsigned char b1
,
127 unsigned char r2
, unsigned char g2
, unsigned char b2
);
129 // these routines are slow but safe
130 void SetRGB( int x
, int y
, unsigned char r
, unsigned char g
, unsigned char b
);
131 unsigned char GetRed( int x
, int y
);
132 unsigned char GetGreen( int x
, int y
);
133 unsigned char GetBlue( int x
, int y
);
135 static bool CanRead( const wxString
& name
);
136 virtual bool LoadFile( const wxString
& name
, long type
= wxBITMAP_TYPE_ANY
);
137 virtual bool LoadFile( const wxString
& name
, const wxString
& mimetype
);
140 static bool CanRead( wxInputStream
& stream
);
141 virtual bool LoadFile( wxInputStream
& stream
, long type
= wxBITMAP_TYPE_ANY
);
142 virtual bool LoadFile( wxInputStream
& stream
, const wxString
& mimetype
);
145 virtual bool SaveFile( const wxString
& name
, int type
);
146 virtual bool SaveFile( const wxString
& name
, const wxString
& mimetype
);
149 virtual bool SaveFile( wxOutputStream
& stream
, int type
);
150 virtual bool SaveFile( wxOutputStream
& stream
, const wxString
& mimetype
);
154 int GetWidth() const;
155 int GetHeight() const;
157 char unsigned *GetData() const;
158 void SetData( char unsigned *data
);
160 void SetMaskColour( unsigned char r
, unsigned char g
, unsigned char b
);
161 unsigned char GetMaskRed() const;
162 unsigned char GetMaskGreen() const;
163 unsigned char GetMaskBlue() const;
164 void SetMask( bool mask
= TRUE
);
165 bool HasMask() const;
167 unsigned long CountColours( unsigned long stopafter
= (unsigned long) -1 );
168 unsigned long ComputeHistogram( wxHashTable
&h
);
170 wxImage
& operator = (const wxImage
& image
)
172 if ( (*this) != image
)
177 bool operator == (const wxImage
& image
)
178 { return m_refData
== image
.m_refData
; }
179 bool operator != (const wxImage
& image
)
180 { return m_refData
!= image
.m_refData
; }
182 static wxList
& GetHandlers() { return sm_handlers
; }
183 static void AddHandler( wxImageHandler
*handler
);
184 static void InsertHandler( wxImageHandler
*handler
);
185 static bool RemoveHandler( const wxString
& name
);
186 static wxImageHandler
*FindHandler( const wxString
& name
);
187 static wxImageHandler
*FindHandler( const wxString
& extension
, long imageType
);
188 static wxImageHandler
*FindHandler( long imageType
);
189 static wxImageHandler
*FindHandlerMime( const wxString
& mimetype
);
191 static void CleanUpHandlers();
192 static void InitStandardHandlers();
195 static wxList sm_handlers
;
198 friend class WXDLLEXPORT wxImageHandler
;
200 DECLARE_DYNAMIC_CLASS(wxImage
)
204 extern void WXDLLEXPORT
wxInitAllImageHandlers();
207 //-----------------------------------------------------------------------------
209 //-----------------------------------------------------------------------------
211 #include "wx/imagbmp.h"
212 #include "wx/imagpng.h"
213 #include "wx/imaggif.h"
214 #include "wx/imagpcx.h"
215 #include "wx/imagjpeg.h"
216 #include "wx/imagtiff.h"
217 #include "wx/imagpnm.h"