]>
Commit | Line | Data |
---|---|---|
cf694132 | 1 | ///////////////////////////////////////////////////////////////////////////// |
d14a1e28 RD |
2 | // Name: _image.i |
3 | // Purpose: SWIG definitions for wxImage and such | |
cf694132 RD |
4 | // |
5 | // Author: Robin Dunn | |
6 | // | |
d14a1e28 | 7 | // Created: 25-Sept-2000 |
cf694132 | 8 | // RCS-ID: $Id$ |
d14a1e28 | 9 | // Copyright: (c) 2003 by Total Control Software |
cf694132 RD |
10 | // Licence: wxWindows license |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
d14a1e28 | 13 | // Not a %module |
cf694132 | 14 | |
d14a1e28 RD |
15 | |
16 | //--------------------------------------------------------------------------- | |
cf694132 RD |
17 | |
18 | %{ | |
d14a1e28 | 19 | #include "wx/wxPython/pyistream.h" |
cf694132 RD |
20 | %} |
21 | ||
9cbf6f6e | 22 | //--------------------------------------------------------------------------- |
d14a1e28 | 23 | %newgroup |
9cbf6f6e | 24 | |
cf694132 | 25 | |
9416aa89 | 26 | class wxImageHandler : public wxObject { |
cf694132 | 27 | public: |
1dec68aa | 28 | // wxImageHandler(); Abstract Base Class |
cf694132 RD |
29 | wxString GetName(); |
30 | wxString GetExtension(); | |
31 | long GetType(); | |
32 | wxString GetMimeType(); | |
33 | ||
34 | //bool LoadFile(wxImage* image, wxInputStream& stream); | |
35 | //bool SaveFile(wxImage* image, wxOutputStream& stream); | |
b5a5d647 RD |
36 | //virtual int GetImageCount( wxInputStream& stream ); |
37 | //bool CanRead( wxInputStream& stream ); | |
38 | ||
39 | bool CanRead( const wxString& name ); | |
cf694132 RD |
40 | |
41 | void SetName(const wxString& name); | |
42 | void SetExtension(const wxString& extension); | |
43 | void SetType(long type); | |
44 | void SetMimeType(const wxString& mimetype); | |
45 | }; | |
46 | ||
cf694132 | 47 | |
d14a1e28 | 48 | //--------------------------------------------------------------------------- |
cf694132 | 49 | |
d14a1e28 RD |
50 | class wxImageHistogram /* : public wxImageHistogramBase */ |
51 | { | |
06c0fba4 | 52 | public: |
d14a1e28 | 53 | wxImageHistogram(); |
cf694132 | 54 | |
dd9f7fea | 55 | DocStr(MakeKey, "Get the key in the histogram for the given RGB values"); |
d14a1e28 RD |
56 | static unsigned long MakeKey(unsigned char r, |
57 | unsigned char g, | |
58 | unsigned char b); | |
cf694132 | 59 | |
dd9f7fea RD |
60 | DocDeclAStr( |
61 | bool, FindFirstUnusedColour(unsigned char *OUTPUT, | |
62 | unsigned char *OUTPUT, | |
63 | unsigned char *OUTPUT, | |
64 | unsigned char startR = 1, | |
65 | unsigned char startG = 0, | |
66 | unsigned char startB = 0 ) const, | |
67 | "FindFirstUnusedColour(int startR=1, int startG=0, int startB=0) -> (success, r, g, b)", | |
68 | "Find first colour that is not used in the image and has higher RGB values than\n" | |
69 | "startR, startG, startB. Returns a tuple consisting of a success flag and rgb\n" | |
70 | "values."); | |
9b3d3bc4 RD |
71 | }; |
72 | ||
73 | ||
cf694132 RD |
74 | //--------------------------------------------------------------------------- |
75 | ||
d14a1e28 | 76 | |
9416aa89 | 77 | class wxImage : public wxObject { |
cf694132 | 78 | public: |
b5a5d647 | 79 | wxImage( const wxString& name, long type = wxBITMAP_TYPE_ANY, int index = -1 ); |
cf694132 RD |
80 | ~wxImage(); |
81 | ||
d14a1e28 RD |
82 | // Alternate constructors |
83 | %name(ImageFromMime) wxImage(const wxString& name, const wxString& mimetype, int index = -1); | |
84 | %name(ImageFromStream) wxImage(wxInputStream& stream, long type = wxBITMAP_TYPE_ANY, int index = -1); | |
85 | %name(ImageFromStreamMime) wxImage(wxInputStream& stream, const wxString& mimetype, int index = -1 ); | |
86 | %extend { | |
dd9f7fea | 87 | %name(EmptyImage) wxImage(int width=0, int height=0, bool clear = True) { |
d14a1e28 RD |
88 | if (width > 0 && height > 0) |
89 | return new wxImage(width, height, clear); | |
90 | else | |
91 | return new wxImage; | |
92 | } | |
93 | ||
94 | %name(ImageFromBitmap) wxImage(const wxBitmap &bitmap) { | |
95 | return new wxImage(bitmap.ConvertToImage()); | |
96 | } | |
97 | ||
98 | %name(ImageFromData) wxImage(int width, int height, unsigned char* data) { | |
99 | // Copy the source data so the wxImage can clean it up later | |
100 | unsigned char* copy = (unsigned char*)malloc(width*height*3); | |
101 | if (copy == NULL) { | |
102 | PyErr_NoMemory(); | |
103 | return NULL; | |
104 | } | |
105 | memcpy(copy, data, width*height*3); | |
dd9f7fea | 106 | return new wxImage(width, height, copy, False); |
d14a1e28 RD |
107 | } |
108 | } | |
109 | ||
cf694132 RD |
110 | void Create( int width, int height ); |
111 | void Destroy(); | |
6c0168c9 | 112 | |
cf694132 | 113 | wxImage Scale( int width, int height ); |
9cbf6f6e | 114 | wxImage ShrinkBy( int xFactor , int yFactor ) const ; |
f6bcfd97 | 115 | wxImage& Rescale(int width, int height); |
cf694132 RD |
116 | |
117 | void SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b ); | |
118 | unsigned char GetRed( int x, int y ); | |
119 | unsigned char GetGreen( int x, int y ); | |
120 | unsigned char GetBlue( int x, int y ); | |
121 | ||
9cbf6f6e RD |
122 | void SetAlpha(int x, int y, unsigned char alpha); |
123 | unsigned char GetAlpha(int x, int y); | |
124 | bool HasAlpha(); | |
125 | ||
126 | // find first colour that is not used in the image and has higher | |
68bc8549 | 127 | // RGB values than <startR,startG,startB> |
dd9f7fea RD |
128 | DocDeclAStr( |
129 | bool, FindFirstUnusedColour( byte *OUTPUT, byte *OUTPUT, byte *OUTPUT, | |
130 | byte startR = 0, byte startG = 0, byte startB = 0 ) const, | |
131 | "FindFirstUnusedColour(int startR=1, int startG=0, int startB=0) -> (success, r, g, b)", | |
132 | "Find first colour that is not used in the image and has higher RGB values than\n" | |
133 | "startR, startG, startB. Returns a tuple consisting of a success flag and rgb\n" | |
134 | "values."); | |
135 | ||
68bc8549 RD |
136 | |
137 | // Set image's mask to the area of 'mask' that has <mr,mg,mb> colour | |
138 | bool SetMaskFromImage(const wxImage & mask, | |
139 | byte mr, byte mg, byte mb); | |
140 | ||
db0ff83e RD |
141 | // void DoFloodFill (wxCoord x, wxCoord y, |
142 | // const wxBrush & fillBrush, | |
143 | // const wxColour& testColour, | |
144 | // int style = wxFLOOD_SURFACE, | |
145 | // int LogicalFunction = wxCOPY /* currently unused */ ) ; | |
68bc8549 | 146 | |
96bfd053 | 147 | static bool CanRead( const wxString& name ); |
b5a5d647 RD |
148 | static int GetImageCount( const wxString& name, long type = wxBITMAP_TYPE_ANY ); |
149 | ||
150 | bool LoadFile( const wxString& name, long type = wxBITMAP_TYPE_ANY, int index = -1 ); | |
151 | %name(LoadMimeFile)bool LoadFile( const wxString& name, const wxString& mimetype, int index = -1 ); | |
cf694132 RD |
152 | |
153 | bool SaveFile( const wxString& name, int type ); | |
154 | %name(SaveMimeFile)bool SaveFile( const wxString& name, const wxString& mimetype ); | |
155 | ||
f74ff5ef RD |
156 | %name(CanReadStream) static bool CanRead( wxInputStream& stream ); |
157 | %name(LoadStream) bool LoadFile( wxInputStream& stream, long type = wxBITMAP_TYPE_ANY, int index = -1 ); | |
158 | %name(LoadMimeStream) bool LoadFile( wxInputStream& stream, const wxString& mimetype, int index = -1 ); | |
159 | ||
cf694132 RD |
160 | bool Ok(); |
161 | int GetWidth(); | |
162 | int GetHeight(); | |
163 | ||
9d8bd15f | 164 | wxImage GetSubImage(const wxRect& rect); |
f6bcfd97 BP |
165 | wxImage Copy(); |
166 | void Paste( const wxImage &image, int x, int y ); | |
9d8bd15f | 167 | |
1dc2f865 RD |
168 | //unsigned char *GetData(); |
169 | //void SetData( unsigned char *data ); | |
170 | ||
d14a1e28 | 171 | %extend { |
9cbf6f6e | 172 | PyObject* GetData() { |
d55d6b3f RD |
173 | unsigned char* data = self->GetData(); |
174 | int len = self->GetWidth() * self->GetHeight() * 3; | |
d14a1e28 RD |
175 | PyObject* rv; |
176 | wxPyBLOCK_THREADS( rv = PyString_FromStringAndSize((char*)data, len)); | |
177 | return rv; | |
d55d6b3f | 178 | } |
9cbf6f6e RD |
179 | void SetData(PyObject* data) { |
180 | unsigned char* dataPtr; | |
d55d6b3f | 181 | |
9cbf6f6e RD |
182 | if (! PyString_Check(data)) { |
183 | PyErr_SetString(PyExc_TypeError, "Expected string object"); | |
184 | return /* NULL */ ; | |
185 | } | |
186 | ||
187 | size_t len = self->GetWidth() * self->GetHeight() * 3; | |
188 | dataPtr = (unsigned char*) malloc(len); | |
d14a1e28 | 189 | wxPyBLOCK_THREADS( memcpy(dataPtr, PyString_AsString(data), len) ); |
9cbf6f6e RD |
190 | self->SetData(dataPtr); |
191 | // wxImage takes ownership of dataPtr... | |
192 | } | |
193 | ||
194 | ||
195 | ||
196 | PyObject* GetDataBuffer() { | |
1dc2f865 RD |
197 | unsigned char* data = self->GetData(); |
198 | int len = self->GetWidth() * self->GetHeight() * 3; | |
d14a1e28 RD |
199 | PyObject* rv; |
200 | wxPyBLOCK_THREADS( rv = PyBuffer_FromReadWriteMemory(data, len) ); | |
201 | return rv; | |
1dc2f865 | 202 | } |
1e4a197e RD |
203 | void SetDataBuffer(PyObject* data) { |
204 | unsigned char* buffer; | |
205 | int size; | |
206 | ||
d14a1e28 RD |
207 | wxPyBeginBlockThreads(); |
208 | if (!PyArg_Parse(data, "t#", &buffer, &size)) | |
209 | goto done; | |
1e4a197e RD |
210 | |
211 | if (size != self->GetWidth() * self->GetHeight() * 3) { | |
212 | PyErr_SetString(PyExc_TypeError, "Incorrect buffer size"); | |
d14a1e28 | 213 | goto done; |
1e4a197e | 214 | } |
1e4a197e | 215 | self->SetData(buffer); |
d14a1e28 RD |
216 | done: |
217 | wxPyEndBlockThreads(); | |
1e4a197e RD |
218 | } |
219 | ||
9cbf6f6e RD |
220 | |
221 | ||
222 | PyObject* GetAlphaData() { | |
223 | unsigned char* data = self->GetAlpha(); | |
224 | if (! data) { | |
225 | RETURN_NONE(); | |
226 | } else { | |
227 | int len = self->GetWidth() * self->GetHeight(); | |
d14a1e28 RD |
228 | PyObject* rv; |
229 | wxPyBLOCK_THREADS( rv = PyString_FromStringAndSize((char*)data, len) ); | |
230 | return rv; | |
9cbf6f6e RD |
231 | } |
232 | } | |
233 | void SetAlphaData(PyObject* data) { | |
1dc2f865 RD |
234 | unsigned char* dataPtr; |
235 | ||
236 | if (! PyString_Check(data)) { | |
237 | PyErr_SetString(PyExc_TypeError, "Expected string object"); | |
238 | return /* NULL */ ; | |
239 | } | |
9d8bd15f | 240 | |
9cbf6f6e | 241 | size_t len = self->GetWidth() * self->GetHeight(); |
185d7c3e | 242 | dataPtr = (unsigned char*) malloc(len); |
d14a1e28 | 243 | wxPyBLOCK_THREADS( memcpy(dataPtr, PyString_AsString(data), len) ); |
9cbf6f6e | 244 | self->SetAlpha(dataPtr); |
3b5ccda1 | 245 | // wxImage takes ownership of dataPtr... |
1dc2f865 | 246 | } |
9cbf6f6e RD |
247 | |
248 | ||
249 | ||
250 | PyObject* GetAlphaBuffer() { | |
251 | unsigned char* data = self->GetAlpha(); | |
252 | int len = self->GetWidth() * self->GetHeight(); | |
d14a1e28 RD |
253 | PyObject* rv; |
254 | wxPyBLOCK_THREADS( rv = PyBuffer_FromReadWriteMemory(data, len) ); | |
255 | return rv; | |
9cbf6f6e RD |
256 | } |
257 | void SetAlphaBuffer(PyObject* data) { | |
258 | unsigned char* buffer; | |
259 | int size; | |
260 | ||
d14a1e28 RD |
261 | wxPyBeginBlockThreads(); |
262 | if (!PyArg_Parse(data, "t#", &buffer, &size)) | |
263 | goto done; | |
9cbf6f6e RD |
264 | |
265 | if (size != self->GetWidth() * self->GetHeight()) { | |
266 | PyErr_SetString(PyExc_TypeError, "Incorrect buffer size"); | |
d14a1e28 | 267 | goto done; |
9cbf6f6e RD |
268 | } |
269 | self->SetAlpha(buffer); | |
d14a1e28 RD |
270 | done: |
271 | wxPyEndBlockThreads(); | |
9cbf6f6e | 272 | } |
1dc2f865 | 273 | } |
cf694132 RD |
274 | |
275 | void SetMaskColour( unsigned char r, unsigned char g, unsigned char b ); | |
276 | unsigned char GetMaskRed(); | |
277 | unsigned char GetMaskGreen(); | |
278 | unsigned char GetMaskBlue(); | |
dd9f7fea | 279 | void SetMask( bool mask = True ); |
cf694132 RD |
280 | bool HasMask(); |
281 | ||
f6bcfd97 | 282 | wxImage Rotate(double angle, const wxPoint & centre_of_rotation, |
dd9f7fea RD |
283 | bool interpolating = True, wxPoint * offset_after_rotation = NULL) const ; |
284 | wxImage Rotate90( bool clockwise = True ) ; | |
285 | wxImage Mirror( bool horizontally = True ) ; | |
f6bcfd97 BP |
286 | |
287 | void Replace( unsigned char r1, unsigned char g1, unsigned char b1, | |
288 | unsigned char r2, unsigned char g2, unsigned char b2 ); | |
289 | ||
6c0168c9 RD |
290 | // convert to monochrome image (<r,g,b> will be replaced by white, everything else by black) |
291 | wxImage ConvertToMono( unsigned char r, unsigned char g, unsigned char b ) const; | |
292 | ||
293 | void SetOption(const wxString& name, const wxString& value); | |
294 | %name(SetOptionInt)void SetOption(const wxString& name, int value); | |
295 | wxString GetOption(const wxString& name) const; | |
296 | int GetOptionInt(const wxString& name) const; | |
297 | bool HasOption(const wxString& name) const; | |
298 | ||
f6bcfd97 | 299 | unsigned long CountColours( unsigned long stopafter = (unsigned long) -1 ); |
9cbf6f6e | 300 | unsigned long ComputeHistogram( wxImageHistogram& h ); |
f6bcfd97 | 301 | |
96bfd053 RD |
302 | static void AddHandler( wxImageHandler *handler ); |
303 | static void InsertHandler( wxImageHandler *handler ); | |
304 | static bool RemoveHandler( const wxString& name ); | |
3ef86e32 | 305 | static wxString GetImageExtWildcard(); |
b96c7a38 RD |
306 | |
307 | ||
d14a1e28 | 308 | %extend { |
b96c7a38 RD |
309 | wxBitmap ConvertToBitmap() { |
310 | wxBitmap bitmap(*self); | |
311 | return bitmap; | |
312 | } | |
313 | ||
314 | wxBitmap ConvertToMonoBitmap( unsigned char red, | |
315 | unsigned char green, | |
316 | unsigned char blue ) { | |
317 | wxImage mono = self->ConvertToMono( red, green, blue ); | |
318 | wxBitmap bitmap( mono, 1 ); | |
319 | return bitmap; | |
320 | } | |
321 | } | |
1fded56b | 322 | |
d14a1e28 | 323 | %pythoncode { def __nonzero__(self): return self.Ok() } |
cf694132 RD |
324 | }; |
325 | ||
926bb76c | 326 | |
f74ff5ef | 327 | |
d14a1e28 | 328 | void wxInitAllImageHandlers(); |
cf694132 | 329 | |
f74ff5ef | 330 | |
d14a1e28 RD |
331 | // See also wxPy_ReinitStockObjects in helpers.cpp |
332 | %immutable; | |
333 | const wxImage wxNullImage; | |
334 | %mutable; | |
cf694132 | 335 | |
d14a1e28 | 336 | //--------------------------------------------------------------------------- |
f74ff5ef | 337 | |
b5a5d647 | 338 | |
d14a1e28 RD |
339 | MAKE_CONST_WXSTRING(IMAGE_OPTION_BMP_FORMAT); |
340 | MAKE_CONST_WXSTRING(IMAGE_OPTION_CUR_HOTSPOT_X); | |
341 | MAKE_CONST_WXSTRING(IMAGE_OPTION_CUR_HOTSPOT_Y); | |
342 | MAKE_CONST_WXSTRING(IMAGE_OPTION_RESOLUTION); | |
343 | MAKE_CONST_WXSTRING(IMAGE_OPTION_RESOLUTIONUNIT); | |
f74ff5ef | 344 | |
d14a1e28 RD |
345 | enum |
346 | { | |
347 | wxIMAGE_RESOLUTION_INCHES = 1, | |
348 | wxIMAGE_RESOLUTION_CM = 2 | |
349 | }; | |
f74ff5ef RD |
350 | |
351 | ||
d14a1e28 RD |
352 | enum |
353 | { | |
354 | wxBMP_24BPP = 24, // default, do not need to set | |
355 | //wxBMP_16BPP = 16, // wxQuantize can only do 236 colors? | |
356 | wxBMP_8BPP = 8, // 8bpp, quantized colors | |
357 | wxBMP_8BPP_GREY = 9, // 8bpp, rgb averaged to greys | |
358 | wxBMP_8BPP_GRAY = wxBMP_8BPP_GREY, | |
359 | wxBMP_8BPP_RED = 10, // 8bpp, red used as greyscale | |
360 | wxBMP_8BPP_PALETTE = 11, // 8bpp, use the wxImage's palette | |
361 | wxBMP_4BPP = 4, // 4bpp, quantized colors | |
362 | wxBMP_1BPP = 1, // 1bpp, quantized "colors" | |
363 | wxBMP_1BPP_BW = 2 // 1bpp, black & white from red | |
364 | }; | |
f74ff5ef RD |
365 | |
366 | ||
d14a1e28 RD |
367 | class wxBMPHandler : public wxImageHandler { |
368 | public: | |
369 | wxBMPHandler(); | |
370 | }; | |
cf694132 | 371 | |
d14a1e28 RD |
372 | class wxICOHandler : public wxBMPHandler { |
373 | public: | |
374 | wxICOHandler(); | |
375 | }; | |
f74ff5ef | 376 | |
d14a1e28 RD |
377 | class wxCURHandler : public wxICOHandler { |
378 | public: | |
379 | wxCURHandler(); | |
380 | }; | |
f74ff5ef | 381 | |
d14a1e28 RD |
382 | class wxANIHandler : public wxCURHandler { |
383 | public: | |
384 | wxANIHandler(); | |
385 | }; | |
06c0fba4 | 386 | |
0a651eb8 | 387 | |
d14a1e28 | 388 | //--------------------------------------------------------------------------- |
0a651eb8 | 389 | |
d14a1e28 RD |
390 | class wxPNGHandler : public wxImageHandler { |
391 | public: | |
392 | wxPNGHandler(); | |
393 | }; | |
0a651eb8 | 394 | |
0a651eb8 | 395 | |
d14a1e28 RD |
396 | class wxGIFHandler : public wxImageHandler { |
397 | public: | |
398 | wxGIFHandler(); | |
399 | }; | |
0a651eb8 RD |
400 | |
401 | ||
d14a1e28 RD |
402 | class wxPCXHandler : public wxImageHandler { |
403 | public: | |
404 | wxPCXHandler(); | |
405 | }; | |
926bb76c | 406 | |
926bb76c | 407 | |
d14a1e28 RD |
408 | class wxJPEGHandler : public wxImageHandler { |
409 | public: | |
410 | wxJPEGHandler(); | |
411 | }; | |
926bb76c | 412 | |
926bb76c | 413 | |
d14a1e28 RD |
414 | class wxPNMHandler : public wxImageHandler { |
415 | public: | |
416 | wxPNMHandler(); | |
417 | }; | |
418 | ||
419 | class wxXPMHandler : public wxImageHandler { | |
420 | public: | |
421 | wxXPMHandler(); | |
422 | }; | |
423 | ||
424 | class wxTIFFHandler : public wxImageHandler { | |
425 | public: | |
426 | wxTIFFHandler(); | |
427 | }; | |
428 | ||
429 | ||
430 | #if wxUSE_IFF | |
431 | class wxIFFHandler : public wxImageHandler { | |
432 | public: | |
433 | wxIFFHandler(); | |
434 | }; | |
435 | #endif | |
926bb76c | 436 | |
cf694132 | 437 | //--------------------------------------------------------------------------- |