]>
git.saurik.com Git - wxWidgets.git/blob - interface/image.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxImageHandler
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 This is the base class for implementing image file loading/saving, and
14 image creation from data.
15 It is used within wxImage and is not normally seen by the application.
17 If you wish to extend the capabilities of wxImage, derive a class from
18 wxImageHandler and add the handler using wxImage::AddHandler in your
19 application initialisation.
27 @see wxImage, wxInitAllImageHandlers()
29 @todo Document all image handler types, indicating their library.
31 class wxImageHandler
: public wxObject
35 Default constructor. In your own default constructor, initialise the members
36 m_name, m_extension and m_type.
41 Destroys the wxImageHandler object.
46 Gets the file extension associated with this handler.
48 const wxString
GetExtension() const;
51 If the image file contains more than one image and the image handler is capable
52 of retrieving these individually, this function will return the number of
56 Opened input stream for reading image data. Currently, the stream must
59 @return Number of available images. For most image handlers, this is 1
60 (exceptions are TIFF and ICO formats).
62 int GetImageCount(wxInputStream
& stream
);
65 Gets the MIME type associated with this handler.
67 const wxString
GetMimeType() const;
70 Gets the name of this handler.
72 const wxString
GetName() const;
75 Gets the image type associated with this handler.
77 wxBitmapType
GetType() const;
80 Loads a image from a stream, putting the resulting data into @e image. If the
82 more than one image and the image handler is capable of retrieving these
83 individually, @e index
84 indicates which image to read from the stream.
87 The image object which is to be affected by this operation.
89 Opened input stream for reading image data.
91 If set to @true, errors reported by the image handler will produce
94 The index of the image in the file (starting from zero).
96 @return @true if the operation succeeded, @false otherwise.
98 @see wxImage::LoadFile, wxImage::SaveFile, SaveFile()
100 bool LoadFile(wxImage
* image
, wxInputStream
& stream
,
101 bool verbose
= true, int index
= 0);
104 Saves a image in the output stream.
107 The image object which is to be affected by this operation.
109 Opened output stream for writing the data.
111 @return @true if the operation succeeded, @false otherwise.
113 @see wxImage::LoadFile, wxImage::SaveFile, LoadFile()
115 bool SaveFile(wxImage
* image
, wxOutputStream
& stream
);
118 Sets the handler extension.
123 void SetExtension(const wxString
& extension
);
126 Sets the handler MIME type.
131 void SetMimeType(const wxString
& mimetype
);
134 Sets the handler name.
139 void SetName(const wxString
& name
);
148 This class encapsulates a platform-independent image. An image can be
149 created from data, or using wxBitmap::ConvertToImage. An image can be
150 loaded from a file in a variety of formats, and is extensible to new
151 formats via image format handlers. Functions are available to set and
152 get image bits, so it can be used for basic image manipulation.
154 A wxImage cannot (currently) be drawn directly to a wxDC. Instead,
155 a platform-specific wxBitmap object must be created from it using
156 the wxBitmap::wxBitmap(wxImage,int depth) constructor.
157 This bitmap can then be drawn in a device context, using wxDC::DrawBitmap.
159 One colour value of the image may be used as a mask colour which will lead to
160 the automatic creation of a wxMask object associated to the bitmap object.
168 @see wxBitmap, wxInitAllImageHandlers(), wxPixelData
170 class wxImage
: public wxObject
175 Creates an empty wxImage object without an alpha channel.
180 Creates an image with the given size and clears it if requested.
181 Does not create an alpha channel.
184 Specifies the width of the image.
186 Specifies the height of the image.
188 Clear the image with zeros.
190 wxImage(int width
, int height
, bool clear
= true);
193 Creates an image from data in memory. If static_data is false
194 then the wxImage will take ownership of the data and free it
195 afterwards. For this, it has to be allocated with @e malloc.
198 Specifies the width of the image.
200 Specifies the height of the image.
202 A pointer to RGB data
204 Indicates if the data should be free'd after use
207 wxImage(int width
, int height
, unsigned char* data
, bool static_data
= false);
210 Creates an image from data in memory. If static_data is false
211 then the wxImage will take ownership of the data and free it
212 afterwards. For this, it has to be allocated with @e malloc.
215 Specifies the width of the image.
217 Specifies the height of the image.
219 A pointer to RGB data
221 A pointer to alpha-channel data
223 Indicates if the data should be free'd after use
226 wxImage(int width
, int height
, unsigned char* data
, unsigned char* alpha
, bool static_data
= false );
229 Creates an image from XPM data.
232 A pointer to XPM image data.
234 wxImage(const char* const* xpmData
);
237 Creates an image from a file.
240 Name of the file from which to load the image.
242 May be one of the following:
243 @li wxBITMAP_TYPE_BMP: Load a Windows bitmap file.
244 @li wxBITMAP_TYPE_GIF: Load a GIF bitmap file.
245 @li wxBITMAP_TYPE_JPEG: Load a JPEG bitmap file.
246 @li wxBITMAP_TYPE_PNG: Load a PNG bitmap file.
247 @li wxBITMAP_TYPE_PCX: Load a PCX bitmap file.
248 @li wxBITMAP_TYPE_PNM: Load a PNM bitmap file.
249 @li wxBITMAP_TYPE_TIF: Load a TIFF bitmap file.
250 @li wxBITMAP_TYPE_TGA: Load a TGA bitmap file.
251 @li wxBITMAP_TYPE_XPM: Load a XPM bitmap file.
252 @li wxBITMAP_TYPE_ICO: Load a Windows icon file (ICO).
253 @li wxBITMAP_TYPE_CUR: Load a Windows cursor file (CUR).
254 @li wxBITMAP_TYPE_ANI: Load a Windows animated cursor file (ANI).
255 @li wxBITMAP_TYPE_ANY: Will try to autodetect the format.
257 Index of the image to load in the case that the image file contains
258 multiple images. This is only used by GIF, ICO and TIFF handlers.
259 The default value (-1) means "choose the default image" and is
260 interpreted as the first image (index=0) by the GIF and TIFF handler
261 and as the largest and most colourful one by the ICO handler.
263 @remarks Depending on how wxWidgets has been configured, not all formats
268 wxImage(const wxString
& name
, wxBitmapType type
= wxBITMAP_TYPE_ANY
, int index
= -1);
271 Creates an image from a file using MIME-types to specify the type.
274 Name of the file from which to load the image.
278 MIME type string (for example 'image/jpeg')
282 wxImage(const wxString
& name
, const wxString
& mimetype
, int index
= -1);
285 Creates an image from a stream.
288 Opened input stream from which to load the image. Currently,
289 the stream must support seeking.
295 wxImage(wxInputStream
& stream
, wxBitmapType type
= wxBITMAP_TYPE_ANY
, int index
= -1);
298 Creates an image from a stream using MIME-types to specify the type.
301 Opened input stream from which to load the image. Currently,
302 the stream must support seeking.
304 MIME type string (for example 'image/jpeg')
308 wxImage(wxInputStream
& stream
, const wxString
& mimetype
, int index
= -1);
313 See @ref overview_refcountdestruct "reference-counted object destruction" for
319 Register an image handler.
321 static void AddHandler(wxImageHandler
* handler
);
324 Blurs the image in both horizontal and vertical directions by the
325 specified pixel @e blurRadius. This should not be used when using
326 a single mask colour for transparency.
328 @see BlurHorizontal(), BlurVertical()
330 wxImage
Blur(int blurRadius
);
333 Blurs the image in the horizontal direction only. This should not be used
334 when using a single mask colour for transparency.
336 @see Blur(), BlurVertical()
338 wxImage
BlurHorizontal(int blurRadius
);
341 Blurs the image in the vertical direction only. This should not be used
342 when using a single mask colour for transparency.
344 @see Blur(), BlurHorizontal()
346 wxImage
BlurVertical(int blurRadius
);
349 Returns @true if the current image handlers can read this file
351 bool CanRead(const wxString
& filename
);
354 Deletes all image handlers.
355 This function is called by wxWidgets on exit.
357 static void CleanUpHandlers();
360 Computes the histogram of the image. @a histogram is a reference to
361 wxImageHistogram object. wxImageHistogram is a specialization of
362 wxHashMap "template" and is defined as follows:
364 @return Returns number of colours in the histogram.
366 unsigned long ComputeHistogram(wxImageHistogram
& histogram
) const;
369 If the image has alpha channel, this method converts it to mask. All pixels
370 with alpha value less than @a threshold are replaced with mask colour
371 and the alpha channel is removed. Mask colour is chosen automatically using
372 FindFirstUnusedColour().
373 If the image image doesn't have alpha channel,
374 ConvertAlphaToMask does nothing.
376 @return @false if FindFirstUnusedColour returns @false, @true otherwise.
378 bool ConvertAlphaToMask(unsigned char threshold
= 128);
381 Deprecated, use equivalent @ref wxBitmap::ctor "wxBitmap constructor"
382 (which takes wxImage and depth as its arguments) instead.
384 wxBitmap
ConvertToBitmap() const;
387 Returns a greyscale version of the image. The returned image uses the luminance
388 component of the original to calculate the greyscale. Defaults to using
389 ITU-T BT.601 when converting to YUV, where every pixel equals
390 (R * @e lr) + (G * @e lg) + (B * @e lb).
392 wxImage
ConvertToGreyscale(double lr
= 0.299, double lg
= 0.587,
393 double lb
= 0.114) const;
396 Returns monochromatic version of the image. The returned image has white
397 colour where the original has @e (r,g,b) colour and black colour
400 wxImage
ConvertToMono(unsigned char r
, unsigned char g
,
401 unsigned char b
) const;
404 Returns an identical copy of the image.
406 wxImage
Copy() const;
409 Creates a fresh image. If @a clear is @true, the new image will be initialized
411 Otherwise, the image data will be uninitialized.
414 The width of the image in pixels.
416 The height of the image in pixels.
418 @return @true if the call succeeded, @false otherwise.
420 bool Create(int width
, int height
, bool clear
= true);
423 Destroys the image data.
429 Pointers to variables to save the colour.
430 @param startR,startG,startB
431 Initial values of the colour. Returned colour
432 will have RGB values equal to or greater than these.
434 @return Returns @false if there is no unused colour left, @true on success.
436 bool FindFirstUnusedColour(unsigned char* r
, unsigned char* g
,
438 unsigned char startR
= 1,
439 unsigned char startG
= 0,
440 unsigned char startB
= 0);
444 Finds the handler associated with the given MIME type.
449 The file extension, such as "bmp".
451 The image type, such as wxBITMAP_TYPE_BMP.
455 @return A pointer to the handler if found, @NULL otherwise.
459 static wxImageHandler
* FindHandler(const wxString
& name
);
460 static wxImageHandler
* FindHandler(const wxString
& extension
,
461 wxBitmapType imageType
);
462 static wxImageHandler
* FindHandler(wxBitmapType imageType
);
463 static wxImageHandler
* FindHandlerMime(const wxString
& mimetype
);
467 Return alpha value at given pixel location.
469 unsigned char GetAlpha(int x
, int y
) const;
472 Returns pointer to the array storing the alpha values for this image. This
473 pointer is @NULL for the images without the alpha channel. If the image
474 does have it, this pointer may be used to directly manipulate the alpha values
475 which are stored as the RGB ones.
477 const unsigned char * GetAlpha() const;
480 Returns the blue intensity at the given coordinate.
482 unsigned char GetBlue(int x
, int y
) const;
485 Returns the image data as an array. This is most often used when doing
486 direct image manipulation. The return value points to an array of
487 characters in RGBRGBRGB... format in the top-to-bottom, left-to-right
488 order, that is the first RGB triplet corresponds to the pixel first pixel of
489 the first row, the second one --- to the second pixel of the first row and so
490 on until the end of the first row, with second row following after it and so
492 You should not delete the returned pointer nor pass it to
495 unsigned char* GetData() const;
498 Returns the green intensity at the given coordinate.
500 unsigned char GetGreen(int x
, int y
) const;
503 Returns the static list of image format handlers.
507 static wxList
GetHandlers();
510 Gets the height of the image in pixels.
512 int GetHeight() const;
516 If the image file contains more than one image and the image handler is capable
517 of retrieving these individually, this function will return the number of
521 Name of the file to query.
523 Opened input stream with image data. Currently, the stream must
526 May be one of the following:
527 @li wxBITMAP_TYPE_BMP: Load a Windows bitmap file.
528 @li wxBITMAP_TYPE_GIF: Load a GIF bitmap file.
529 @li wxBITMAP_TYPE_JPEG: Load a JPEG bitmap file.
530 @li wxBITMAP_TYPE_PNG: Load a PNG bitmap file.
531 @li wxBITMAP_TYPE_PCX: Load a PCX bitmap file.
532 @li wxBITMAP_TYPE_PNM: Load a PNM bitmap file.
533 @li wxBITMAP_TYPE_TIF: Load a TIFF bitmap file.
534 @li wxBITMAP_TYPE_TGA: Load a TGA bitmap file.
535 @li wxBITMAP_TYPE_XPM: Load a XPM bitmap file.
536 @li wxBITMAP_TYPE_ICO: Load a Windows icon file (ICO).
537 @li wxBITMAP_TYPE_CUR: Load a Windows cursor file (CUR).
538 @li wxBITMAP_TYPE_ANI: Load a Windows animated cursor file (ANI).
539 @li wxBITMAP_TYPE_ANY: Will try to autodetect the format.
541 @return Number of available images. For most image handlers, this is 1
542 (exceptions are TIFF and ICO formats).
544 static int GetImageCount(const wxString
& filename
,
545 wxBitmapType type
= wxBITMAP_TYPE_ANY
);
546 static int GetImageCount(wxInputStream
& stream
,
547 wxBitmapType type
= wxBITMAP_TYPE_ANY
);
551 Iterates all registered wxImageHandler objects, and returns a string containing
553 suitable for passing to file open/save dialog boxes.
555 @return The format of the returned string is
556 "(*.ext1;*.ext2)|*.ext1;*.ext2".
560 static wxString
GetImageExtWildcard();
563 Gets the blue value of the mask colour.
565 unsigned char GetMaskBlue() const;
568 Gets the green value of the mask colour.
570 unsigned char GetMaskGreen() const;
573 Gets the red value of the mask colour.
575 unsigned char GetMaskRed() const;
578 Gets a user-defined option. The function is case-insensitive to @e name.
579 For example, when saving as a JPEG file, the option @b quality is
580 used, which is a number between 0 and 100 (0 is terrible, 100 is very good).
582 @see SetOption(), GetOptionInt(), HasOption()
584 wxString
GetOption(const wxString
& name
) const;
587 Gets a user-defined option as an integer. The function is case-insensitive
588 to @e name. If the given option is not present, the function returns 0.
589 Use HasOption() is 0 is a possibly valid value for the option.
590 Options for wxPNGHandler
591 @li wxIMAGE_OPTION_PNG_FORMAT: Format for saving a PNG file.
592 @li wxIMAGE_OPTION_PNG_BITDEPTH: Bit depth for every channel (R/G/B/A).
594 Supported values for wxIMAGE_OPTION_PNG_FORMAT:
595 @li wxPNG_TYPE_COLOUR: Stores RGB image.
596 @li wxPNG_TYPE_GREY: Stores grey image, converts from RGB.
597 @li wxPNG_TYPE_GREY_RED: Stores grey image, uses red value as grey.
599 @see SetOption(), GetOption()
601 int GetOptionInt(const wxString
& name
) const;
604 Get the current mask colour or find a suitable unused colour that could be
605 used as a mask colour. Returns @true if the image currently has a mask.
607 bool GetOrFindMaskColour(unsigned char r
, unsigned char g
,
608 unsigned char b
) const;
611 Returns the palette associated with the image. Currently the palette is only
612 used when converting to wxBitmap under Windows. Some of the wxImage handlers
613 have been modified to set the palette if one exists in the image file (usually
614 256 or less colour images in GIF or PNG format).
616 const wxPalette
GetPalette() const;
619 Returns the red intensity at the given coordinate.
621 unsigned char GetRed(int x
, int y
) const;
624 Returns a sub image of the current one as long as the rect belongs entirely to
627 wxImage
GetSubImage(const wxRect
& rect
) const;
630 Gets the type of image found by LoadFile or specified with SaveFile
633 wxBitmapType
GetType() const;
636 Gets the width of the image in pixels.
640 int GetWidth() const;
643 Constructor for HSVValue, an object that contains values for hue, saturation
645 represent the value of a color. It is used by HSVtoRGB()
646 and RGBtoHSV(), which
647 converts between HSV color space and RGB color space.
649 HSVValue(double h
= 0.0, double s
= 0.0, double v
= 0.0);
652 Converts a color in HSV color space to RGB color space.
654 #define wxImage::RGBValue HSVtoRGB(const HSVValue& hsv) /* implementation is private */
657 Returns @true if this image has alpha channel, @false otherwise.
659 @see GetAlpha(), SetAlpha()
661 bool HasAlpha() const;
664 Returns @true if there is a mask active, @false otherwise.
666 bool HasMask() const;
669 Returns @true if the given option is present. The function is case-insensitive
672 @see SetOption(), GetOption(), GetOptionInt()
674 bool HasOption(const wxString
& name
) const;
677 Initializes the image alpha channel data. It is an error to call it
678 if the image already has alpha data. If it doesn't, alpha data will be
679 by default initialized to all pixels being fully opaque. But if the image has a
680 a mask colour, all mask pixels will be completely transparent.
685 Internal use only. Adds standard image format handlers. It only install BMP
686 for the time being, which is used by wxBitmap.
687 This function is called by wxWidgets on startup, and shouldn't be called by
690 @see wxImageHandler, wxInitAllImageHandlers(), wxQuantize
692 static void InitStandardHandlers();
695 Adds a handler at the start of the static list of format handlers.
698 A new image format handler object. There is usually only one instance
699 of a given handler class in an application session.
703 static void InsertHandler(wxImageHandler
* handler
);
706 Returns @true if image data is present.
711 Returns @true if the given pixel is transparent, i.e. either has the mask
712 colour if this image has a mask or if this image has alpha channel and alpha
713 value of this pixel is strictly less than @e threshold.
715 bool IsTransparent(int x
, int y
, unsigned char threshold
= 128) const;
719 Loads an image from an input stream.
722 Name of the file from which to load the image.
724 Opened input stream from which to load the image. Currently, the
725 stream must support seeking.
727 May be one of the following:
728 @li wxBITMAP_TYPE_BMP: Load a Windows bitmap file.
729 @li wxBITMAP_TYPE_GIF: Load a GIF bitmap file.
730 @li wxBITMAP_TYPE_JPEG: Load a JPEG bitmap file.
731 @li wxBITMAP_TYPE_PNG: Load a PNG bitmap file.
732 @li wxBITMAP_TYPE_PCX: Load a PCX bitmap file.
733 @li wxBITMAP_TYPE_PNM: Load a PNM bitmap file.
734 @li wxBITMAP_TYPE_TIF: Load a TIFF bitmap file.
735 @li wxBITMAP_TYPE_TGA: Load a TGA bitmap file.
736 @li wxBITMAP_TYPE_XPM: Load a XPM bitmap file.
737 @li wxBITMAP_TYPE_ICO: Load a Windows icon file (ICO).
738 @li wxBITMAP_TYPE_CUR: Load a Windows cursor file (CUR).
739 @li wxBITMAP_TYPE_ANI: Load a Windows animated cursor file (ANI).
740 @li wxBITMAP_TYPE_ANY: Will try to autodetect the format.
742 MIME type string (for example 'image/jpeg')
744 Index of the image to load in the case that the image file contains
745 multiple images. This is only used by GIF, ICO and TIFF handlers.
746 The default value (-1) means "choose the default image" and is
747 interpreted as the first image (index=0) by the GIF and TIFF handler
748 and as the largest and most colourful one by the ICO handler.
750 @return @true if the operation succeeded, @false otherwise. If the
751 optional index parameter is out of range, @false is
752 returned and a call to wxLogError() takes place.
754 @remarks Depending on how wxWidgets has been configured, not all formats
759 bool LoadFile(const wxString
& name
,
760 wxBitmapType type
= wxBITMAP_TYPE_ANY
,
762 bool LoadFile(const wxString
& name
, const wxString
& mimetype
,
764 bool LoadFile(wxInputStream
& stream
, wxBitmapType type
,
766 bool LoadFile(wxInputStream
& stream
,
767 const wxString
& mimetype
,
772 Returns a mirrored copy of the image. The parameter @e horizontally
773 indicates the orientation.
775 wxImage
Mirror(bool horizontally
= true) const;
778 Copy the data of the given @a image to the specified position in this image.
780 void Paste(const wxImage
& image
, int x
, int y
);
783 Constructor for RGBValue, an object that contains values for red, green and
785 represent the value of a color. It is used by HSVtoRGB()
786 and RGBtoHSV(), which
787 converts between HSV color space and RGB color space.
789 RGBValue(unsigned char r
= 0, unsigned char g
= 0,
790 unsigned char b
= 0);
793 Converts a color in RGB color space to HSV color space.
795 #define wxImage::HSVValue RGBtoHSV(const RGBValue& rgb) /* implementation is private */
798 Finds the handler with the given name, and removes it. The handler
804 @return @true if the handler was found and removed, @false otherwise.
808 static bool RemoveHandler(const wxString
& name
);
811 Replaces the colour specified by @e r1,g1,b1 by the colour @e r2,g2,b2.
813 void Replace(unsigned char r1
, unsigned char g1
,
814 unsigned char b1
, unsigned char r2
,
815 unsigned char g2
, unsigned char b2
);
818 Changes the size of the image in-place by scaling it: after a call to this
820 the image will have the given width and height.
821 For a description of the @a quality parameter, see the Scale() function.
822 Returns the (modified) image itself.
826 wxImage
Rescale(int width
, int height
,
827 int quality
= wxIMAGE_QUALITY_NORMAL
);
830 Changes the size of the image in-place without scaling it by adding either a
832 with the given colour or cropping as necessary. The image is pasted into a new
833 image with the given @a size and background colour at the position @e pos
834 relative to the upper left of the new image. If @a red = green = blue = -1
835 then use either the current mask colour if set or find, use, and set a
836 suitable mask colour for any newly exposed areas.
837 Returns the (modified) image itself.
841 wxImage
Resize(const wxSize
& size
, const wxPoint pos
,
842 int red
= -1, int green
= -1,
846 Rotates the image about the given point, by @a angle radians. Passing @true
847 to @a interpolating results in better image quality, but is slower. If the
848 image has a mask, then the mask colour is used for the uncovered pixels in the
849 rotated image background. Else, black (rgb 0, 0, 0) will be used.
850 Returns the rotated image, leaving this image intact.
852 wxImage
Rotate(double angle
, const wxPoint
& rotationCentre
,
853 bool interpolating
= true,
854 wxPoint
* offsetAfterRotation
= NULL
);
857 Returns a copy of the image rotated 90 degrees in the direction
858 indicated by @e clockwise.
860 wxImage
Rotate90(bool clockwise
= true) const;
863 Rotates the hue of each pixel in the image by @e angle, which is a double in
864 the range of -1.0 to +1.0, where -1.0 corresponds to -360 degrees and +1.0
868 void RotateHue(double angle
);
872 Saves an image in the given stream.
875 Name of the file to save the image to.
877 Opened output stream to save the image to.
879 Currently these types can be used:
880 @li wxBITMAP_TYPE_BMP: Save a BMP image file.
881 @li wxBITMAP_TYPE_JPEG: Save a JPEG image file.
882 @li wxBITMAP_TYPE_PNG: Save a PNG image file.
883 @li wxBITMAP_TYPE_PCX: Save a PCX image file (tries to save as 8-bit if possible,
884 falls back to 24-bit otherwise).
885 @li wxBITMAP_TYPE_PNM: Save a PNM image file (as raw RGB always).
886 @li wxBITMAP_TYPE_TIFF: Save a TIFF image file.
887 @li wxBITMAP_TYPE_XPM: Save a XPM image file.
888 @li wxBITMAP_TYPE_ICO: Save a Windows icon file (ICO) (the size may
889 be up to 255 wide by 127 high. A single image is saved in 8 colors
890 at the size supplied).
891 @li wxBITMAP_TYPE_CUR: Save a Windows cursor file (CUR).
895 @return @true if the operation succeeded, @false otherwise.
897 @remarks Depending on how wxWidgets has been configured, not all formats
902 bool SaveFile(const wxString
& name
, int type
) const;
903 const bool SaveFile(const wxString
& name
,
904 const wxString
& mimetype
) const;
905 const bool SaveFile(const wxString
& name
) const;
906 const bool SaveFile(wxOutputStream
& stream
, int type
) const;
907 const bool SaveFile(wxOutputStream
& stream
,
908 const wxString
& mimetype
) const;
912 Returns a scaled version of the image. This is also useful for
913 scaling bitmaps in general as the only other way to scale bitmaps
914 is to blit a wxMemoryDC into another wxMemoryDC.
915 It should be noted that although using wxIMAGE_QUALITY_HIGH produces much nicer
916 looking results it is a slower method. Downsampling will use the box averaging
918 which seems to operate very fast. If you are upsampling larger images using
919 this method you will most likely notice that it is a bit slower and in extreme
921 it will be quite substantially slower as the bicubic algorithm has to process a
924 It should also be noted that the high quality scaling may not work as expected
925 when using a single mask colour for transparency, as the scaling will blur the
926 image and will therefore remove the mask partially. Using the alpha channel
931 Determines what method to use for resampling the image.
933 Can be one of the following:
934 @li wxIMAGE_QUALITY_NORMAL: Uses the normal default scaling method of
936 @li wxIMAGE_QUALITY_HIGH: Uses bicubic and box averaging resampling
937 methods for upsampling and downsampling respectively
941 wxImage
Scale(int width
, int height
,
942 int quality
= wxIMAGE_QUALITY_NORMAL
) const;
945 Assigns new data as alpha channel to the image.
946 If @e static_data is false the data will be
949 void SetAlpha(unsigned char* alpha
= NULL
,
950 bool static_data
= false);
953 Sets the alpha value for the given pixel. This function should only be
954 called if the image has alpha channel data, use HasAlpha() to
957 void SetAlpha(int x
, int y
, unsigned char alpha
);
960 Sets the image data without performing checks. The data given must have
961 the size (width*height*3) or results will be unexpected. Don't use this
962 method if you aren't sure you know what you are doing.
963 The data must have been allocated with @c malloc(), @b NOT with
965 After this call the pointer to the data is owned by the wxImage object,
966 that will be responsible for deleting it.
967 Do not pass to this function a pointer obtained through
970 void SetData(unsigned char* data
);
973 Specifies whether there is a mask or not. The area of the mask is determined by
974 the current mask colour.
976 void SetMask(bool hasMask
= true);
979 Sets the mask colour for this image (and tells the image to use the mask).
981 void SetMaskColour(unsigned char red
, unsigned char green
,
986 The mask image to extract mask shape from. Must have same dimensions as the
989 RGB value of pixels in mask that will be used to create the mask.
991 @return Returns @false if mask does not have same dimensions as the image
992 or if there is no unused colour left. Returns @true if
993 the mask was successfully applied.
995 bool SetMaskFromImage(const wxImage
& mask
, unsigned char mr
,
1001 Sets a user-defined option. The function is case-insensitive to @e name.
1002 For example, when saving as a JPEG file, the option @b quality is
1003 used, which is a number between 0 and 100 (0 is terrible, 100 is very good).
1005 @see GetOption(), GetOptionInt(), HasOption()
1007 void SetOption(const wxString
& name
, const wxString
& value
);
1008 void SetOption(const wxString
& name
, int value
);
1012 Associates a palette with the image. The palette may be used when converting
1013 wxImage to wxBitmap (MSW only at present) or in file save operations (none as
1016 void SetPalette(const wxPalette
& palette
);
1019 Sets the colour of the pixels within the given rectangle. This routine performs
1020 bounds-checks for the coordinate so it can be considered a safe way to
1024 void SetRGB(wxRect
& rect
, unsigned char red
,
1025 unsigned char green
,
1026 unsigned char blue
);
1029 Returns a resized version of this image without scaling it by adding either a
1031 with the given colour or cropping as necessary. The image is pasted into a new
1032 image with the given @a size and background colour at the position @e pos
1033 relative to the upper left of the new image. If @a red = green = blue = -1
1034 then the areas of the larger image not covered by this image are made
1035 transparent by filling them with the image mask colour (which will be allocated
1036 automatically if it isn't currently set). Otherwise, the areas will be filled
1037 with the colour with the specified RGB components.
1041 wxImage
Size(const wxSize
& size
, const wxPoint pos
, int red
= -1,
1042 int green
= -1, int blue
= -1) const;
1045 Assignment operator, using @ref overview_trefcount "reference counting".
1050 @return Returns 'this' object.
1052 wxImage
operator =(const wxImage
& image
);
1055 // ============================================================================
1056 // Global functions/macros
1057 // ============================================================================
1059 /** @ingroup group_funcmacro_appinitterm */
1063 Initializes all available image handlers. For a list of available handlers,
1066 @see wxImage, wxImageHandler
1070 void wxInitAllImageHandlers();