]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: image.h | |
3 | // Purpose: interface of wxImageHandler and wxImage | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows licence | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | Possible values for the image resolution option. | |
11 | ||
12 | @see wxImage::GetOptionInt(). | |
13 | */ | |
14 | enum wxImageResolution | |
15 | { | |
16 | /// Resolution not specified. | |
17 | wxIMAGE_RESOLUTION_NONE = 0, | |
18 | ||
19 | /// Resolution specified in inches. | |
20 | wxIMAGE_RESOLUTION_INCHES = 1, | |
21 | ||
22 | /// Resolution specified in centimetres. | |
23 | wxIMAGE_RESOLUTION_CM = 2 | |
24 | }; | |
25 | ||
26 | /** | |
27 | Image resize algorithm. | |
28 | ||
29 | This is used with wxImage::Scale() and wxImage::Rescale(). | |
30 | */ | |
31 | enum wxImageResizeQuality | |
32 | { | |
33 | /// Simplest and fastest algorithm. | |
34 | wxIMAGE_QUALITY_NEAREST, | |
35 | ||
36 | /// Compromise between wxIMAGE_QUALITY_NEAREST and wxIMAGE_QUALITY_BICUBIC. | |
37 | wxIMAGE_QUALITY_BILINEAR, | |
38 | ||
39 | /// Highest quality but slowest execution time. | |
40 | wxIMAGE_QUALITY_BICUBIC, | |
41 | ||
42 | /** | |
43 | Use surrounding pixels to calculate an average that will be used for | |
44 | new pixels. This method is typically used when reducing the size of | |
45 | an image. | |
46 | */ | |
47 | wxIMAGE_QUALITY_BOX_AVERAGE, | |
48 | ||
49 | /** | |
50 | Default image resizing algorithm used by wxImage::Scale(). Currently | |
51 | the same as wxIMAGE_QUALITY_NEAREST. | |
52 | */ | |
53 | wxIMAGE_QUALITY_NORMAL, | |
54 | ||
55 | /** | |
56 | Best image resizing algorithm. Since version 2.9.2 this results in | |
57 | wxIMAGE_QUALITY_BOX_AVERAGE being used when reducing the size of the | |
58 | image (meaning that both the new width and height will be smaller than | |
59 | the original size). Otherwise wxIMAGE_QUALITY_BICUBIC is used. | |
60 | */ | |
61 | wxIMAGE_QUALITY_HIGH | |
62 | }; | |
63 | ||
64 | /** | |
65 | Possible values for PNG image type option. | |
66 | ||
67 | @see wxImage::GetOptionInt(). | |
68 | */ | |
69 | enum wxImagePNGType | |
70 | { | |
71 | wxPNG_TYPE_COLOUR = 0, ///< Colour PNG image. | |
72 | wxPNG_TYPE_GREY = 2, ///< Greyscale PNG image converted from RGB. | |
73 | wxPNG_TYPE_GREY_RED = 3, ///< Greyscale PNG image using red as grey. | |
74 | wxPNG_TYPE_PALETTE = 4 ///< Palette encoding. | |
75 | }; | |
76 | ||
77 | ||
78 | /** | |
79 | Image option names. | |
80 | */ | |
81 | #define wxIMAGE_OPTION_QUALITY wxString("quality") | |
82 | #define wxIMAGE_OPTION_FILENAME wxString("FileName") | |
83 | #define wxIMAGE_OPTION_RESOLUTION wxString("Resolution") | |
84 | #define wxIMAGE_OPTION_RESOLUTIONX wxString("ResolutionX") | |
85 | #define wxIMAGE_OPTION_RESOLUTIONY wxString("ResolutionY") | |
86 | #define wxIMAGE_OPTION_RESOLUTIONUNIT wxString("ResolutionUnit") | |
87 | #define wxIMAGE_OPTION_MAX_WIDTH wxString("MaxWidth") | |
88 | #define wxIMAGE_OPTION_MAX_HEIGHT wxString("MaxHeight") | |
89 | #define wxIMAGE_OPTION_ORIGINAL_WIDTH wxString("OriginalWidth") | |
90 | #define wxIMAGE_OPTION_ORIGINAL_HEIGHT wxString("OriginalHeight") | |
91 | ||
92 | #define wxIMAGE_OPTION_BMP_FORMAT wxString("wxBMP_FORMAT") | |
93 | #define wxIMAGE_OPTION_CUR_HOTSPOT_X wxString("HotSpotX") | |
94 | #define wxIMAGE_OPTION_CUR_HOTSPOT_Y wxString("HotSpotY") | |
95 | ||
96 | #define wxIMAGE_OPTION_GIF_COMMENT wxString("GifComment") | |
97 | ||
98 | #define wxIMAGE_OPTION_PNG_FORMAT wxString("PngFormat") | |
99 | #define wxIMAGE_OPTION_PNG_BITDEPTH wxString("PngBitDepth") | |
100 | #define wxIMAGE_OPTION_PNG_FILTER wxString("PngF") | |
101 | #define wxIMAGE_OPTION_PNG_COMPRESSION_LEVEL wxString("PngZL") | |
102 | #define wxIMAGE_OPTION_PNG_COMPRESSION_MEM_LEVEL wxString("PngZM") | |
103 | #define wxIMAGE_OPTION_PNG_COMPRESSION_STRATEGY wxString("PngZS") | |
104 | #define wxIMAGE_OPTION_PNG_COMPRESSION_BUFFER_SIZE wxString("PngZB") | |
105 | ||
106 | #define wxIMAGE_OPTION_TIFF_BITSPERSAMPLE wxString("BitsPerSample") | |
107 | #define wxIMAGE_OPTION_TIFF_SAMPLESPERPIXEL wxString("SamplesPerPixel") | |
108 | #define wxIMAGE_OPTION_TIFF_COMPRESSION wxString("Compression") | |
109 | #define wxIMAGE_OPTION_TIFF_PHOTOMETRIC wxString("Photometric") | |
110 | #define wxIMAGE_OPTION_TIFF_IMAGEDESCRIPTOR wxString("ImageDescriptor") | |
111 | ||
112 | ||
113 | enum | |
114 | { | |
115 | wxBMP_24BPP = 24, // default, do not need to set | |
116 | //wxBMP_16BPP = 16, // wxQuantize can only do 236 colors? | |
117 | wxBMP_8BPP = 8, // 8bpp, quantized colors | |
118 | wxBMP_8BPP_GREY = 9, // 8bpp, rgb averaged to greys | |
119 | wxBMP_8BPP_GRAY = wxBMP_8BPP_GREY, | |
120 | wxBMP_8BPP_RED = 10, // 8bpp, red used as greyscale | |
121 | wxBMP_8BPP_PALETTE = 11, // 8bpp, use the wxImage's palette | |
122 | wxBMP_4BPP = 4, // 4bpp, quantized colors | |
123 | wxBMP_1BPP = 1, // 1bpp, quantized "colors" | |
124 | wxBMP_1BPP_BW = 2 // 1bpp, black & white from red | |
125 | }; | |
126 | ||
127 | ||
128 | /** | |
129 | @class wxImageHandler | |
130 | ||
131 | This is the base class for implementing image file loading/saving, and | |
132 | image creation from data. | |
133 | It is used within wxImage and is not normally seen by the application. | |
134 | ||
135 | If you wish to extend the capabilities of wxImage, derive a class from | |
136 | wxImageHandler and add the handler using wxImage::AddHandler in your | |
137 | application initialization. | |
138 | ||
139 | Note that all wxImageHandlers provided by wxWidgets are part of | |
140 | the @ref page_libs_wxcore library. | |
141 | For details about the default handlers, please see the section | |
142 | @ref image_handlers in the wxImage class documentation. | |
143 | ||
144 | ||
145 | @section imagehandler_note Note (Legal Issue) | |
146 | ||
147 | This software is based in part on the work of the Independent JPEG Group. | |
148 | (Applies when wxWidgets is linked with JPEG support. | |
149 | wxJPEGHandler uses libjpeg created by IJG.) | |
150 | ||
151 | ||
152 | @stdobjects | |
153 | ::wxNullImage | |
154 | ||
155 | @library{wxcore} | |
156 | @category{gdi} | |
157 | ||
158 | @see wxImage, wxInitAllImageHandlers() | |
159 | */ | |
160 | class wxImageHandler : public wxObject | |
161 | { | |
162 | public: | |
163 | /** | |
164 | Default constructor. | |
165 | ||
166 | In your own default constructor, initialise the members | |
167 | m_name, m_extension and m_type. | |
168 | */ | |
169 | wxImageHandler(); | |
170 | ||
171 | /** | |
172 | Destroys the wxImageHandler object. | |
173 | */ | |
174 | virtual ~wxImageHandler(); | |
175 | ||
176 | /** | |
177 | Returns @true if this handler supports the image format contained in the | |
178 | given stream. | |
179 | ||
180 | This function doesn't modify the current stream position (because it | |
181 | restores the original position before returning; this however requires the | |
182 | stream to be seekable; see wxStreamBase::IsSeekable). | |
183 | */ | |
184 | bool CanRead( wxInputStream& stream ); | |
185 | ||
186 | /** | |
187 | Returns @true if this handler supports the image format contained in the | |
188 | file with the given name. | |
189 | ||
190 | This function doesn't modify the current stream position (because it | |
191 | restores the original position before returning; this however requires the | |
192 | stream to be seekable; see wxStreamBase::IsSeekable). | |
193 | */ | |
194 | bool CanRead( const wxString& filename ); | |
195 | ||
196 | /** | |
197 | Gets the preferred file extension associated with this handler. | |
198 | ||
199 | @see GetAltExtensions() | |
200 | */ | |
201 | const wxString& GetExtension() const; | |
202 | ||
203 | /** | |
204 | Returns the other file extensions associated with this handler. | |
205 | ||
206 | The preferred extension for this handler is returned by GetExtension(). | |
207 | ||
208 | @since 2.9.0 | |
209 | */ | |
210 | const wxArrayString& GetAltExtensions() const; | |
211 | ||
212 | /** | |
213 | If the image file contains more than one image and the image handler is capable | |
214 | of retrieving these individually, this function will return the number of | |
215 | available images. | |
216 | ||
217 | @param stream | |
218 | Opened input stream for reading image data. | |
219 | This function doesn't modify the current stream position (because it | |
220 | restores the original position before returning; this however requires the | |
221 | stream to be seekable; see wxStreamBase::IsSeekable). | |
222 | ||
223 | @return Number of available images. For most image handlers, this is 1 | |
224 | (exceptions are TIFF and ICO formats as well as animated GIFs | |
225 | for which this function returns the number of frames in the | |
226 | animation). | |
227 | */ | |
228 | virtual int GetImageCount(wxInputStream& stream); | |
229 | ||
230 | /** | |
231 | Gets the MIME type associated with this handler. | |
232 | */ | |
233 | const wxString& GetMimeType() const; | |
234 | ||
235 | /** | |
236 | Gets the name of this handler. | |
237 | */ | |
238 | const wxString& GetName() const; | |
239 | ||
240 | /** | |
241 | Gets the image type associated with this handler. | |
242 | */ | |
243 | wxBitmapType GetType() const; | |
244 | ||
245 | /** | |
246 | Loads a image from a stream, putting the resulting data into @a image. | |
247 | ||
248 | If the image file contains more than one image and the image handler is | |
249 | capable of retrieving these individually, @a index indicates which image | |
250 | to read from the stream. | |
251 | ||
252 | @param image | |
253 | The image object which is to be affected by this operation. | |
254 | @param stream | |
255 | Opened input stream for reading image data. | |
256 | @param verbose | |
257 | If set to @true, errors reported by the image handler will produce | |
258 | wxLogMessages. | |
259 | @param index | |
260 | The index of the image in the file (starting from zero). | |
261 | ||
262 | @return @true if the operation succeeded, @false otherwise. | |
263 | ||
264 | @see wxImage::LoadFile, wxImage::SaveFile, SaveFile() | |
265 | */ | |
266 | virtual bool LoadFile(wxImage* image, wxInputStream& stream, | |
267 | bool verbose = true, int index = -1); | |
268 | ||
269 | /** | |
270 | Saves a image in the output stream. | |
271 | ||
272 | @param image | |
273 | The image object which is to be affected by this operation. | |
274 | @param stream | |
275 | Opened output stream for writing the data. | |
276 | @param verbose | |
277 | If set to @true, errors reported by the image handler will produce | |
278 | wxLogMessages. | |
279 | ||
280 | @return @true if the operation succeeded, @false otherwise. | |
281 | ||
282 | @see wxImage::LoadFile, wxImage::SaveFile, LoadFile() | |
283 | */ | |
284 | virtual bool SaveFile(wxImage* image, wxOutputStream& stream, | |
285 | bool verbose = true); | |
286 | ||
287 | /** | |
288 | Sets the preferred file extension associated with this handler. | |
289 | ||
290 | @param extension | |
291 | File extension without leading dot. | |
292 | ||
293 | @see SetAltExtensions() | |
294 | */ | |
295 | void SetExtension(const wxString& extension); | |
296 | ||
297 | /** | |
298 | Sets the alternative file extensions associated with this handler. | |
299 | ||
300 | @param extensions | |
301 | Array of file extensions. | |
302 | ||
303 | @see SetExtension() | |
304 | ||
305 | @since 2.9.0 | |
306 | */ | |
307 | void SetAltExtensions(const wxArrayString& extensions); | |
308 | ||
309 | /** | |
310 | Sets the handler MIME type. | |
311 | ||
312 | @param mimetype | |
313 | Handler MIME type. | |
314 | */ | |
315 | void SetMimeType(const wxString& mimetype); | |
316 | ||
317 | /** | |
318 | Sets the handler name. | |
319 | ||
320 | @param name | |
321 | Handler name. | |
322 | */ | |
323 | void SetName(const wxString& name); | |
324 | ||
325 | /** | |
326 | Retrieve the version information about the image library used by this | |
327 | handler. | |
328 | ||
329 | This method is not present in wxImageHandler class itself but is | |
330 | present in a few of the classes deriving from it, currently | |
331 | wxJPEGHandler, wxPNGHandler and wxTIFFHandler. It returns the | |
332 | information about the version of the image library being used for the | |
333 | corresponding handler implementation. | |
334 | ||
335 | @since 2.9.2 | |
336 | */ | |
337 | static wxVersionInfo GetLibraryVersionInfo(); | |
338 | ||
339 | protected: | |
340 | /** | |
341 | Called to get the number of images available in a multi-image file | |
342 | type, if supported. | |
343 | ||
344 | NOTE: this function is allowed to change the current stream position | |
345 | since GetImageCount() will take care of restoring it later | |
346 | */ | |
347 | virtual int DoGetImageCount( wxInputStream& stream ); | |
348 | ||
349 | /** | |
350 | Called to test if this handler can read an image from the given stream. | |
351 | ||
352 | NOTE: this function is allowed to change the current stream position | |
353 | since CallDoCanRead() will take care of restoring it later | |
354 | */ | |
355 | virtual bool DoCanRead( wxInputStream& stream ) = 0; | |
356 | }; | |
357 | ||
358 | ||
359 | /** | |
360 | Constant used to indicate the alpha value conventionally defined as | |
361 | the complete transparency. | |
362 | */ | |
363 | const unsigned char wxIMAGE_ALPHA_TRANSPARENT = 0; | |
364 | ||
365 | /** | |
366 | Constant used to indicate the alpha value conventionally defined as | |
367 | the complete opacity. | |
368 | */ | |
369 | const unsigned char wxIMAGE_ALPHA_OPAQUE = 0xff; | |
370 | ||
371 | const unsigned char wxIMAGE_ALPHA_THRESHOLD = 0x80; | |
372 | ||
373 | ||
374 | /** | |
375 | @class wxImage | |
376 | ||
377 | This class encapsulates a platform-independent image. | |
378 | ||
379 | An image can be created from data, or using wxBitmap::ConvertToImage. | |
380 | An image can be loaded from a file in a variety of formats, and is extensible | |
381 | to new formats via image format handlers. Functions are available to set and | |
382 | get image bits, so it can be used for basic image manipulation. | |
383 | ||
384 | A wxImage cannot (currently) be drawn directly to a wxDC. | |
385 | Instead, a platform-specific wxBitmap object must be created from it using | |
386 | the wxBitmap::wxBitmap(wxImage,int depth) constructor. | |
387 | This bitmap can then be drawn in a device context, using wxDC::DrawBitmap. | |
388 | ||
389 | More on the difference between wxImage and wxBitmap: wxImage is just a | |
390 | buffer of RGB bytes with an optional buffer for the alpha bytes. It is all | |
391 | generic, platform independent and image file format independent code. It | |
392 | includes generic code for scaling, resizing, clipping, and other manipulations | |
393 | of the image data. OTOH, wxBitmap is intended to be a wrapper of whatever is | |
394 | the native image format that is quickest/easiest to draw to a DC or to be the | |
395 | target of the drawing operations performed on a wxMemoryDC. By splitting the | |
396 | responsibilities between wxImage/wxBitmap like this then it's easier to use | |
397 | generic code shared by all platforms and image types for generic operations and | |
398 | platform specific code where performance or compatibility is needed. | |
399 | ||
400 | One colour value of the image may be used as a mask colour which will lead to | |
401 | the automatic creation of a wxMask object associated to the bitmap object. | |
402 | ||
403 | ||
404 | @section image_alpha Alpha channel support | |
405 | ||
406 | Starting from wxWidgets 2.5.0 wxImage supports alpha channel data, that is | |
407 | in addition to a byte for the red, green and blue colour components for each | |
408 | pixel it also stores a byte representing the pixel opacity. | |
409 | ||
410 | An alpha value of 0 corresponds to a transparent pixel (null opacity) while | |
411 | a value of 255 means that the pixel is 100% opaque. | |
412 | The constants ::wxIMAGE_ALPHA_TRANSPARENT and ::wxIMAGE_ALPHA_OPAQUE can be | |
413 | used to indicate those values in a more readable form. | |
414 | ||
415 | While all images have RGB data, not all images have an alpha channel. Before | |
416 | using wxImage::GetAlpha you should check if this image contains an alpha | |
417 | channel with wxImage::HasAlpha. Currently the BMP, PNG, TGA, and TIFF format | |
418 | handlers have full alpha channel support for loading so if you want to use | |
419 | alpha you have to use one of these formats. If you initialize the image | |
420 | alpha channel yourself using wxImage::SetAlpha, you should save it in | |
421 | either PNG, TGA, or TIFF format to avoid losing it as these are the only | |
422 | handlers that currently support saving with alpha. | |
423 | ||
424 | ||
425 | @section image_handlers Available image handlers | |
426 | ||
427 | The following image handlers are available. | |
428 | wxBMPHandler is always installed by default. | |
429 | To use other image formats, install the appropriate handler with | |
430 | wxImage::AddHandler or call ::wxInitAllImageHandlers(). | |
431 | ||
432 | - wxBMPHandler: For loading (including alpha support) and saving, always installed. | |
433 | - wxPNGHandler: For loading and saving. Includes alpha support. | |
434 | - wxJPEGHandler: For loading and saving. | |
435 | - wxGIFHandler: For loading and saving (see below). | |
436 | - wxPCXHandler: For loading and saving (see below). | |
437 | - wxPNMHandler: For loading and saving (see below). | |
438 | - wxTIFFHandler: For loading and saving. Includes alpha support. | |
439 | - wxTGAHandler: For loading and saving. Includes alpha support. | |
440 | - wxIFFHandler: For loading only. | |
441 | - wxXPMHandler: For loading and saving. | |
442 | - wxICOHandler: For loading and saving. | |
443 | - wxCURHandler: For loading and saving. | |
444 | - wxANIHandler: For loading only. | |
445 | ||
446 | When saving in PCX format, wxPCXHandler will count the number of different | |
447 | colours in the image; if there are 256 or less colours, it will save as 8 bit, | |
448 | else it will save as 24 bit. | |
449 | ||
450 | Loading PNMs only works for ASCII or raw RGB images. | |
451 | When saving in PNM format, wxPNMHandler will always save as raw RGB. | |
452 | ||
453 | Saving GIFs requires images of maximum 8 bpp (see wxQuantize), and the alpha channel converted to a mask (see wxImage::ConvertAlphaToMask). | |
454 | Saving an animated GIF requires images of the same size (see wxGIFHandler::SaveAnimation) | |
455 | ||
456 | @library{wxcore} | |
457 | @category{gdi} | |
458 | ||
459 | @stdobjects | |
460 | ::wxNullImage | |
461 | ||
462 | @see wxBitmap, wxInitAllImageHandlers(), wxPixelData | |
463 | */ | |
464 | class wxImage : public wxObject | |
465 | { | |
466 | public: | |
467 | /** | |
468 | A simple class which stores red, green and blue values as 8 bit unsigned integers | |
469 | in the range of 0-255. | |
470 | */ | |
471 | class RGBValue | |
472 | { | |
473 | public: | |
474 | /** | |
475 | Constructor for RGBValue, an object that contains values for red, green | |
476 | and blue which represent the value of a color. | |
477 | ||
478 | It is used by wxImage::HSVtoRGB and wxImage::RGBtoHSV, which convert | |
479 | between HSV color space and RGB color space. | |
480 | */ | |
481 | RGBValue(unsigned char r=0, unsigned char g=0, unsigned char b=0); | |
482 | ||
483 | unsigned char red; | |
484 | unsigned char green; | |
485 | unsigned char blue; | |
486 | }; | |
487 | ||
488 | /** | |
489 | A simple class which stores hue, saturation and value as doubles in the range 0.0-1.0. | |
490 | */ | |
491 | class HSVValue | |
492 | { | |
493 | public: | |
494 | /** | |
495 | Constructor for HSVValue, an object that contains values for hue, saturation | |
496 | and value which represent the value of a color. | |
497 | ||
498 | It is used by wxImage::HSVtoRGB() and wxImage::RGBtoHSV(), which convert | |
499 | between HSV color space and RGB color space. | |
500 | */ | |
501 | HSVValue(double h=0.0, double s=0.0, double v=0.0); | |
502 | ||
503 | double hue; | |
504 | double saturation; | |
505 | double value; | |
506 | }; | |
507 | ||
508 | /** | |
509 | Creates an empty wxImage object without an alpha channel. | |
510 | */ | |
511 | wxImage(); | |
512 | ||
513 | /** | |
514 | Creates an image with the given size and clears it if requested. | |
515 | ||
516 | Does not create an alpha channel. | |
517 | ||
518 | @param width | |
519 | Specifies the width of the image. | |
520 | @param height | |
521 | Specifies the height of the image. | |
522 | @param clear | |
523 | If @true, initialize the image to black. | |
524 | */ | |
525 | wxImage(int width, int height, bool clear = true); | |
526 | ||
527 | /** | |
528 | @overload | |
529 | */ | |
530 | wxImage(const wxSize& sz, bool clear = true); | |
531 | ||
532 | /** | |
533 | Creates an image from data in memory. If @a static_data is @false | |
534 | then the wxImage will take ownership of the data and free it | |
535 | afterwards. For this, it has to be allocated with @e malloc. | |
536 | ||
537 | @param width | |
538 | Specifies the width of the image. | |
539 | @param height | |
540 | Specifies the height of the image. | |
541 | @param data | |
542 | A pointer to RGB data | |
543 | @param static_data | |
544 | Indicates if the data should be free'd after use | |
545 | ||
546 | */ | |
547 | wxImage(int width, int height, unsigned char* data, bool static_data = false); | |
548 | ||
549 | /** | |
550 | @overload | |
551 | */ | |
552 | wxImage(const wxSize& sz, unsigned char* data, bool static_data = false); | |
553 | ||
554 | /** | |
555 | Creates an image from data in memory. If @a static_data is @false | |
556 | then the wxImage will take ownership of the data and free it | |
557 | afterwards. For this, it has to be allocated with @e malloc. | |
558 | ||
559 | @param width | |
560 | Specifies the width of the image. | |
561 | @param height | |
562 | Specifies the height of the image. | |
563 | @param data | |
564 | A pointer to RGB data | |
565 | @param alpha | |
566 | A pointer to alpha-channel data | |
567 | @param static_data | |
568 | Indicates if the data should be free'd after use | |
569 | ||
570 | */ | |
571 | wxImage(int width, int height, unsigned char* data, unsigned char* alpha, | |
572 | bool static_data = false ); | |
573 | ||
574 | /** | |
575 | @overload | |
576 | */ | |
577 | wxImage(const wxSize& sz, unsigned char* data, unsigned char* alpha, | |
578 | bool static_data = false); | |
579 | ||
580 | /** | |
581 | Creates an image from XPM data. | |
582 | ||
583 | @param xpmData | |
584 | A pointer to XPM image data. | |
585 | ||
586 | @beginWxPerlOnly | |
587 | Not supported by wxPerl. | |
588 | @endWxPerlOnly | |
589 | */ | |
590 | wxImage(const char* const* xpmData); | |
591 | ||
592 | /** | |
593 | Creates an image from a file. | |
594 | ||
595 | @param name | |
596 | Name of the file from which to load the image. | |
597 | @param type | |
598 | May be one of the following: | |
599 | @li wxBITMAP_TYPE_BMP: Load a Windows bitmap file. | |
600 | @li wxBITMAP_TYPE_GIF: Load a GIF bitmap file. | |
601 | @li wxBITMAP_TYPE_JPEG: Load a JPEG bitmap file. | |
602 | @li wxBITMAP_TYPE_PNG: Load a PNG bitmap file. | |
603 | @li wxBITMAP_TYPE_PCX: Load a PCX bitmap file. | |
604 | @li wxBITMAP_TYPE_PNM: Load a PNM bitmap file. | |
605 | @li wxBITMAP_TYPE_TIFF: Load a TIFF bitmap file. | |
606 | @li wxBITMAP_TYPE_TGA: Load a TGA bitmap file. | |
607 | @li wxBITMAP_TYPE_XPM: Load a XPM bitmap file. | |
608 | @li wxBITMAP_TYPE_ICO: Load a Windows icon file (ICO). | |
609 | @li wxBITMAP_TYPE_CUR: Load a Windows cursor file (CUR). | |
610 | @li wxBITMAP_TYPE_ANI: Load a Windows animated cursor file (ANI). | |
611 | @li wxBITMAP_TYPE_ANY: Will try to autodetect the format. | |
612 | @param index | |
613 | Index of the image to load in the case that the image file contains | |
614 | multiple images. This is only used by GIF, ICO and TIFF handlers. | |
615 | The default value (-1) means "choose the default image" and is | |
616 | interpreted as the first image (index=0) by the GIF and TIFF handler | |
617 | and as the largest and most colourful one by the ICO handler. | |
618 | ||
619 | @remarks Depending on how wxWidgets has been configured and by which | |
620 | handlers have been loaded, not all formats may be available. | |
621 | Any handler other than BMP must be previously initialized with | |
622 | wxImage::AddHandler or wxInitAllImageHandlers. | |
623 | ||
624 | @note | |
625 | You can use GetOptionInt() to get the hotspot when loading cursor files: | |
626 | @code | |
627 | int hotspot_x = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X); | |
628 | int hotspot_y = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y); | |
629 | @endcode | |
630 | ||
631 | @see LoadFile() | |
632 | */ | |
633 | wxImage(const wxString& name, wxBitmapType type = wxBITMAP_TYPE_ANY, int index = -1); | |
634 | ||
635 | /** | |
636 | Creates an image from a file using MIME-types to specify the type. | |
637 | ||
638 | @param name | |
639 | Name of the file from which to load the image. | |
640 | @param mimetype | |
641 | MIME type string (for example 'image/jpeg') | |
642 | @param index | |
643 | See description in wxImage(const wxString&, wxBitmapType, int) overload. | |
644 | */ | |
645 | wxImage(const wxString& name, const wxString& mimetype, int index = -1); | |
646 | ||
647 | /** | |
648 | Creates an image from a stream. | |
649 | ||
650 | @param stream | |
651 | Opened input stream from which to load the image. Currently, | |
652 | the stream must support seeking. | |
653 | @param type | |
654 | See description in wxImage(const wxString&, wxBitmapType, int) overload. | |
655 | @param index | |
656 | See description in wxImage(const wxString&, wxBitmapType, int) overload. | |
657 | */ | |
658 | wxImage(wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY, int index = -1); | |
659 | ||
660 | /** | |
661 | Creates an image from a stream using MIME-types to specify the type. | |
662 | ||
663 | @param stream | |
664 | Opened input stream from which to load the image. Currently, | |
665 | the stream must support seeking. | |
666 | @param mimetype | |
667 | MIME type string (for example 'image/jpeg') | |
668 | @param index | |
669 | See description in wxImage(const wxString&, wxBitmapType, int) overload. | |
670 | */ | |
671 | wxImage(wxInputStream& stream, const wxString& mimetype, int index = -1); | |
672 | ||
673 | /** | |
674 | Destructor. | |
675 | ||
676 | See @ref overview_refcount_destruct "reference-counted object destruction" | |
677 | for more info. | |
678 | */ | |
679 | virtual ~wxImage(); | |
680 | ||
681 | ||
682 | ||
683 | /** | |
684 | @name Image creation, initialization and deletion functions | |
685 | */ | |
686 | //@{ | |
687 | ||
688 | /** | |
689 | Returns an identical copy of this image. | |
690 | */ | |
691 | wxImage Copy() const; | |
692 | ||
693 | /** | |
694 | Creates a fresh image. | |
695 | See wxImage::wxImage(int,int,bool) for more info. | |
696 | ||
697 | @return @true if the call succeeded, @false otherwise. | |
698 | */ | |
699 | bool Create(int width, int height, bool clear = true); | |
700 | ||
701 | /** | |
702 | @overload | |
703 | */ | |
704 | bool Create( const wxSize& sz, bool clear = true ); | |
705 | ||
706 | /** | |
707 | Creates a fresh image. | |
708 | See wxImage::wxImage(int,int,unsigned char*,bool) for more info. | |
709 | ||
710 | @return @true if the call succeeded, @false otherwise. | |
711 | */ | |
712 | bool Create( int width, int height, unsigned char* data, bool static_data = false ); | |
713 | ||
714 | /** | |
715 | @overload | |
716 | */ | |
717 | bool Create( const wxSize& sz, unsigned char* data, bool static_data = false ); | |
718 | ||
719 | /** | |
720 | Creates a fresh image. | |
721 | See wxImage::wxImage(int,int,unsigned char*,unsigned char*,bool) for more info. | |
722 | ||
723 | @return @true if the call succeeded, @false otherwise. | |
724 | */ | |
725 | bool Create( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false ); | |
726 | ||
727 | /** | |
728 | @overload | |
729 | */ | |
730 | bool Create( const wxSize& sz, unsigned char* data, unsigned char* alpha, bool static_data = false ); | |
731 | ||
732 | /** | |
733 | Initialize the image data with zeroes (the default) or with the | |
734 | byte value given as @a value. | |
735 | ||
736 | @since 2.9.0 | |
737 | */ | |
738 | void Clear(unsigned char value = 0); | |
739 | ||
740 | /** | |
741 | Destroys the image data. | |
742 | */ | |
743 | void Destroy(); | |
744 | ||
745 | /** | |
746 | Initializes the image alpha channel data. | |
747 | ||
748 | It is an error to call it if the image already has alpha data. | |
749 | If it doesn't, alpha data will be by default initialized to all pixels | |
750 | being fully opaque. But if the image has a mask colour, all mask pixels | |
751 | will be completely transparent. | |
752 | */ | |
753 | void InitAlpha(); | |
754 | ||
755 | //@} | |
756 | ||
757 | ||
758 | /** | |
759 | @name Image manipulation functions | |
760 | */ | |
761 | //@{ | |
762 | ||
763 | /** | |
764 | Blurs the image in both horizontal and vertical directions by the | |
765 | specified pixel @a blurRadius. This should not be used when using | |
766 | a single mask colour for transparency. | |
767 | ||
768 | @see BlurHorizontal(), BlurVertical() | |
769 | */ | |
770 | wxImage Blur(int blurRadius) const; | |
771 | ||
772 | /** | |
773 | Blurs the image in the horizontal direction only. This should not be used | |
774 | when using a single mask colour for transparency. | |
775 | ||
776 | @see Blur(), BlurVertical() | |
777 | */ | |
778 | wxImage BlurHorizontal(int blurRadius) const; | |
779 | ||
780 | /** | |
781 | Blurs the image in the vertical direction only. This should not be used | |
782 | when using a single mask colour for transparency. | |
783 | ||
784 | @see Blur(), BlurHorizontal() | |
785 | */ | |
786 | wxImage BlurVertical(int blurRadius) const; | |
787 | ||
788 | /** | |
789 | Returns a mirrored copy of the image. | |
790 | The parameter @a horizontally indicates the orientation. | |
791 | */ | |
792 | wxImage Mirror(bool horizontally = true) const; | |
793 | ||
794 | /** | |
795 | Copy the data of the given @a image to the specified position in this image. | |
796 | */ | |
797 | void Paste(const wxImage& image, int x, int y); | |
798 | ||
799 | /** | |
800 | Replaces the colour specified by @e r1,g1,b1 by the colour @e r2,g2,b2. | |
801 | */ | |
802 | void Replace(unsigned char r1, unsigned char g1, | |
803 | unsigned char b1, unsigned char r2, | |
804 | unsigned char g2, unsigned char b2); | |
805 | ||
806 | /** | |
807 | Changes the size of the image in-place by scaling it: after a call to this | |
808 | function,the image will have the given width and height. | |
809 | ||
810 | For a description of the @a quality parameter, see the Scale() function. | |
811 | Returns the (modified) image itself. | |
812 | ||
813 | @see Scale() | |
814 | */ | |
815 | wxImage& Rescale(int width, int height, | |
816 | wxImageResizeQuality quality = wxIMAGE_QUALITY_NORMAL); | |
817 | ||
818 | /** | |
819 | Changes the size of the image in-place without scaling it by adding either a | |
820 | border with the given colour or cropping as necessary. | |
821 | ||
822 | The image is pasted into a new image with the given @a size and background | |
823 | colour at the position @a pos relative to the upper left of the new image. | |
824 | ||
825 | If @a red = green = blue = -1 then use either the current mask colour | |
826 | if set or find, use, and set a suitable mask colour for any newly exposed | |
827 | areas. | |
828 | ||
829 | @return The (modified) image itself. | |
830 | ||
831 | @see Size() | |
832 | */ | |
833 | wxImage& Resize(const wxSize& size, const wxPoint& pos, int red = -1, | |
834 | int green = -1, int blue = -1); | |
835 | ||
836 | /** | |
837 | Rotates the image about the given point, by @a angle radians. | |
838 | ||
839 | Passing @true to @a interpolating results in better image quality, but is slower. | |
840 | ||
841 | If the image has a mask, then the mask colour is used for the uncovered | |
842 | pixels in the rotated image background. Else, black (rgb 0, 0, 0) will be used. | |
843 | ||
844 | Returns the rotated image, leaving this image intact. | |
845 | */ | |
846 | wxImage Rotate(double angle, const wxPoint& rotationCentre, | |
847 | bool interpolating = true, | |
848 | wxPoint* offsetAfterRotation = NULL) const; | |
849 | ||
850 | /** | |
851 | Returns a copy of the image rotated 90 degrees in the direction | |
852 | indicated by @a clockwise. | |
853 | */ | |
854 | wxImage Rotate90(bool clockwise = true) const; | |
855 | ||
856 | /** | |
857 | Returns a copy of the image rotated by 180 degrees. | |
858 | ||
859 | @since 2.9.2 | |
860 | */ | |
861 | wxImage Rotate180() const; | |
862 | ||
863 | /** | |
864 | Rotates the hue of each pixel in the image by @e angle, which is a double in | |
865 | the range of -1.0 to +1.0, where -1.0 corresponds to -360 degrees and +1.0 | |
866 | corresponds to +360 degrees. | |
867 | */ | |
868 | void RotateHue(double angle); | |
869 | ||
870 | /** | |
871 | Returns a scaled version of the image. | |
872 | ||
873 | This is also useful for scaling bitmaps in general as the only other way | |
874 | to scale bitmaps is to blit a wxMemoryDC into another wxMemoryDC. | |
875 | ||
876 | The parameter @a quality determines what method to use for resampling | |
877 | the image, see wxImageResizeQuality documentation. | |
878 | ||
879 | It should be noted that although using @c wxIMAGE_QUALITY_HIGH produces much nicer | |
880 | looking results it is a slower method. Downsampling will use the box averaging | |
881 | method which seems to operate very fast. If you are upsampling larger images using | |
882 | this method you will most likely notice that it is a bit slower and in extreme | |
883 | cases it will be quite substantially slower as the bicubic algorithm has to process a | |
884 | lot of data. | |
885 | ||
886 | It should also be noted that the high quality scaling may not work as expected | |
887 | when using a single mask colour for transparency, as the scaling will blur the | |
888 | image and will therefore remove the mask partially. Using the alpha channel | |
889 | will work. | |
890 | ||
891 | Example: | |
892 | @code | |
893 | // get the bitmap from somewhere | |
894 | wxBitmap bmp = ...; | |
895 | ||
896 | // rescale it to have size of 32*32 | |
897 | if ( bmp.GetWidth() != 32 || bmp.GetHeight() != 32 ) | |
898 | { | |
899 | wxImage image = bmp.ConvertToImage(); | |
900 | bmp = wxBitmap(image.Scale(32, 32)); | |
901 | ||
902 | // another possibility: | |
903 | image.Rescale(32, 32); | |
904 | bmp = image; | |
905 | } | |
906 | @endcode | |
907 | ||
908 | @see Rescale() | |
909 | */ | |
910 | wxImage Scale(int width, int height, | |
911 | wxImageResizeQuality quality = wxIMAGE_QUALITY_NORMAL) const; | |
912 | ||
913 | /** | |
914 | Returns a resized version of this image without scaling it by adding either a | |
915 | border with the given colour or cropping as necessary. | |
916 | ||
917 | The image is pasted into a new image with the given @a size and background | |
918 | colour at the position @a pos relative to the upper left of the new image. | |
919 | ||
920 | If @a red = green = blue = -1 then the areas of the larger image not covered | |
921 | by this image are made transparent by filling them with the image mask colour | |
922 | (which will be allocated automatically if it isn't currently set). | |
923 | ||
924 | Otherwise, the areas will be filled with the colour with the specified RGB components. | |
925 | ||
926 | @see Resize() | |
927 | */ | |
928 | wxImage Size(const wxSize& size, const wxPoint& pos, int red = -1, | |
929 | int green = -1, int blue = -1) const; | |
930 | ||
931 | //@} | |
932 | ||
933 | ||
934 | /** | |
935 | @name Conversion functions | |
936 | */ | |
937 | //@{ | |
938 | ||
939 | /** | |
940 | If the image has alpha channel, this method converts it to mask. | |
941 | ||
942 | If the image has an alpha channel, all pixels with alpha value less | |
943 | than @a threshold are replaced with the mask colour and the alpha | |
944 | channel is removed. Otherwise nothing is done. | |
945 | ||
946 | The mask colour is chosen automatically using | |
947 | FindFirstUnusedColour() by this function, see the overload below if you | |
948 | this is not appropriate. | |
949 | ||
950 | @return Returns @true on success, @false on error. | |
951 | */ | |
952 | bool ConvertAlphaToMask(unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD); | |
953 | ||
954 | /** | |
955 | If the image has alpha channel, this method converts it to mask using | |
956 | the specified colour as the mask colour. | |
957 | ||
958 | If the image has an alpha channel, all pixels with alpha value less | |
959 | than @a threshold are replaced with the mask colour and the alpha | |
960 | channel is removed. Otherwise nothing is done. | |
961 | ||
962 | @since 2.9.0 | |
963 | ||
964 | @param mr | |
965 | The red component of the mask colour. | |
966 | @param mg | |
967 | The green component of the mask colour. | |
968 | @param mb | |
969 | The blue component of the mask colour. | |
970 | @param threshold | |
971 | Pixels with alpha channel values below the given threshold are | |
972 | considered to be transparent, i.e. the corresponding mask pixels | |
973 | are set. Pixels with the alpha values above the threshold are | |
974 | considered to be opaque. | |
975 | ||
976 | @return Returns @true on success, @false on error. | |
977 | */ | |
978 | bool ConvertAlphaToMask(unsigned char mr, unsigned char mg, unsigned char mb, | |
979 | unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD); | |
980 | ||
981 | /** | |
982 | Returns a greyscale version of the image. | |
983 | ||
984 | The returned image uses the luminance component of the original to | |
985 | calculate the greyscale. Defaults to using the standard ITU-T BT.601 | |
986 | when converting to YUV, where every pixel equals | |
987 | (R * @a weight_r) + (G * @a weight_g) + (B * @a weight_b). | |
988 | */ | |
989 | wxImage ConvertToGreyscale(double weight_r, double weight_g, double weight_b) const; | |
990 | ||
991 | /** | |
992 | Returns a greyscale version of the image. | |
993 | @since 2.9.0 | |
994 | */ | |
995 | wxImage ConvertToGreyscale() const; | |
996 | ||
997 | /** | |
998 | Returns monochromatic version of the image. | |
999 | ||
1000 | The returned image has white colour where the original has @e (r,g,b) | |
1001 | colour and black colour everywhere else. | |
1002 | */ | |
1003 | wxImage ConvertToMono(unsigned char r, unsigned char g, unsigned char b) const; | |
1004 | ||
1005 | /** | |
1006 | Returns disabled (dimmed) version of the image. | |
1007 | @since 2.9.0 | |
1008 | */ | |
1009 | wxImage ConvertToDisabled(unsigned char brightness = 255) const; | |
1010 | ||
1011 | //@} | |
1012 | ||
1013 | ||
1014 | /** | |
1015 | @name Miscellaneous functions | |
1016 | */ | |
1017 | //@{ | |
1018 | ||
1019 | /** | |
1020 | Computes the histogram of the image. @a histogram is a reference to | |
1021 | wxImageHistogram object. wxImageHistogram is a specialization of | |
1022 | wxHashMap "template" and is defined as follows: | |
1023 | ||
1024 | @code | |
1025 | class WXDLLEXPORT wxImageHistogramEntry | |
1026 | { | |
1027 | public: | |
1028 | wxImageHistogramEntry() : index(0), value(0) {} | |
1029 | unsigned long index; | |
1030 | unsigned long value; | |
1031 | }; | |
1032 | ||
1033 | WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry, | |
1034 | wxIntegerHash, wxIntegerEqual, | |
1035 | wxImageHistogram); | |
1036 | @endcode | |
1037 | ||
1038 | @return Returns number of colours in the histogram. | |
1039 | */ | |
1040 | unsigned long ComputeHistogram(wxImageHistogram& histogram) const; | |
1041 | ||
1042 | /** | |
1043 | Finds the first colour that is never used in the image. | |
1044 | The search begins at given initial colour and continues by increasing | |
1045 | R, G and B components (in this order) by 1 until an unused colour is | |
1046 | found or the colour space exhausted. | |
1047 | ||
1048 | The parameters @a r, @a g, @a b are pointers to variables to save the colour. | |
1049 | ||
1050 | The parameters @a startR, @a startG, @a startB define the initial values | |
1051 | of the colour. | |
1052 | The returned colour will have RGB values equal to or greater than these. | |
1053 | ||
1054 | @return Returns @false if there is no unused colour left, @true on success. | |
1055 | ||
1056 | @note | |
1057 | This method involves computing the histogram, which is a | |
1058 | computationally intensive operation. | |
1059 | */ | |
1060 | bool FindFirstUnusedColour(unsigned char* r, unsigned char* g, | |
1061 | unsigned char* b, unsigned char startR = 1, | |
1062 | unsigned char startG = 0, | |
1063 | unsigned char startB = 0) const; | |
1064 | ||
1065 | /** | |
1066 | Assignment operator, using @ref overview_refcount "reference counting". | |
1067 | ||
1068 | @param image | |
1069 | Image to assign. | |
1070 | ||
1071 | @return Returns 'this' object. | |
1072 | */ | |
1073 | wxImage& operator=(const wxImage& image); | |
1074 | ||
1075 | //@} | |
1076 | ||
1077 | ||
1078 | /** | |
1079 | @name Getters | |
1080 | */ | |
1081 | //@{ | |
1082 | ||
1083 | /** | |
1084 | Returns pointer to the array storing the alpha values for this image. | |
1085 | ||
1086 | This pointer is @NULL for the images without the alpha channel. If the image | |
1087 | does have it, this pointer may be used to directly manipulate the alpha values | |
1088 | which are stored as the RGB ones. | |
1089 | */ | |
1090 | unsigned char* GetAlpha() const; | |
1091 | ||
1092 | /** | |
1093 | Returns the image data as an array. | |
1094 | ||
1095 | This is most often used when doing direct image manipulation. | |
1096 | The return value points to an array of characters in RGBRGBRGB... format | |
1097 | in the top-to-bottom, left-to-right order, that is the first RGB triplet | |
1098 | corresponds to the first pixel of the first row, the second one --- | |
1099 | to the second pixel of the first row and so on until the end of the first | |
1100 | row, with second row following after it and so on. | |
1101 | ||
1102 | You should not delete the returned pointer nor pass it to SetData(). | |
1103 | */ | |
1104 | unsigned char* GetData() const; | |
1105 | ||
1106 | /** | |
1107 | Return alpha value at given pixel location. | |
1108 | */ | |
1109 | unsigned char GetAlpha(int x, int y) const; | |
1110 | ||
1111 | /** | |
1112 | Returns the red intensity at the given coordinate. | |
1113 | */ | |
1114 | unsigned char GetRed(int x, int y) const; | |
1115 | ||
1116 | /** | |
1117 | Returns the green intensity at the given coordinate. | |
1118 | */ | |
1119 | unsigned char GetGreen(int x, int y) const; | |
1120 | ||
1121 | /** | |
1122 | Returns the blue intensity at the given coordinate. | |
1123 | */ | |
1124 | unsigned char GetBlue(int x, int y) const; | |
1125 | ||
1126 | /** | |
1127 | Gets the red value of the mask colour. | |
1128 | */ | |
1129 | unsigned char GetMaskRed() const; | |
1130 | ||
1131 | /** | |
1132 | Gets the green value of the mask colour. | |
1133 | */ | |
1134 | unsigned char GetMaskGreen() const; | |
1135 | ||
1136 | /** | |
1137 | Gets the blue value of the mask colour. | |
1138 | */ | |
1139 | unsigned char GetMaskBlue() const; | |
1140 | ||
1141 | /** | |
1142 | Gets the width of the image in pixels. | |
1143 | ||
1144 | @see GetHeight(), GetSize() | |
1145 | */ | |
1146 | int GetWidth() const; | |
1147 | ||
1148 | /** | |
1149 | Gets the height of the image in pixels. | |
1150 | ||
1151 | @see GetWidth(), GetSize() | |
1152 | */ | |
1153 | int GetHeight() const; | |
1154 | ||
1155 | /** | |
1156 | Returns the size of the image in pixels. | |
1157 | ||
1158 | @since 2.9.0 | |
1159 | ||
1160 | @see GetHeight(), GetWidth() | |
1161 | */ | |
1162 | wxSize GetSize() const; | |
1163 | ||
1164 | /** | |
1165 | Gets a user-defined string-valued option. | |
1166 | ||
1167 | Generic options: | |
1168 | @li @c wxIMAGE_OPTION_FILENAME: The name of the file from which the image | |
1169 | was loaded. | |
1170 | ||
1171 | Options specific to wxGIFHandler: | |
1172 | @li @c wxIMAGE_OPTION_GIF_COMMENT: The comment text that is read from | |
1173 | or written to the GIF file. In an animated GIF each frame can have | |
1174 | its own comment. If there is only a comment in the first frame of | |
1175 | a GIF it will not be repeated in other frames. | |
1176 | ||
1177 | @param name | |
1178 | The name of the option, case-insensitive. | |
1179 | @return | |
1180 | The value of the option or an empty string if not found. Use | |
1181 | HasOption() if an empty string can be a valid option value. | |
1182 | ||
1183 | @see SetOption(), GetOptionInt(), HasOption() | |
1184 | */ | |
1185 | wxString GetOption(const wxString& name) const; | |
1186 | ||
1187 | /** | |
1188 | Gets a user-defined integer-valued option. | |
1189 | ||
1190 | The function is case-insensitive to @a name. | |
1191 | If the given option is not present, the function returns 0. | |
1192 | Use HasOption() if 0 is a possibly valid value for the option. | |
1193 | ||
1194 | Generic options: | |
1195 | @li @c wxIMAGE_OPTION_MAX_WIDTH and @c wxIMAGE_OPTION_MAX_HEIGHT: If either | |
1196 | of these options is specified, the loaded image will be scaled down | |
1197 | (preserving its aspect ratio) so that its width is less than the | |
1198 | max width given if it is not 0 @em and its height is less than the | |
1199 | max height given if it is not 0. This is typically used for loading | |
1200 | thumbnails and the advantage of using these options compared to | |
1201 | calling Rescale() after loading is that some handlers (only JPEG | |
1202 | one right now) support rescaling the image during loading which is | |
1203 | vastly more efficient than loading the entire huge image and | |
1204 | rescaling it later (if these options are not supported by the | |
1205 | handler, this is still what happens however). These options must be | |
1206 | set before calling LoadFile() to have any effect. | |
1207 | ||
1208 | @li @c wxIMAGE_OPTION_ORIGINAL_WIDTH and @c wxIMAGE_OPTION_ORIGINAL_HEIGHT: | |
1209 | These options will return the original size of the image if either | |
1210 | @c wxIMAGE_OPTION_MAX_WIDTH or @c wxIMAGE_OPTION_MAX_HEIGHT is | |
1211 | specified. | |
1212 | @since 2.9.3 | |
1213 | ||
1214 | @li @c wxIMAGE_OPTION_QUALITY: JPEG quality used when saving. This is an | |
1215 | integer in 0..100 range with 0 meaning very poor and 100 excellent | |
1216 | (but very badly compressed). This option is currently ignored for | |
1217 | the other formats. | |
1218 | ||
1219 | @li @c wxIMAGE_OPTION_RESOLUTIONUNIT: The value of this option determines | |
1220 | whether the resolution of the image is specified in centimetres or | |
1221 | inches, see wxImageResolution enum elements. | |
1222 | ||
1223 | @li @c wxIMAGE_OPTION_RESOLUTION, @c wxIMAGE_OPTION_RESOLUTIONX and | |
1224 | @c wxIMAGE_OPTION_RESOLUTIONY: These options define the resolution of | |
1225 | the image in the units corresponding to @c wxIMAGE_OPTION_RESOLUTIONUNIT | |
1226 | options value. The first option can be set before saving the image | |
1227 | to set both horizontal and vertical resolution to the same value. | |
1228 | The X and Y options are set by the image handlers if they support | |
1229 | the image resolution (currently BMP, JPEG and TIFF handlers do) and | |
1230 | the image provides the resolution information and can be queried | |
1231 | after loading the image. | |
1232 | ||
1233 | Options specific to wxPNGHandler: | |
1234 | @li @c wxIMAGE_OPTION_PNG_FORMAT: Format for saving a PNG file, see | |
1235 | wxImagePNGType for the supported values. | |
1236 | @li @c wxIMAGE_OPTION_PNG_BITDEPTH: Bit depth for every channel (R/G/B/A). | |
1237 | @li @c wxIMAGE_OPTION_PNG_FILTER: Filter for saving a PNG file, see libpng | |
1238 | (http://www.libpng.org/pub/png/libpng-1.2.5-manual.html) for possible values | |
1239 | (e.g. PNG_FILTER_NONE, PNG_FILTER_SUB, PNG_FILTER_UP, etc). | |
1240 | @li @c wxIMAGE_OPTION_PNG_COMPRESSION_LEVEL: Compression level (0..9) for | |
1241 | saving a PNG file. An high value creates smaller-but-slower PNG file. | |
1242 | Note that unlike other formats (e.g. JPEG) the PNG format is always | |
1243 | lossless and thus this compression level doesn't tradeoff the image | |
1244 | quality. | |
1245 | @li @c wxIMAGE_OPTION_PNG_COMPRESSION_MEM_LEVEL: Compression memory usage | |
1246 | level (1..9) for saving a PNG file. An high value means the saving | |
1247 | process consumes more memory, but may create smaller PNG file. | |
1248 | @li @c wxIMAGE_OPTION_PNG_COMPRESSION_STRATEGY: Possible values are 0 for | |
1249 | default strategy, 1 for filter, and 2 for Huffman-only. | |
1250 | You can use OptiPNG (http://optipng.sourceforge.net/) to get a suitable | |
1251 | value for your application. | |
1252 | @li @c wxIMAGE_OPTION_PNG_COMPRESSION_BUFFER_SIZE: Internal buffer size | |
1253 | (in bytes) for saving a PNG file. Ideally this should be as big as | |
1254 | the resulting PNG file. Use this option if your application produces | |
1255 | images with small size variation. | |
1256 | ||
1257 | Options specific to wxTIFFHandler: | |
1258 | @li @c wxIMAGE_OPTION_TIFF_BITSPERSAMPLE: Number of bits per | |
1259 | sample (channel). Currently values of 1 and 8 are supported. A | |
1260 | value of 1 results in a black and white image. A value of 8 (the | |
1261 | default) can mean greyscale or RGB, depending on the value of | |
1262 | @c wxIMAGE_OPTION_TIFF_SAMPLESPERPIXEL. | |
1263 | @li @c wxIMAGE_OPTION_TIFF_SAMPLESPERPIXEL: Number of samples | |
1264 | (channels) per pixel. Currently values of 1 and 3 are supported. | |
1265 | A value of 1 results in either a greyscale (by default) or black and | |
1266 | white image, depending on the value of | |
1267 | @c wxIMAGE_OPTION_TIFF_BITSPERSAMPLE. A value of 3 (the default) | |
1268 | will result in an RGB image. | |
1269 | @li @c wxIMAGE_OPTION_TIFF_COMPRESSION: Compression type. By default | |
1270 | it is set to 1 (COMPRESSION_NONE). Typical other values are | |
1271 | 5 (COMPRESSION_LZW) and 7 (COMPRESSION_JPEG). See tiff.h for more | |
1272 | options. | |
1273 | @li @c wxIMAGE_OPTION_TIFF_PHOTOMETRIC: Specifies the photometric | |
1274 | interpretation. By default it is set to 2 (PHOTOMETRIC_RGB) for RGB | |
1275 | images and 0 (PHOTOMETRIC_MINISWHITE) for greyscale or black and | |
1276 | white images. It can also be set to 1 (PHOTOMETRIC_MINISBLACK) to | |
1277 | treat the lowest value as black and highest as white. | |
1278 | If you want a greyscale image it is also sufficient to only specify | |
1279 | @c wxIMAGE_OPTION_TIFF_PHOTOMETRIC and set it to either | |
1280 | PHOTOMETRIC_MINISWHITE or PHOTOMETRIC_MINISBLACK. The other values | |
1281 | are taken care of. | |
1282 | ||
1283 | @note | |
1284 | Be careful when combining the options @c wxIMAGE_OPTION_TIFF_SAMPLESPERPIXEL, | |
1285 | @c wxIMAGE_OPTION_TIFF_BITSPERSAMPLE, and @c wxIMAGE_OPTION_TIFF_PHOTOMETRIC. | |
1286 | While some measures are taken to prevent illegal combinations and/or | |
1287 | values, it is still easy to abuse them and come up with invalid | |
1288 | results in the form of either corrupted images or crashes. | |
1289 | ||
1290 | @param name | |
1291 | The name of the option, case-insensitive. | |
1292 | @return | |
1293 | The value of the option or 0 if not found. | |
1294 | Use HasOption() if 0 can be a valid option value. | |
1295 | ||
1296 | @see SetOption(), GetOption() | |
1297 | */ | |
1298 | int GetOptionInt(const wxString& name) const; | |
1299 | ||
1300 | /** | |
1301 | Get the current mask colour or find a suitable unused colour that could be | |
1302 | used as a mask colour. Returns @true if the image currently has a mask. | |
1303 | */ | |
1304 | bool GetOrFindMaskColour(unsigned char* r, unsigned char* g, | |
1305 | unsigned char* b) const; | |
1306 | ||
1307 | /** | |
1308 | Returns the palette associated with the image. | |
1309 | Currently the palette is only used when converting to wxBitmap under Windows. | |
1310 | ||
1311 | Some of the wxImage handlers have been modified to set the palette if | |
1312 | one exists in the image file (usually 256 or less colour images in | |
1313 | GIF or PNG format). | |
1314 | */ | |
1315 | const wxPalette& GetPalette() const; | |
1316 | ||
1317 | /** | |
1318 | Returns a sub image of the current one as long as the rect belongs entirely | |
1319 | to the image. | |
1320 | */ | |
1321 | wxImage GetSubImage(const wxRect& rect) const; | |
1322 | ||
1323 | /** | |
1324 | Gets the type of image found by LoadFile() or specified with SaveFile(). | |
1325 | ||
1326 | @since 2.9.0 | |
1327 | */ | |
1328 | wxBitmapType GetType() const; | |
1329 | ||
1330 | /** | |
1331 | Returns @true if this image has alpha channel, @false otherwise. | |
1332 | ||
1333 | @see GetAlpha(), SetAlpha() | |
1334 | */ | |
1335 | bool HasAlpha() const; | |
1336 | ||
1337 | /** | |
1338 | Returns @true if there is a mask active, @false otherwise. | |
1339 | */ | |
1340 | bool HasMask() const; | |
1341 | ||
1342 | /** | |
1343 | Returns @true if the given option is present. | |
1344 | The function is case-insensitive to @a name. | |
1345 | ||
1346 | The lists of the currently supported options are in GetOption() and | |
1347 | GetOptionInt() function docs. | |
1348 | ||
1349 | @see SetOption(), GetOption(), GetOptionInt() | |
1350 | */ | |
1351 | bool HasOption(const wxString& name) const; | |
1352 | ||
1353 | /** | |
1354 | Returns @true if image data is present. | |
1355 | */ | |
1356 | bool IsOk() const; | |
1357 | ||
1358 | /** | |
1359 | Returns @true if the given pixel is transparent, i.e. either has the mask | |
1360 | colour if this image has a mask or if this image has alpha channel and alpha | |
1361 | value of this pixel is strictly less than @a threshold. | |
1362 | */ | |
1363 | bool IsTransparent(int x, int y, | |
1364 | unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD) const; | |
1365 | ||
1366 | //@} | |
1367 | ||
1368 | ||
1369 | /** | |
1370 | @name Loading and saving functions | |
1371 | */ | |
1372 | //@{ | |
1373 | ||
1374 | /** | |
1375 | Loads an image from an input stream. | |
1376 | ||
1377 | @param stream | |
1378 | Opened input stream from which to load the image. | |
1379 | Currently, the stream must support seeking. | |
1380 | @param type | |
1381 | May be one of the following: | |
1382 | @li wxBITMAP_TYPE_BMP: Load a Windows bitmap file. | |
1383 | @li wxBITMAP_TYPE_GIF: Load a GIF bitmap file. | |
1384 | @li wxBITMAP_TYPE_JPEG: Load a JPEG bitmap file. | |
1385 | @li wxBITMAP_TYPE_PNG: Load a PNG bitmap file. | |
1386 | @li wxBITMAP_TYPE_PCX: Load a PCX bitmap file. | |
1387 | @li wxBITMAP_TYPE_PNM: Load a PNM bitmap file. | |
1388 | @li wxBITMAP_TYPE_TIFF: Load a TIFF bitmap file. | |
1389 | @li wxBITMAP_TYPE_TGA: Load a TGA bitmap file. | |
1390 | @li wxBITMAP_TYPE_XPM: Load a XPM bitmap file. | |
1391 | @li wxBITMAP_TYPE_ICO: Load a Windows icon file (ICO). | |
1392 | @li wxBITMAP_TYPE_CUR: Load a Windows cursor file (CUR). | |
1393 | @li wxBITMAP_TYPE_ANI: Load a Windows animated cursor file (ANI). | |
1394 | @li wxBITMAP_TYPE_ANY: Will try to autodetect the format. | |
1395 | @param index | |
1396 | Index of the image to load in the case that the image file contains | |
1397 | multiple images. This is only used by GIF, ICO and TIFF handlers. | |
1398 | The default value (-1) means "choose the default image" and is | |
1399 | interpreted as the first image (index=0) by the GIF and TIFF handler | |
1400 | and as the largest and most colourful one by the ICO handler. | |
1401 | ||
1402 | @return @true if the operation succeeded, @false otherwise. | |
1403 | If the optional index parameter is out of range, @false is | |
1404 | returned and a call to wxLogError() takes place. | |
1405 | ||
1406 | @remarks Depending on how wxWidgets has been configured, not all formats | |
1407 | may be available. | |
1408 | ||
1409 | @note | |
1410 | You can use GetOptionInt() to get the hotspot when loading cursor files: | |
1411 | @code | |
1412 | int hotspot_x = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X); | |
1413 | int hotspot_y = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y); | |
1414 | @endcode | |
1415 | ||
1416 | @see SaveFile() | |
1417 | */ | |
1418 | virtual bool LoadFile(wxInputStream& stream, | |
1419 | wxBitmapType type = wxBITMAP_TYPE_ANY, | |
1420 | int index = -1); | |
1421 | ||
1422 | /** | |
1423 | Loads an image from a file. | |
1424 | If no handler type is provided, the library will try to autodetect the format. | |
1425 | ||
1426 | @param name | |
1427 | Name of the file from which to load the image. | |
1428 | @param type | |
1429 | See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload. | |
1430 | @param index | |
1431 | See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload. | |
1432 | */ | |
1433 | virtual bool LoadFile(const wxString& name, | |
1434 | wxBitmapType type = wxBITMAP_TYPE_ANY, | |
1435 | int index = -1); | |
1436 | ||
1437 | /** | |
1438 | Loads an image from a file. | |
1439 | If no handler type is provided, the library will try to autodetect the format. | |
1440 | ||
1441 | @param name | |
1442 | Name of the file from which to load the image. | |
1443 | @param mimetype | |
1444 | MIME type string (for example 'image/jpeg') | |
1445 | @param index | |
1446 | See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload. | |
1447 | */ | |
1448 | virtual bool LoadFile(const wxString& name, const wxString& mimetype, | |
1449 | int index = -1); | |
1450 | ||
1451 | /** | |
1452 | Loads an image from an input stream. | |
1453 | ||
1454 | @param stream | |
1455 | Opened input stream from which to load the image. | |
1456 | Currently, the stream must support seeking. | |
1457 | @param mimetype | |
1458 | MIME type string (for example 'image/jpeg') | |
1459 | @param index | |
1460 | See the description in the LoadFile(wxInputStream&, wxBitmapType, int) overload. | |
1461 | */ | |
1462 | virtual bool LoadFile(wxInputStream& stream, const wxString& mimetype, | |
1463 | int index = -1); | |
1464 | ||
1465 | /** | |
1466 | Saves an image in the given stream. | |
1467 | ||
1468 | @param stream | |
1469 | Opened output stream to save the image to. | |
1470 | @param mimetype | |
1471 | MIME type. | |
1472 | ||
1473 | @return @true if the operation succeeded, @false otherwise. | |
1474 | ||
1475 | @remarks Depending on how wxWidgets has been configured, not all formats | |
1476 | may be available. | |
1477 | ||
1478 | @note | |
1479 | You can use SetOption() to set the hotspot when saving an image | |
1480 | into a cursor file (default hotspot is in the centre of the image): | |
1481 | @code | |
1482 | image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, hotspotX); | |
1483 | image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, hotspotY); | |
1484 | @endcode | |
1485 | ||
1486 | @see LoadFile() | |
1487 | */ | |
1488 | virtual bool SaveFile(wxOutputStream& stream, | |
1489 | const wxString& mimetype) const; | |
1490 | ||
1491 | /** | |
1492 | Saves an image in the named file. | |
1493 | ||
1494 | @param name | |
1495 | Name of the file to save the image to. | |
1496 | @param type | |
1497 | Currently these types can be used: | |
1498 | @li wxBITMAP_TYPE_BMP: Save a BMP image file. | |
1499 | @li wxBITMAP_TYPE_JPEG: Save a JPEG image file. | |
1500 | @li wxBITMAP_TYPE_PNG: Save a PNG image file. | |
1501 | @li wxBITMAP_TYPE_PCX: Save a PCX image file | |
1502 | (tries to save as 8-bit if possible, falls back to 24-bit otherwise). | |
1503 | @li wxBITMAP_TYPE_PNM: Save a PNM image file (as raw RGB always). | |
1504 | @li wxBITMAP_TYPE_TIFF: Save a TIFF image file. | |
1505 | @li wxBITMAP_TYPE_XPM: Save a XPM image file. | |
1506 | @li wxBITMAP_TYPE_ICO: Save a Windows icon file (ICO). | |
1507 | The size may be up to 255 wide by 127 high. A single image is saved | |
1508 | in 8 colors at the size supplied. | |
1509 | @li wxBITMAP_TYPE_CUR: Save a Windows cursor file (CUR). | |
1510 | */ | |
1511 | virtual bool SaveFile(const wxString& name, wxBitmapType type) const; | |
1512 | ||
1513 | /** | |
1514 | Saves an image in the named file. | |
1515 | ||
1516 | @param name | |
1517 | Name of the file to save the image to. | |
1518 | @param mimetype | |
1519 | MIME type. | |
1520 | */ | |
1521 | virtual bool SaveFile(const wxString& name, const wxString& mimetype) const; | |
1522 | ||
1523 | /** | |
1524 | Saves an image in the named file. | |
1525 | ||
1526 | File type is determined from the extension of the file name. | |
1527 | Note that this function may fail if the extension is not recognized! | |
1528 | You can use one of the forms above to save images to files with | |
1529 | non-standard extensions. | |
1530 | ||
1531 | @param name | |
1532 | Name of the file to save the image to. | |
1533 | */ | |
1534 | virtual bool SaveFile(const wxString& name) const; | |
1535 | ||
1536 | /** | |
1537 | Saves an image in the given stream. | |
1538 | ||
1539 | @param stream | |
1540 | Opened output stream to save the image to. | |
1541 | @param type | |
1542 | MIME type. | |
1543 | */ | |
1544 | virtual bool SaveFile(wxOutputStream& stream, wxBitmapType type) const; | |
1545 | ||
1546 | //@} | |
1547 | ||
1548 | ||
1549 | ||
1550 | /** | |
1551 | @name Setters | |
1552 | */ | |
1553 | //@{ | |
1554 | ||
1555 | /** | |
1556 | This function is similar to SetData() and has similar restrictions. | |
1557 | ||
1558 | The pointer passed to it may however be @NULL in which case the function | |
1559 | will allocate the alpha array internally -- this is useful to add alpha | |
1560 | channel data to an image which doesn't have any. | |
1561 | ||
1562 | If the pointer is not @NULL, it must have one byte for each image pixel | |
1563 | and be allocated with malloc(). | |
1564 | wxImage takes ownership of the pointer and will free it unless @a static_data | |
1565 | parameter is set to @true -- in this case the caller should do it. | |
1566 | */ | |
1567 | void SetAlpha(unsigned char* alpha = NULL, | |
1568 | bool static_data = false); | |
1569 | ||
1570 | /** | |
1571 | Sets the alpha value for the given pixel. | |
1572 | This function should only be called if the image has alpha channel data, | |
1573 | use HasAlpha() to check for this. | |
1574 | */ | |
1575 | void SetAlpha(int x, int y, unsigned char alpha); | |
1576 | ||
1577 | /** | |
1578 | Removes the alpha channel from the image. | |
1579 | ||
1580 | This function should only be called if the image has alpha channel data, | |
1581 | use HasAlpha() to check for this. | |
1582 | ||
1583 | @since 2.9.1 | |
1584 | */ | |
1585 | void ClearAlpha(); | |
1586 | ||
1587 | /** | |
1588 | Sets the image data without performing checks. | |
1589 | ||
1590 | The data given must have the size (width*height*3) or results will be | |
1591 | unexpected. Don't use this method if you aren't sure you know what you | |
1592 | are doing. | |
1593 | ||
1594 | The data must have been allocated with @c malloc(), @b NOT with | |
1595 | @c operator new. | |
1596 | ||
1597 | If @a static_data is @false, after this call the pointer to the data is | |
1598 | owned by the wxImage object, that will be responsible for deleting it. | |
1599 | Do not pass to this function a pointer obtained through GetData(). | |
1600 | */ | |
1601 | void SetData(unsigned char* data, bool static_data = false); | |
1602 | ||
1603 | /** | |
1604 | @overload | |
1605 | */ | |
1606 | void SetData(unsigned char* data, int new_width, int new_height, | |
1607 | bool static_data = false); | |
1608 | ||
1609 | /** | |
1610 | Specifies whether there is a mask or not. | |
1611 | ||
1612 | The area of the mask is determined by the current mask colour. | |
1613 | */ | |
1614 | void SetMask(bool hasMask = true); | |
1615 | ||
1616 | /** | |
1617 | Sets the mask colour for this image (and tells the image to use the mask). | |
1618 | */ | |
1619 | void SetMaskColour(unsigned char red, unsigned char green, | |
1620 | unsigned char blue); | |
1621 | ||
1622 | /** | |
1623 | Sets image's mask so that the pixels that have RGB value of mr,mg,mb in | |
1624 | mask will be masked in the image. | |
1625 | ||
1626 | This is done by first finding an unused colour in the image, setting | |
1627 | this colour as the mask colour and then using this colour to draw all | |
1628 | pixels in the image who corresponding pixel in mask has given RGB value. | |
1629 | ||
1630 | The parameter @a mask is the mask image to extract mask shape from. | |
1631 | It must have the same dimensions as the image. | |
1632 | ||
1633 | The parameters @a mr, @a mg, @a mb are the RGB values of the pixels in | |
1634 | mask that will be used to create the mask. | |
1635 | ||
1636 | @return Returns @false if mask does not have same dimensions as the image | |
1637 | or if there is no unused colour left. Returns @true if the mask | |
1638 | was successfully applied. | |
1639 | ||
1640 | @note | |
1641 | Note that this method involves computing the histogram, which is a | |
1642 | computationally intensive operation. | |
1643 | */ | |
1644 | bool SetMaskFromImage(const wxImage& mask, unsigned char mr, | |
1645 | unsigned char mg, | |
1646 | unsigned char mb); | |
1647 | ||
1648 | /** | |
1649 | Sets a user-defined option. The function is case-insensitive to @a name. | |
1650 | ||
1651 | For example, when saving as a JPEG file, the option @b quality is | |
1652 | used, which is a number between 0 and 100 (0 is terrible, 100 is very good). | |
1653 | ||
1654 | The lists of the currently supported options are in GetOption() and | |
1655 | GetOptionInt() function docs. | |
1656 | ||
1657 | @see GetOption(), GetOptionInt(), HasOption() | |
1658 | */ | |
1659 | void SetOption(const wxString& name, const wxString& value); | |
1660 | ||
1661 | /** | |
1662 | @overload | |
1663 | */ | |
1664 | void SetOption(const wxString& name, int value); | |
1665 | ||
1666 | /** | |
1667 | Associates a palette with the image. | |
1668 | ||
1669 | The palette may be used when converting wxImage to wxBitmap (MSW only at present) | |
1670 | or in file save operations (none as yet). | |
1671 | */ | |
1672 | void SetPalette(const wxPalette& palette); | |
1673 | ||
1674 | /** | |
1675 | Sets the colour of the pixels within the given rectangle. | |
1676 | ||
1677 | This routine performs bounds-checks for the coordinate so it can be considered | |
1678 | a safe way to manipulate the data. | |
1679 | */ | |
1680 | void SetRGB(const wxRect& rect, | |
1681 | unsigned char red, | |
1682 | unsigned char green, | |
1683 | unsigned char blue); | |
1684 | ||
1685 | /** | |
1686 | Set the type of image returned by GetType(). | |
1687 | ||
1688 | This method is mostly used internally by the library but can also be | |
1689 | called from the user code if the image was created from data in the | |
1690 | given bitmap format without using LoadFile() (which would set the type | |
1691 | correctly automatically). | |
1692 | ||
1693 | Notice that the image must be created before this function is called. | |
1694 | ||
1695 | @since 2.9.0 | |
1696 | ||
1697 | @param type | |
1698 | One of bitmap type constants, @c wxBITMAP_TYPE_INVALID is a valid | |
1699 | value for it and can be used to reset the bitmap type to default | |
1700 | but @c wxBITMAP_TYPE_MAX is not allowed here. | |
1701 | */ | |
1702 | void SetType(wxBitmapType type); | |
1703 | ||
1704 | //@} | |
1705 | ||
1706 | ||
1707 | ||
1708 | /** | |
1709 | @name Handler management functions | |
1710 | */ | |
1711 | //@{ | |
1712 | ||
1713 | /** | |
1714 | Register an image handler. | |
1715 | ||
1716 | Typical example of use: | |
1717 | @code | |
1718 | wxImage::AddHandler(new wxPNGHandler); | |
1719 | @endcode | |
1720 | ||
1721 | See @ref image_handlers for a list of the available handlers. You can | |
1722 | also use ::wxInitAllImageHandlers() to add handlers for all the image | |
1723 | formats supported by wxWidgets at once. | |
1724 | ||
1725 | @param handler | |
1726 | A heap-allocated handler object which will be deleted by wxImage | |
1727 | if it is removed later by RemoveHandler() or at program shutdown. | |
1728 | */ | |
1729 | static void AddHandler(wxImageHandler* handler); | |
1730 | ||
1731 | /** | |
1732 | Deletes all image handlers. | |
1733 | This function is called by wxWidgets on exit. | |
1734 | */ | |
1735 | static void CleanUpHandlers(); | |
1736 | ||
1737 | /** | |
1738 | Finds the handler with the given name. | |
1739 | ||
1740 | @param name | |
1741 | The handler name. | |
1742 | ||
1743 | @return A pointer to the handler if found, @NULL otherwise. | |
1744 | ||
1745 | @see wxImageHandler | |
1746 | */ | |
1747 | static wxImageHandler* FindHandler(const wxString& name); | |
1748 | ||
1749 | /** | |
1750 | Finds the handler associated with the given extension and type. | |
1751 | ||
1752 | @param extension | |
1753 | The file extension, such as "bmp". | |
1754 | @param imageType | |
1755 | The image type; one of the ::wxBitmapType values. | |
1756 | ||
1757 | @return A pointer to the handler if found, @NULL otherwise. | |
1758 | ||
1759 | @see wxImageHandler | |
1760 | */ | |
1761 | static wxImageHandler* FindHandler(const wxString& extension, | |
1762 | wxBitmapType imageType); | |
1763 | ||
1764 | /** | |
1765 | Finds the handler associated with the given image type. | |
1766 | ||
1767 | @param imageType | |
1768 | The image type; one of the ::wxBitmapType values. | |
1769 | ||
1770 | @return A pointer to the handler if found, @NULL otherwise. | |
1771 | ||
1772 | @see wxImageHandler | |
1773 | */ | |
1774 | static wxImageHandler* FindHandler(wxBitmapType imageType); | |
1775 | ||
1776 | /** | |
1777 | Finds the handler associated with the given MIME type. | |
1778 | ||
1779 | @param mimetype | |
1780 | MIME type. | |
1781 | ||
1782 | @return A pointer to the handler if found, @NULL otherwise. | |
1783 | ||
1784 | @see wxImageHandler | |
1785 | */ | |
1786 | static wxImageHandler* FindHandlerMime(const wxString& mimetype); | |
1787 | ||
1788 | /** | |
1789 | Returns the static list of image format handlers. | |
1790 | ||
1791 | @see wxImageHandler | |
1792 | */ | |
1793 | static wxList& GetHandlers(); | |
1794 | ||
1795 | /** | |
1796 | Internal use only. Adds standard image format handlers. | |
1797 | It only install wxBMPHandler for the time being, which is used by wxBitmap. | |
1798 | ||
1799 | This function is called by wxWidgets on startup, and shouldn't be called by | |
1800 | the user. | |
1801 | ||
1802 | @see wxImageHandler, wxInitAllImageHandlers(), wxQuantize | |
1803 | */ | |
1804 | static void InitStandardHandlers(); | |
1805 | ||
1806 | /** | |
1807 | Adds a handler at the start of the static list of format handlers. | |
1808 | ||
1809 | @param handler | |
1810 | A new image format handler object. There is usually only one instance | |
1811 | of a given handler class in an application session. | |
1812 | ||
1813 | @see wxImageHandler | |
1814 | */ | |
1815 | static void InsertHandler(wxImageHandler* handler); | |
1816 | ||
1817 | /** | |
1818 | Finds the handler with the given name, and removes it. | |
1819 | ||
1820 | The handler is also deleted. | |
1821 | ||
1822 | @param name | |
1823 | The handler name. | |
1824 | ||
1825 | @return @true if the handler was found and removed, @false otherwise. | |
1826 | ||
1827 | @see wxImageHandler | |
1828 | */ | |
1829 | static bool RemoveHandler(const wxString& name); | |
1830 | ||
1831 | //@} | |
1832 | ||
1833 | ||
1834 | /** | |
1835 | Returns @true if at least one of the available image handlers can read | |
1836 | the file with the given name. | |
1837 | ||
1838 | See wxImageHandler::CanRead for more info. | |
1839 | */ | |
1840 | static bool CanRead(const wxString& filename); | |
1841 | ||
1842 | /** | |
1843 | Returns @true if at least one of the available image handlers can read | |
1844 | the data in the given stream. | |
1845 | ||
1846 | See wxImageHandler::CanRead for more info. | |
1847 | */ | |
1848 | static bool CanRead(wxInputStream& stream); | |
1849 | ||
1850 | //@{ | |
1851 | /** | |
1852 | If the image file contains more than one image and the image handler is | |
1853 | capable of retrieving these individually, this function will return the | |
1854 | number of available images. | |
1855 | ||
1856 | For the overload taking the parameter @a filename, that's the name | |
1857 | of the file to query. | |
1858 | For the overload taking the parameter @a stream, that's the opened input | |
1859 | stream with image data. | |
1860 | ||
1861 | See wxImageHandler::GetImageCount() for more info. | |
1862 | ||
1863 | The parameter @a type may be one of the following values: | |
1864 | @li wxBITMAP_TYPE_BMP: Load a Windows bitmap file. | |
1865 | @li wxBITMAP_TYPE_GIF: Load a GIF bitmap file. | |
1866 | @li wxBITMAP_TYPE_JPEG: Load a JPEG bitmap file. | |
1867 | @li wxBITMAP_TYPE_PNG: Load a PNG bitmap file. | |
1868 | @li wxBITMAP_TYPE_PCX: Load a PCX bitmap file. | |
1869 | @li wxBITMAP_TYPE_PNM: Load a PNM bitmap file. | |
1870 | @li wxBITMAP_TYPE_TIFF: Load a TIFF bitmap file. | |
1871 | @li wxBITMAP_TYPE_TGA: Load a TGA bitmap file. | |
1872 | @li wxBITMAP_TYPE_XPM: Load a XPM bitmap file. | |
1873 | @li wxBITMAP_TYPE_ICO: Load a Windows icon file (ICO). | |
1874 | @li wxBITMAP_TYPE_CUR: Load a Windows cursor file (CUR). | |
1875 | @li wxBITMAP_TYPE_ANI: Load a Windows animated cursor file (ANI). | |
1876 | @li wxBITMAP_TYPE_ANY: Will try to autodetect the format. | |
1877 | ||
1878 | @return Number of available images. For most image handlers, this is 1 | |
1879 | (exceptions are TIFF and ICO formats as well as animated GIFs | |
1880 | for which this function returns the number of frames in the | |
1881 | animation). | |
1882 | */ | |
1883 | static int GetImageCount(const wxString& filename, | |
1884 | wxBitmapType type = wxBITMAP_TYPE_ANY); | |
1885 | static int GetImageCount(wxInputStream& stream, | |
1886 | wxBitmapType type = wxBITMAP_TYPE_ANY); | |
1887 | //@} | |
1888 | ||
1889 | /** | |
1890 | Iterates all registered wxImageHandler objects, and returns a string containing | |
1891 | file extension masks suitable for passing to file open/save dialog boxes. | |
1892 | ||
1893 | @return The format of the returned string is @c "(*.ext1;*.ext2)|*.ext1;*.ext2". | |
1894 | It is usually a good idea to prepend a description before passing | |
1895 | the result to the dialog. | |
1896 | Example: | |
1897 | @code | |
1898 | wxFileDialog FileDlg( this, "Choose Image", ::wxGetCwd(), "", | |
1899 | _("Image Files ") + wxImage::GetImageExtWildcard(), | |
1900 | wxFD_OPEN ); | |
1901 | @endcode | |
1902 | ||
1903 | @see wxImageHandler | |
1904 | */ | |
1905 | static wxString GetImageExtWildcard(); | |
1906 | ||
1907 | /** | |
1908 | Converts a color in RGB color space to HSV color space. | |
1909 | */ | |
1910 | static wxImage::HSVValue RGBtoHSV(const wxImage::RGBValue& rgb); | |
1911 | ||
1912 | /** | |
1913 | Converts a color in HSV color space to RGB color space. | |
1914 | */ | |
1915 | static wxImage::RGBValue HSVtoRGB(const wxImage::HSVValue& hsv); | |
1916 | }; | |
1917 | ||
1918 | ||
1919 | class wxImageHistogram : public wxImageHistogramBase | |
1920 | { | |
1921 | public: | |
1922 | wxImageHistogram(); | |
1923 | ||
1924 | // get the key in the histogram for the given RGB values | |
1925 | static unsigned long MakeKey(unsigned char r, | |
1926 | unsigned char g, | |
1927 | unsigned char b); | |
1928 | ||
1929 | // find first colour that is not used in the image and has higher | |
1930 | // RGB values than RGB(startR, startG, startB) | |
1931 | // | |
1932 | // returns true and puts this colour in r, g, b (each of which may be NULL) | |
1933 | // on success or returns false if there are no more free colours | |
1934 | bool FindFirstUnusedColour(unsigned char *r, | |
1935 | unsigned char *g, | |
1936 | unsigned char *b, | |
1937 | unsigned char startR = 1, | |
1938 | unsigned char startG = 0, | |
1939 | unsigned char startB = 0 ) const; | |
1940 | }; | |
1941 | ||
1942 | /** | |
1943 | An instance of an empty image without an alpha channel. | |
1944 | */ | |
1945 | wxImage wxNullImage; | |
1946 | ||
1947 | ||
1948 | // ============================================================================ | |
1949 | // Global functions/macros | |
1950 | // ============================================================================ | |
1951 | ||
1952 | /** @addtogroup group_funcmacro_appinitterm */ | |
1953 | //@{ | |
1954 | ||
1955 | /** | |
1956 | Initializes all available image handlers. | |
1957 | ||
1958 | This function calls wxImage::AddHandler() for all the available image | |
1959 | handlers (see @ref image_handlers for the full list). Calling it is the | |
1960 | simplest way to initialize wxImage but it creates and registers even the | |
1961 | handlers your program may not use. If you want to avoid the overhead of | |
1962 | doing this you need to call wxImage::AddHandler() manually just for the | |
1963 | handlers that you do want to use. | |
1964 | ||
1965 | @see wxImage, wxImageHandler | |
1966 | ||
1967 | @header{wx/image.h} | |
1968 | */ | |
1969 | void wxInitAllImageHandlers(); | |
1970 | ||
1971 | //@} | |
1972 |