+ @param data
+ A pointer to RGB data
+ @param apha
+ A pointer to alpha-channel data
+
+ */
+ wxImage(int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false );
+ wxImage(int width, int height, unsigned char* data, bool static_data = false);
+ //@}
+
+ /**
+ Creates an image with the given size and clears it if requested.
+ Does not create an alpha channel.
+ */
+ wxImage(int width, int height, bool clear = true);
+
+ /**
+ Creates an empty wxImage object. Does not create
+ an alpha channel.
+
+ @param width
+ Specifies the width of the image.
+ @param height
+ Specifies the height of the image.
+ @clear
+ Clear the image with zeros.
+ */
+ wxImage();
+
+ /**
+ Creates an image from XPM data.
+
+ @param xpmData
+ A pointer to XPM image data.
+ */
+ wxImage(const char* const* xpmData);
+ //@{
+ /**