1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %% Purpose: wxImage documentation
4 %% Author: wxWidgets Team
8 %% Copyright: (c) wxWidgets Team
9 %% License: wxWindows license
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
12 \section{\class{wxImage
}}\label{wximage
}
14 This class encapsulates a platform-independent image. An image can be created
15 from data, or using
\helpref{wxBitmap::ConvertToImage
}{wxbitmapconverttoimage
}. An image
16 can be loaded from a file in a variety of formats, and is extensible to new formats
17 via image format handlers. Functions are available to set and get image bits, so
18 it can be used for basic image manipulation.
20 A wxImage cannot (currently) be drawn directly to a
\helpref{wxDC
}{wxdc
}. Instead,
21 a platform-specific
\helpref{wxBitmap
}{wxbitmap
} object must be created from it using
22 the
\helpref{wxBitmap::wxBitmap(wxImage,int depth)
}{wxbitmapctor
} constructor.
24 be drawn in a device context, using
\helpref{wxDC::DrawBitmap
}{wxdcdrawbitmap
}.
26 One colour value of the image may be used as a mask colour which will lead to the automatic
27 creation of a
\helpref{wxMask
}{wxmask
} object associated to the bitmap object.
29 \wxheading{Alpha channel support
}
31 Starting from wxWidgets
2.5.0 wxImage supports alpha channel data, that is in
32 addition to a byte for the red, green and blue colour components for each pixel
33 it also stores a byte representing the pixel opacity. An alpha value of $
0$
34 corresponds to a transparent pixel (null opacity) while a value of $
255$
35 means that the pixel is
100\% opaque.
37 Unlike RGB data, not all images have an alpha channel and before using
38 \helpref{GetAlpha
}{wximagegetalpha
} you should check if this image contains
39 an alpha channel with
\helpref{HasAlpha
}{wximagehasalpha
}. Note that currently only
40 images loaded from PNG files with transparency information will have an alpha
41 channel but alpha support will be added to the other formats as well (as well
42 as support for saving images with alpha channel which also isn't implemented).
44 \wxheading{Available image handlers
}
46 The following image handlers are available.
{\bf wxBMPHandler
} is always
47 installed by default. To use other image formats, install the appropriate
48 handler with
\helpref{wxImage::AddHandler
}{wximageaddhandler
} or
49 \helpref{wxInitAllImageHandlers
}{wxinitallimagehandlers
}.
53 \twocolitem{\indexit{wxBMPHandler
}}{For loading and saving, always installed.
}
54 \twocolitem{\indexit{wxPNGHandler
}}{For loading (including alpha support) and saving.
}
55 \twocolitem{\indexit{wxJPEGHandler
}}{For loading and saving.
}
56 \twocolitem{\indexit{wxGIFHandler
}}{Only for loading, due to legal issues.
}
57 \twocolitem{\indexit{wxPCXHandler
}}{For loading and saving (see below).
}
58 \twocolitem{\indexit{wxPNMHandler
}}{For loading and saving (see below).
}
59 \twocolitem{\indexit{wxTIFFHandler
}}{For loading and saving.
}
60 \twocolitem{\indexit{wxIFFHandler
}}{For loading only.
}
61 \twocolitem{\indexit{wxXPMHandler
}}{For loading and saving.
}
62 \twocolitem{\indexit{wxICOHandler
}}{For loading and saving.
}
63 \twocolitem{\indexit{wxCURHandler
}}{For loading and saving.
}
64 \twocolitem{\indexit{wxANIHandler
}}{For loading only.
}
67 When saving in PCX format,
{\bf wxPCXHandler
} will count the number of
68 different colours in the image; if there are
256 or less colours, it will
69 save as
8 bit, else it will save as
24 bit.
71 Loading PNMs only works for ASCII or raw RGB images. When saving in
72 PNM format,
{\bf wxPNMHandler
} will always save as raw RGB.
74 \wxheading{Derived from
}
76 \helpref{wxObject
}{wxobject
}
78 \wxheading{Include files
}
84 \helpref{wxBitmap
}{wxbitmap
},
85 \helpref{wxInitAllImageHandlers
}{wxinitallimagehandlers
}
87 \latexignore{\rtfignore{\wxheading{Members
}}}
90 \membersection{wxImage::wxImage
}\label{wximagector
}
92 \func{}{wxImage
}{\void}
96 \func{}{wxImage
}{\param{const wxImage\&
}{image
}}
100 \func{}{wxImage
}{\param{const wxBitmap\&
}{ bitmap
}}
102 (Deprecated form, use
\helpref{wxBitmap::ConvertToImage
}{wxbitmapconverttoimage
}
103 instead.) Constructs an image from a platform-dependent bitmap. This preserves
104 mask information so that bitmaps and images can be converted back
105 and forth without loss in that respect.
107 \func{}{wxImage
}{\param{int
}{ width
},
\param{int
}{ height
},
\param{bool
}{ clear=true
}}
109 Creates an image with the given width and height. If
{\it clear
} is true, the new image will be initialized to black.
110 Otherwise, the image data will be uninitialized.
112 \func{}{wxImage
}{\param{int
}{ width
},
\param{int
}{ height
},
\param{unsigned char*
}{ data
},
\param{bool
}{ static
\_data =
\false}}
114 Creates an image from given data with the given width and height. If
115 {\it static
\_data} is true, then wxImage will not delete the actual
116 image data in its destructor, otherwise it will free it by calling
119 \func{}{wxImage
}{\param{const wxString\&
}{name
},
\param{long
}{ type = wxBITMAP
\_TYPE\_ANY},
\param{int
}{ index = -
1}}
121 \func{}{wxImage
}{\param{const wxString\&
}{name
},
\param{const wxString\&
}{ mimetype
},
\param{int
}{ index = -
1}}
123 Loads an image from a file.
125 \func{}{wxImage
}{\param{wxInputStream\&
}{stream
},
\param{long
}{ type = wxBITMAP
\_TYPE\_ANY},
\param{int
}{ index = -
1}}
127 \func{}{wxImage
}{\param{wxInputStream\&
}{stream
},
\param{const wxString\&
}{ mimetype
},
\param{int
}{ index = -
1}}
129 Loads an image from an input stream.
131 \func{}{wxImage
}{\param{const char* const*
}{xpmData
}}
133 Creates an image from XPM data.
135 \wxheading{Parameters
}
137 \docparam{width
}{Specifies the width of the image.
}
139 \docparam{height
}{Specifies the height of the image.
}
141 \docparam{name
}{Name of the file from which to load the image.
}
143 \docparam{stream
}{Opened input stream from which to load the image. Currently, the stream must support seeking.
}
145 \docparam{type
}{May be one of the following:
149 \twocolitem{\indexit{wxBITMAP
\_TYPE\_BMP}}{Load a Windows bitmap file.
}
150 \twocolitem{\indexit{wxBITMAP
\_TYPE\_GIF}}{Load a GIF bitmap file.
}
151 \twocolitem{\indexit{wxBITMAP
\_TYPE\_JPEG}}{Load a JPEG bitmap file.
}
152 \twocolitem{\indexit{wxBITMAP
\_TYPE\_PNG}}{Load a PNG bitmap file.
}
153 \twocolitem{\indexit{wxBITMAP
\_TYPE\_PCX}}{Load a PCX bitmap file.
}
154 \twocolitem{\indexit{wxBITMAP
\_TYPE\_PNM}}{Load a PNM bitmap file.
}
155 \twocolitem{\indexit{wxBITMAP
\_TYPE\_TIF}}{Load a TIFF bitmap file.
}
156 \twocolitem{\indexit{wxBITMAP
\_TYPE\_XPM}}{Load a XPM bitmap file.
}
157 \twocolitem{\indexit{wxBITMAP
\_TYPE\_ICO}}{Load a Windows icon file (ICO).
}
158 \twocolitem{\indexit{wxBITMAP
\_TYPE\_CUR}}{Load a Windows cursor file (CUR).
}
159 \twocolitem{\indexit{wxBITMAP
\_TYPE\_ANI}}{Load a Windows animated cursor file (ANI).
}
160 \twocolitem{\indexit{wxBITMAP
\_TYPE\_ANY}}{Will try to autodetect the format.
}
163 \docparam{mimetype
}{MIME type string (for example 'image/jpeg')
}
165 \docparam{index
}{Index of the image to load in the case that the image file contains multiple images.
166 This is only used by GIF, ICO and TIFF handlers. The default value (-
1) means
167 "choose the default image" and is interpreted as the first image (index=
0) by
168 the GIF and TIFF handler and as the largest and most colourful one by the ICO handler.
}
170 \docparam{xpmData
}{A pointer to XPM image data.
}
174 Depending on how wxWidgets has been configured, not all formats may be available.
176 Note: any handler other than BMP must be previously
177 initialized with
\helpref{wxImage::AddHandler
}{wximageaddhandler
} or
178 \helpref{wxInitAllImageHandlers
}{wxinitallimagehandlers
}.
180 Note: you can use
\helpref{GetOptionInt
}{wximagegetoptionint
} to get the
181 hotspot for loaded cursor file:
183 int hotspot_x = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X);
184 int hotspot_y = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y);
190 \helpref{wxImage::LoadFile
}{wximageloadfile
}
192 \pythonnote{Constructors supported by wxPython are:
\par
193 \indented{2cm
}{\begin{twocollist
}
194 \twocolitem{{\bf wxImage(name, flag)
}}{Loads an image from a file
}
195 \twocolitem{{\bf wxNullImage()
}}{Create a null image (has no size or
197 \twocolitem{{\bf wxEmptyImage(width, height)
}}{Creates an empty image
199 \twocolitem{{\bf wxImageFromMime(name, mimetype
}}{Creates an image from
200 the given file of the given mimetype
}
201 \twocolitem{{\bf wxImageFromBitmap(bitmap)
}}{Creates an image from a
202 platform-dependent bitmap
}
206 \perlnote{Constructors supported by wxPerl are:
\par
208 \item{Wx::Image->new( bitmap )
}
209 \item{Wx::Image->new( icon )
}
210 \item{Wx::Image->new( width, height )
}
211 \item{Wx::Image->new( width, height, data )
}
212 \item{Wx::Image->new( file, type, index )
}
213 \item{Wx::Image->new( file, mimetype, index )
}
214 \item{Wx::Image->new( stream, type, index )
}
215 \item{Wx::Image->new( stream, mimetype, index )
}
220 \membersection{wxImage::
\destruct{wxImage
}}\label{wximagedtor
}
222 \func{}{\destruct{wxImage
}}{\void}
227 \membersection{wxImage::AddHandler
}\label{wximageaddhandler
}
229 \func{static void
}{AddHandler
}{\param{wxImageHandler*
}{ handler
}}
231 Adds a handler to the end of the static list of format handlers.
233 \docparam{handler
}{A new image format handler object. There is usually only one instance
234 of a given handler class in an application session.
}
238 \helpref{wxImageHandler
}{wximagehandler
}
240 \func{bool
}{CanRead
}{\param{const wxString\&
}{ filename
}}
242 returns true if the current image handlers can read this file
244 \pythonnote{In wxPython this static method is named
{\tt wxImage
\_AddHandler}.
}
247 \membersection{wxImage::Blur
}\label{wximageblur
}
249 \func{wxImage
}{Blur
}{\param{int
}{ blurRadius
}}
251 Blurs the image in both horizontal and vertical directions by the specified pixel
252 {\it blurRadius
}. This should not be used when using a single mask colour
257 \helpref{BlurHorizontal
}{wximagehorzblur
}
258 \helpref{BlurVertical
}{wximagevertblur
}
261 \membersection{wxImage::BlurHorizontal
}\label{wximagehorzblur
}
263 \func{wxImage
}{BlurHorizontal
}{\param{int
}{ blurRadius
}}
265 Blurs the image in the horizontal direction only. This should not be used
266 when using a single mask colour for transparency.
269 \helpref{Blur
}{wximageblur
}
270 \helpref{BlurVertical
}{wximagevertblur
}
273 \membersection{wxImage::BlurVertical
}\label{wximagevertblur
}
275 \func{wxImage
}{BlurVertical
}{\param{int
}{ blurRadius
}}
277 Blurs the image in the vertical direction only. This should not be used
278 when using a single mask colour for transparency.
282 \helpref{Blur
}{wximageblur
}
283 \helpref{BlurHorizontal
}{wximagehorzblur
}
286 \membersection{wxImage::CleanUpHandlers
}\label{wximagecleanuphandlers
}
288 \func{static void
}{CleanUpHandlers
}{\void}
290 Deletes all image handlers.
292 This function is called by wxWidgets on exit.
295 \membersection{wxImage::ComputeHistogram
}\label{wximagecomputehistogram
}
297 \constfunc{unsigned long
}{ComputeHistogram
}{\param{wxImageHistogram\&
}{histogram
}}
299 Computes the histogram of the image.
{\it histogram
} is a reference to
300 wxImageHistogram object. wxImageHistogram is a specialization of
301 \helpref{wxHashMap
}{wxhashmap
} "template" and is defined as follows:
304 class WXDLLEXPORT wxImageHistogramEntry
307 wxImageHistogramEntry() : index(
0), value(
0)
{}
312 WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry,
313 wxIntegerHash, wxIntegerEqual,
317 \wxheading{Return value
}
319 Returns number of colours in the histogram.
322 \membersection{wxImage::ConvertAlphaToMask
}\label{wximageconvertalphatomask
}
324 \func{bool
}{ConvertAlphaToMask
}{\param{unsigned char
}{ threshold = $
128$
}}
326 If the image has alpha channel, this method converts it to mask. All pixels
327 with alpha value less than
\arg{threshold
} are replaced with mask colour
328 and the alpha channel is removed. Mask colour is chosen automatically using
329 \helpref{FindFirstUnusedColour
}{wximagefindfirstunusedcolour
}.
331 If the image image doesn't have alpha channel,
332 ConvertAlphaToMask does nothing.
334 \wxheading{Return value
}
336 \false if FindFirstUnusedColour returns
\false,
\true otherwise.
339 \membersection{wxImage::ConvertToBitmap
}\label{wximageconverttobitmap
}
341 \constfunc{wxBitmap
}{ConvertToBitmap
}{\void}
343 Deprecated, use equivalent
\helpref{wxBitmap constructor
}{wxbitmapctor
}
344 (which takes wxImage and depth as its arguments) instead.
347 \membersection{wxImage::ConvertToGreyscale
}\label{wximageconverttogreyscale
}
349 \constfunc{wxImage
}{ConvertToGreyscale
}{\param{double
}{ lr =
0.299},
\param{double
}{ lg =
0.587},
\param{double
}{ lb =
0.114}}
351 Returns a greyscale version of the image. The returned image uses the luminance
352 component of the original to calculate the greyscale. Defaults to using
353 ITU-T BT
.601 when converting to YUV, where every pixel equals
354 (R *
{\it lr
}) + (G *
{\it lg
}) + (B *
{\it lb
}).
357 \membersection{wxImage::ConvertToMono
}\label{wxbitmapconverttomono
}
359 \constfunc{wxImage
}{ConvertToMono
}{\param{unsigned char
}{ r
},
\param{unsigned char
}{ g
},
\param{unsigned char
}{ b
}}
361 Returns monochromatic version of the image. The returned image has white
362 colour where the original has
{\it (r,g,b)
} colour and black colour
366 \membersection{wxImage::Copy
}\label{wximagecopy
}
368 \constfunc{wxImage
}{Copy
}{\void}
370 Returns an identical copy of the image.
373 \membersection{wxImage::Create
}\label{wximagecreate
}
375 \func{bool
}{Create
}{\param{int
}{ width
},
\param{int
}{ height
},
\param{bool
}{ clear=true
}}
377 Creates a fresh image. If
{\it clear
} is true, the new image will be initialized to black.
378 Otherwise, the image data will be uninitialized.
380 \wxheading{Parameters
}
382 \docparam{width
}{The width of the image in pixels.
}
384 \docparam{height
}{The height of the image in pixels.
}
386 \wxheading{Return value
}
388 true if the call succeeded, false otherwise.
391 \membersection{wxImage::Destroy
}\label{wximagedestroy
}
393 \func{void
}{Destroy
}{\void}
395 Destroys the image data.
398 \membersection{wxImage::FindFirstUnusedColour
}\label{wximagefindfirstunusedcolour
}
400 \func{bool
}{FindFirstUnusedColour
}{\param{unsigned char *
}{ r
},
\param{unsigned char *
}{ g
},
\param{unsigned char *
}{ b
},
\param{unsigned char
}{ startR =
1},
\param{unsigned char
}{ startG =
0},
\param{unsigned char
}{ startB =
0}}
402 \wxheading{Parameters
}
404 \docparam{r,g,b
}{Pointers to variables to save the colour.
}
406 \docparam{startR,startG,startB
}{Initial values of the colour. Returned colour
407 will have RGB values equal to or greater than these.
}
409 Finds the first colour that is never used in the image. The search begins at
410 given initial colour and continues by increasing R, G and B components (in this
411 order) by
1 until an unused colour is found or the colour space exhausted.
413 \wxheading{Return value
}
415 Returns false if there is no unused colour left, true on success.
419 Note that this method involves computing the histogram, which is
420 computationally intensive operation.
423 \membersection{wxImage::FindHandler
}\label{wximagefindhandler
}
425 \func{static wxImageHandler*
}{FindHandler
}{\param{const wxString\&
}{name
}}
427 Finds the handler with the given name.
429 \func{static wxImageHandler*
}{FindHandler
}{\param{const wxString\&
}{extension
},
\param{long
}{ imageType
}}
431 Finds the handler associated with the given extension and type.
433 \func{static wxImageHandler*
}{FindHandler
}{\param{long
}{imageType
}}
435 Finds the handler associated with the given image type.
437 \func{static wxImageHandler*
}{FindHandlerMime
}{\param{const wxString\&
}{mimetype
}}
439 Finds the handler associated with the given MIME type.
441 \docparam{name
}{The handler name.
}
443 \docparam{extension
}{The file extension, such as ``bmp".
}
445 \docparam{imageType
}{The image type, such as wxBITMAP
\_TYPE\_BMP.
}
447 \docparam{mimetype
}{MIME type.
}
449 \wxheading{Return value
}
451 A pointer to the handler if found, NULL otherwise.
455 \helpref{wxImageHandler
}{wximagehandler
}
458 \membersection{wxImage::GetImageExtWildcard
}\label{wximagegetimageextwildcard
}
460 \func{static wxString
}{GetImageExtWildcard
}{\void}
462 Iterates all registered wxImageHandler objects, and returns a string containing file extension masks
463 suitable for passing to file open/save dialog boxes.
465 \wxheading{Return value
}
467 The format of the returned string is "
(*.ext1;*.ext2)|*.ext1;*.ext2".
469 It is usually a good idea to prepend a description before passing the result to the dialog.
474 wxFileDialog FileDlg( this, "Choose Image", ::wxGetCwd(), "", _("Image Files ") + wxImage::GetImageExtWildcard(), wxOPEN );
479 \helpref{wxImageHandler}{wximagehandler}
482 \membersection{wxImage::GetAlpha}\label{wximagegetalpha}
484 \constfunc{unsigned char}{GetAlpha}{\param{int}{ x}, \param{int}{ y}}
486 Returns the alpha value for the given pixel. This function may only be called
487 for the images with alpha channel, use \helpref{HasAlpha}{wximagehasalpha} to
490 The returned value is the {\it opacity} of the image, i.e. the value of $0$
491 corresponds to the transparent pixels while the value of $255$ -- to the opaque
494 \constfunc{unsigned char *}{GetAlpha}{\void}
496 Returns pointer to the array storing the alpha values for this image. This
497 pointer is {\tt NULL} for the images without the alpha channel. If the image
498 does have it, this pointer may be used to directly manipulate the alpha values
499 which are stored as the \helpref{RGB}{wximagegetdata} ones.
502 \membersection{wxImage::GetBlue}\label{wximagegetblue}
504 \constfunc{unsigned char}{GetBlue}{\param{int}{ x}, \param{int}{ y}}
506 Returns the blue intensity at the given coordinate.
509 \membersection{wxImage::GetData}\label{wximagegetdata}
511 \constfunc{unsigned char*}{GetData}{\void}
513 Returns the image data as an array. This is most often used when doing
514 direct image manipulation. The return value points to an array of
515 characters in RGBRGBRGB$\ldots$ format in the top-to-bottom, left-to-right
516 order, that is the first RGB triplet corresponds to the pixel first pixel of
517 the first row, the second one --- to the second pixel of the first row and so
518 on until the end of the first row, with second row following after it and so
521 You should not delete the returned pointer nor pass it to
522 \helpref{wxImage::SetData}{wximagesetdata}.
525 \membersection{wxImage::GetGreen}\label{wximagegetgreen}
527 \constfunc{unsigned char}{GetGreen}{\param{int}{ x}, \param{int}{ y}}
529 Returns the green intensity at the given coordinate.
532 \membersection{wxImage::GetImageCount}\label{wximagegetimagecount}
534 \func{static int}{GetImageCount}{\param{const wxString\&}{ filename}, \param{long}{ type = wxBITMAP\_TYPE\_ANY}}
536 \func{static int}{GetImageCount}{\param{wxInputStream\&}{ stream}, \param{long}{ type = wxBITMAP\_TYPE\_ANY}}
538 If the image file contains more than one image and the image handler is capable
539 of retrieving these individually, this function will return the number of
542 \docparam{name}{Name of the file to query.}
544 \docparam{stream}{Opened input stream with image data. Currently, the stream must support seeking.}
546 \docparam{type}{May be one of the following:
550 \twocolitem{\indexit{wxBITMAP\_TYPE\_BMP}}{Load a Windows bitmap file.}
551 \twocolitem{\indexit{wxBITMAP\_TYPE\_GIF}}{Load a GIF bitmap file.}
552 \twocolitem{\indexit{wxBITMAP\_TYPE\_JPEG}}{Load a JPEG bitmap file.}
553 \twocolitem{\indexit{wxBITMAP\_TYPE\_PNG}}{Load a PNG bitmap file.}
554 \twocolitem{\indexit{wxBITMAP\_TYPE\_PCX}}{Load a PCX bitmap file.}
555 \twocolitem{\indexit{wxBITMAP\_TYPE\_PNM}}{Load a PNM bitmap file.}
556 \twocolitem{\indexit{wxBITMAP\_TYPE\_TIF}}{Load a TIFF bitmap file.}
557 \twocolitem{\indexit{wxBITMAP\_TYPE\_XPM}}{Load a XPM bitmap file.}
558 \twocolitem{\indexit{wxBITMAP\_TYPE\_ICO}}{Load a Windows icon file (ICO).}
559 \twocolitem{\indexit{wxBITMAP\_TYPE\_CUR}}{Load a Windows cursor file (CUR).}
560 \twocolitem{\indexit{wxBITMAP\_TYPE\_ANI}}{Load a Windows animated cursor file (ANI).}
561 \twocolitem{\indexit{wxBITMAP\_TYPE\_ANY}}{Will try to autodetect the format.}
564 \wxheading{Return value}
566 Number of available images. For most image handlers, this is 1 (exceptions
567 are TIFF and ICO formats).
570 \membersection{wxImage::GetHandlers}\label{wximagegethandlers}
572 \func{static wxList\&}{GetHandlers}{\void}
574 Returns the static list of image format handlers.
578 \helpref{wxImageHandler}{wximagehandler}
581 \membersection{wxImage::GetHeight}\label{wximagegetheight}
583 \constfunc{int}{GetHeight}{\void}
585 Gets the height of the image in pixels.
588 \membersection{wxImage::GetMaskBlue}\label{wximagegetmaskblue}
590 \constfunc{unsigned char}{GetMaskBlue}{\void}
592 Gets the blue value of the mask colour.
595 \membersection{wxImage::GetMaskGreen}\label{wximagegetmaskgreen}
597 \constfunc{unsigned char}{GetMaskGreen}{\void}
599 Gets the green value of the mask colour.
602 \membersection{wxImage::GetMaskRed}\label{wximagegetmaskred}
604 \constfunc{unsigned char}{GetMaskRed}{\void}
606 Gets the red value of the mask colour.
609 \membersection{wxImage::GetOrFindMaskColour}\label{wximagegetgetorsetmaskcolour}
611 \constfunc{bool}{GetOrFindMaskColour}{\param{unsigned char}{ *r}, \param{unsigned char}{ *g}, \param{unsigned char}{ *b}}
613 Get the current mask colour or find a suitable unused colour that could be
614 used as a mask colour. Returns {\tt true} if the image currently has a mask.
617 \membersection{wxImage::GetPalette}\label{wximagegetpalette}
619 \constfunc{const wxPalette\&}{GetPalette}{\void}
621 Returns the palette associated with the image. Currently the palette is only
622 used when converting to wxBitmap under Windows. Some of the wxImage handlers
623 have been modified to set the palette if one exists in the image file (usually
624 256 or less colour images in GIF or PNG format).
627 \membersection{wxImage::GetRed}\label{wximagegetred}
629 \constfunc{unsigned char}{GetRed}{\param{int}{ x}, \param{int}{ y}}
631 Returns the red intensity at the given coordinate.
634 \membersection{wxImage::GetSubImage}\label{wximagegetsubimage}
636 \constfunc{wxImage}{GetSubImage}{\param{const wxRect\&}{ rect}}
638 Returns a sub image of the current one as long as the rect belongs entirely to
642 \membersection{wxImage::GetWidth}\label{wximagegetwidth}
644 \constfunc{int}{GetWidth}{\void}
646 Gets the width of the image in pixels.
650 \helpref{wxImage::GetHeight}{wximagegetheight}
653 \membersection{HSVValue::HSVValue}\label{hsvvaluehsvvalue}
655 \func{}{HSVValue}{\param{double }{h = 0.0}, \param{double }{s = 0.0}, \param{double }{v = 0.0}}
657 Constructor for HSVValue, an object that contains values for hue, saturation and value which
658 represent the value of a color. It is used by \helpref{wxImage::HSVtoRGB}{wximagehsvtorgb}
659 and \helpref{wxImage::RGBtoHSV}{wximagergbtohsv}, which
660 converts between HSV color space and RGB color space.
662 \pythonnote{use wxImage\_HSVValue in wxPython}
666 \membersection{wxImage::HSVtoRGB}\label{wximagehsvtorgb}
668 \func{wxImage::RGBValue}{HSVtoRGB}{\param{const HSVValue \& }{hsv}}
670 Converts a color in HSV color space to RGB color space.
673 \membersection{wxImage::HasAlpha}\label{wximagehasalpha}
675 \constfunc{bool}{HasAlpha}{\void}
677 Returns true if this image has alpha channel, false otherwise.
681 \helpref{GetAlpha}{wximagegetalpha}, \helpref{SetAlpha}{wximagesetalpha}
684 \membersection{wxImage::HasMask}\label{wximagehasmask}
686 \constfunc{bool}{HasMask}{\void}
688 Returns true if there is a mask active, false otherwise.
691 \membersection{wxImage::GetOption}\label{wximagegetoption}
693 \constfunc{wxString}{GetOption}{\param{const wxString\&}{ name}}
695 Gets a user-defined option. The function is case-insensitive to {\it name}.
697 For example, when saving as a JPEG file, the option {\bf quality} is
698 used, which is a number between 0 and 100 (0 is terrible, 100 is very good).
702 \helpref{wxImage::SetOption}{wximagesetoption},\rtfsp
703 \helpref{wxImage::GetOptionInt}{wximagegetoptionint},\rtfsp
704 \helpref{wxImage::HasOption}{wximagehasoption}
707 \membersection{wxImage::GetOptionInt}\label{wximagegetoptionint}
709 \constfunc{int}{GetOptionInt}{\param{const wxString\&}{ name}}
711 Gets a user-defined option as an integer. The function is case-insensitive to {\it name}.
713 If the given option is not present, the function returns $0$. Use
714 \helpref{wxImage::HasOption}{wximagehasoption} is $0$ is a possibly valid value
717 Options for wxPNGHandler
720 \twocolitem{wxIMAGE\_OPTION\_PNG\_FORMAT}{Format for saving a PNG file.}
721 \twocolitem{wxIMAGE\_OPTION\_PNG\_BITDEPTH}{Bit depth for every channel (R/G/B/A).}
724 Supported values for wxIMAGE\_OPTION\_PNG\_FORMAT:
727 \twocolitem{wxPNG\_TYPE\_COLOUR}{Stores RGB image.}
728 \twocolitem{wxPNG\_TYPE\_GREY}{Stores grey image, converts from RGB.}
729 \twocolitem{wxPNG\_TYPE\_GREY\_RED}{Stores grey image, uses red value as grey.}
735 \helpref{wxImage::SetOption}{wximagesetoption},\rtfsp
736 \helpref{wxImage::GetOption}{wximagegetoption}
739 \membersection{wxImage::HasOption}\label{wximagehasoption}
741 \constfunc{bool}{HasOption}{\param{const wxString\&}{ name}}
743 Returns true if the given option is present. The function is case-insensitive to {\it name}.
747 \helpref{wxImage::SetOption}{wximagesetoption},\rtfsp
748 \helpref{wxImage::GetOption}{wximagegetoption},\rtfsp
749 \helpref{wxImage::GetOptionInt}{wximagegetoptionint}
752 \membersection{wxImage::InitAlpha}\label{wximageinitalpha}
754 \func{void}{InitAlpha}{\void}
756 Initializes the image alpha channel data. It is an error to call it
757 if the image already has alpha data. If it doesn't, alpha data will be
758 by default initialized to all pixels being fully opaque. But if the image has a
759 a mask colour, all mask pixels will be completely transparent.
762 \membersection{wxImage::InitStandardHandlers}\label{wximageinitstandardhandlers}
764 \func{static void}{InitStandardHandlers}{\void}
766 Internal use only. Adds standard image format handlers. It only install BMP
767 for the time being, which is used by wxBitmap.
769 This function is called by wxWidgets on startup, and shouldn't be called by
774 \helpref{wxImageHandler}{wximagehandler},
775 \helpref{wxInitAllImageHandlers}{wxinitallimagehandlers}
778 \membersection{wxImage::InsertHandler}\label{wximageinserthandler}
780 \func{static void}{InsertHandler}{\param{wxImageHandler*}{ handler}}
782 Adds a handler at the start of the static list of format handlers.
784 \docparam{handler}{A new image format handler object. There is usually only one instance
785 of a given handler class in an application session.}
789 \helpref{wxImageHandler}{wximagehandler}
792 \membersection{wxImage::IsTransparent}\label{wximageistransparent}
794 \constfunc{bool}{IsTransparent}{\param{int }{x}, \param{int }{y}, \param{unsigned char}{ threshold = $128$}}
796 Returns \true if the given pixel is transparent, i.e. either has the mask
797 colour if this image has a mask or if this image has alpha channel and alpha
798 value of this pixel is strictly less than \arg{threshold}.
801 \membersection{wxImage::LoadFile}\label{wximageloadfile}
803 \func{bool}{LoadFile}{\param{const wxString\&}{ name}, \param{long}{ type = wxBITMAP\_TYPE\_ANY}, \param{int}{ index = -1}}
805 \func{bool}{LoadFile}{\param{const wxString\&}{ name}, \param{const wxString\&}{ mimetype}, \param{int}{ index = -1}}
807 Loads an image from a file. If no handler type is provided, the library will
808 try to autodetect the format.
810 \func{bool}{LoadFile}{\param{wxInputStream\&}{ stream}, \param{long}{ type}, \param{int}{ index = -1}}
812 \func{bool}{LoadFile}{\param{wxInputStream\&}{ stream}, \param{const wxString\&}{ mimetype}, \param{int}{ index = -1}}
814 Loads an image from an input stream.
816 \wxheading{Parameters}
818 \docparam{name}{Name of the file from which to load the image.}
820 \docparam{stream}{Opened input stream from which to load the image. Currently, the stream must support seeking.}
822 \docparam{type}{One of the following values:
826 \twocolitem{{\bf wxBITMAP\_TYPE\_BMP}}{Load a Windows image file.}
827 \twocolitem{{\bf wxBITMAP\_TYPE\_GIF}}{Load a GIF image file.}
828 \twocolitem{{\bf wxBITMAP\_TYPE\_JPEG}}{Load a JPEG image file.}
829 \twocolitem{{\bf wxBITMAP\_TYPE\_PCX}}{Load a PCX image file.}
830 \twocolitem{{\bf wxBITMAP\_TYPE\_PNG}}{Load a PNG image file.}
831 \twocolitem{{\bf wxBITMAP\_TYPE\_PNM}}{Load a PNM image file.}
832 \twocolitem{{\bf wxBITMAP\_TYPE\_TIF}}{Load a TIFF image file.}
833 \twocolitem{{\bf wxBITMAP\_TYPE\_XPM}}{Load a XPM image file.}
834 \twocolitem{{\bf wxBITMAP\_TYPE\_ICO}}{Load a Windows icon file (ICO).}
835 \twocolitem{{\bf wxBITMAP\_TYPE\_CUR}}{Load a Windows cursor file (CUR).}
836 \twocolitem{\indexit{wxBITMAP\_TYPE\_ANI}}{Load a Windows animated cursor file (ANI).}
837 \twocolitem{{\bf wxBITMAP\_TYPE\_ANY}}{Will try to autodetect the format.}
840 \docparam{mimetype}{MIME type string (for example 'image/jpeg')}
842 \docparam{index}{Index of the image to load in the case that the image file contains multiple images.
843 This is only used by GIF, ICO and TIFF handlers. The default value (-1) means
844 "choose the default image" and is interpreted as the first image (index=0) by
845 the GIF and TIFF handler and as the largest and most colourful one by the ICO handler.}
849 Depending on how wxWidgets has been configured, not all formats may be available.
851 Note: you can use \helpref{GetOptionInt}{wximagegetoptionint} to get the
852 hotspot for loaded cursor file:
854 int hotspot_x = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X);
855 int hotspot_y = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y);
859 \wxheading{Return value}
861 true if the operation succeeded, false otherwise. If the optional index parameter is out of range,
862 false is returned and a call to wxLogError() takes place.
866 \helpref{wxImage::SaveFile}{wximagesavefile}
868 \pythonnote{In place of a single overloaded method name, wxPython
869 implements the following methods:\par
870 \indented{2cm}{\begin{twocollist}
871 \twocolitem{{\bf LoadFile(filename, type)}}{Loads an image of the given
873 \twocolitem{{\bf LoadMimeFile(filename, mimetype)}}{Loads an image of the given
874 mimetype from a file}
878 \perlnote{Methods supported by wxPerl are:\par
880 \item{bitmap->LoadFile( name, type )}
881 \item{bitmap->LoadFile( name, mimetype )}
887 \membersection{wxImage::IsOk}\label{wximageisok}
889 \constfunc{bool}{IsOk}{\void}
891 Returns true if image data is present.
894 \membersection{RGBValue::RGBValue}\label{rgbvaluergbvalue}
896 \func{}{RGBValue}{\param{unsigned char }{r = 0}, \param{unsigned char }{g = 0}, \param{unsigned char }{b = 0}}
898 Constructor for RGBValue, an object that contains values for red, green and blue which
899 represent the value of a color. It is used by \helpref{wxImage::HSVtoRGB}{wximagehsvtorgb}
900 and \helpref{wxImage::RGBtoHSV}{wximagergbtohsv}, which
901 converts between HSV color space and RGB color space.
903 \pythonnote{use wxImage\_RGBValue in wxPython}
906 \membersection{wxImage::RGBtoHSV}\label{wximagergbtohsv}
908 \func{wxImage::HSVValue}{RGBtoHSV}{\param{const RGBValue\& }{rgb}}
910 Converts a color in RGB color space to HSV color space.
913 \membersection{wxImage::RemoveHandler}\label{wximageremovehandler}
915 \func{static bool}{RemoveHandler}{\param{const wxString\& }{name}}
917 Finds the handler with the given name, and removes it. The handler
920 \docparam{name}{The handler name.}
922 \wxheading{Return value}
924 true if the handler was found and removed, false otherwise.
928 \helpref{wxImageHandler}{wximagehandler}
931 \membersection{wxImage::Mirror}\label{wximagemirror}
933 \constfunc{wxImage}{Mirror}{\param{bool}{ horizontally = true}}
935 Returns a mirrored copy of the image. The parameter {\it horizontally}
936 indicates the orientation.
939 \membersection{wxImage::Replace}\label{wximagereplace}
941 \func{void}{Replace}{\param{unsigned char}{ r1}, \param{unsigned char}{ g1}, \param{unsigned char}{ b1},
942 \param{unsigned char}{ r2}, \param{unsigned char}{ g2}, \param{unsigned char}{ b2}}
944 Replaces the colour specified by {\it r1,g1,b1} by the colour {\it r2,g2,b2}.
947 \membersection{wxImage::Rescale}\label{wximagerescale}
949 \func{wxImage \&}{Rescale}{\param{int}{ width}, \param{int}{ height}, \param{int}{ quality = wxIMAGE\_QUALITY\_NORMAL}}
951 Changes the size of the image in-place by scaling it: after a call to this function,
952 the image will have the given width and height.
954 For a description of the {\it quality} parameter, see the \helpref{Scale}{wximagescale} function.
956 Returns the (modified) image itself.
960 \helpref{Scale}{wximagescale}
963 \membersection{wxImage::Resize}\label{wximageresize}
965 \func{wxImage \&}{Resize}{\param{const wxSize\&}{ size}, \param{const wxPoint&}{ pos}, \param{int}{ red = -1}, \param{int}{ green = -1}, \param{int}{ blue = -1}}
967 Changes the size of the image in-place without scaling it by adding either a border
968 with the given colour or cropping as necessary. The image is pasted into a new
969 image with the given {\it size} and background colour at the position {\it pos}
970 relative to the upper left of the new image. If {\it red = green = blue = -1}
971 then use either the current mask colour if set or find, use, and set a
972 suitable mask colour for any newly exposed areas.
974 Returns the (modified) image itself.
978 \helpref{Size}{wximagesize}
981 \membersection{wxImage::Rotate}\label{wximagerotate}
983 \func{wxImage}{Rotate}{\param{double}{ angle}, \param{const wxPoint\& }{rotationCentre},
984 \param{bool}{ interpolating = true}, \param{wxPoint*}{ offsetAfterRotation = NULL}}
986 Rotates the image about the given point, by {\it angle} radians. Passing true
987 to {\it interpolating} results in better image quality, but is slower. If the
988 image has a mask, then the mask colour is used for the uncovered pixels in the
989 rotated image background. Else, black (rgb 0, 0, 0) will be used.
991 Returns the rotated image, leaving this image intact.
994 \membersection{wxImage::RotateHue}\label{wximagerotatehue}
996 \func{void}{RotateHue}{\param{double}{ angle}}
998 Rotates the hue of each pixel in the image by {\it angle}, which is a double in
999 the range of -1.0 to +1.0, where -1.0 corresponds to -360 degrees and +1.0 corresponds
1003 \membersection{wxImage::Rotate90}\label{wximagerotate90}
1005 \constfunc{wxImage}{Rotate90}{\param{bool}{ clockwise = true}}
1007 Returns a copy of the image rotated 90 degrees in the direction
1008 indicated by {\it clockwise}.
1011 \membersection{wxImage::SaveFile}\label{wximagesavefile}
1013 \constfunc{bool}{SaveFile}{\param{const wxString\& }{name}, \param{int}{ type}}
1015 \constfunc{bool}{SaveFile}{\param{const wxString\& }{name}, \param{const wxString\&}{ mimetype}}
1017 Saves an image in the named file.
1019 \constfunc{bool}{SaveFile}{\param{const wxString\& }{name}}
1021 Saves an image in the named file. File type is determined from the extension of the
1022 file name. Note that this function may fail if the extension is not recognized! You
1023 can use one of the forms above to save images to files with non-standard extensions.
1025 \constfunc{bool}{SaveFile}{\param{wxOutputStream\& }{stream}, \param{int}{ type}}
1027 \constfunc{bool}{SaveFile}{\param{wxOutputStream\& }{stream}, \param{const wxString\&}{ mimetype}}
1029 Saves an image in the given stream.
1031 \wxheading{Parameters}
1033 \docparam{name}{Name of the file to save the image to.}
1035 \docparam{stream}{Opened output stream to save the image to.}
1037 \docparam{type}{Currently these types can be used:
1041 \twocolitem{{\bf wxBITMAP\_TYPE\_BMP}}{Save a BMP image file.}
1042 \twocolitem{{\bf wxBITMAP\_TYPE\_JPEG}}{Save a JPEG image file.}
1043 \twocolitem{{\bf wxBITMAP\_TYPE\_PNG}}{Save a PNG image file.}
1044 \twocolitem{{\bf wxBITMAP\_TYPE\_PCX}}{Save a PCX image file (tries to save as 8-bit if possible, falls back to 24-bit otherwise).}
1045 \twocolitem{{\bf wxBITMAP\_TYPE\_PNM}}{Save a PNM image file (as raw RGB always).}
1046 \twocolitem{{\bf wxBITMAP\_TYPE\_TIFF}}{Save a TIFF image file.}
1047 \twocolitem{{\bf wxBITMAP\_TYPE\_XPM}}{Save a XPM image file.}
1048 \twocolitem{{\bf wxBITMAP\_TYPE\_ICO}}{Save a Windows icon file (ICO) (the size may be up to 255 wide by 127 high. A single image is saved in 8 colors at the size supplied).}
1049 \twocolitem{{\bf wxBITMAP\_TYPE\_CUR}}{Save a Windows cursor file (CUR).}
1052 \docparam{mimetype}{MIME type.}
1054 \wxheading{Return value}
1056 true if the operation succeeded, false otherwise.
1060 Depending on how wxWidgets has been configured, not all formats may be available.
1062 Note: you can use \helpref{GetOptionInt}{wximagegetoptionint} to set the
1063 hotspot before saving an image into a cursor file (default hotspot is in
1064 the centre of the image):
1066 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, hotspotX);
1067 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, hotspotY);
1071 \wxheading{See also}
1073 \helpref{wxImage::LoadFile}{wximageloadfile}
1075 \pythonnote{In place of a single overloaded method name, wxPython
1076 implements the following methods:\par
1077 \indented{2cm}{\begin{twocollist}
1078 \twocolitem{{\bf SaveFile(filename, type)}}{Saves the image using the given
1079 type to the named file}
1080 \twocolitem{{\bf SaveMimeFile(filename, mimetype)}}{Saves the image using the given
1081 mimetype to the named file}
1085 \perlnote{Methods supported by wxPerl are:\par
1087 \item{bitmap->SaveFile( name, type )}
1088 \item{bitmap->SaveFile( name, mimetype )}
1093 \membersection{wxImage::Scale}\label{wximagescale}
1095 \constfunc{wxImage}{Scale}{\param{int}{ width}, \param{int}{ height}, \param{int}{ quality = wxIMAGE\_QUALITY\_NORMAL}}
1097 Returns a scaled version of the image. This is also useful for
1098 scaling bitmaps in general as the only other way to scale bitmaps
1099 is to blit a wxMemoryDC into another wxMemoryDC.
1101 It may be mentioned that the GTK port uses this function internally
1102 to scale bitmaps when using mapping modes in wxDC.
1104 \docparam{quality}{Determines what method to use for resampling the image. Can be one of the following:
1108 \twocolitem{{\bf wxIMAGE\_QUALITY\_NORMAL}}{Uses the normal default scaling method of pixel replication}
1109 \twocolitem{{\bf wxIMAGE\_QUALITY\_HIGH}}{Uses bicubic and box averaging resampling methods for upsampling and downsampling respectively}
1112 It should be noted that although using wxIMAGE\_QUALITY\_HIGH produces much nicer
1113 looking results it is a slower method. Downsampling will use the box averaging method
1114 which seems to operate very fast. If you are upsampling larger images using
1115 this method you will most likely notice that it is a bit slower and in extreme cases
1116 it will be quite substantially slower as the bicubic algorithm has to process a lot of
1119 It should also be noted that the high quality scaling may not work as expected
1120 when using a single mask colour for transparency, as the scaling will blur the
1121 image and will therefore remove the mask partially. Using the alpha channel
1127 // get the bitmap from somewhere
1130 // rescale it to have size of 32*32
1131 if ( bmp.GetWidth() != 32 || bmp.GetHeight() != 32 )
1133 wxImage image = bmp.ConvertToImage();
1134 bmp = wxBitmap(image.Scale(32, 32));
1136 // another possibility:
1137 image.Rescale(32, 32);
1143 \wxheading{See also}
1145 \helpref{Rescale}{wximagerescale}
1148 \membersection{wxImage::Size}\label{wximagesize}
1150 \constfunc{wxImage}{Size}{\param{const wxSize\&}{ size}, \param{const wxPoint&}{ pos}, \param{int}{ red = -1}, \param{int}{ green = -1}, \param{int}{ blue = -1}}
1152 Returns a resized version of this image without scaling it by adding either a border
1153 with the given colour or cropping as necessary. The image is pasted into a new
1154 image with the given {\it size} and background colour at the position {\it pos}
1155 relative to the upper left of the new image. If {\it red = green = blue = -1}
1156 then use either the current mask colour if set or find, use, and set a
1157 suitable mask colour for any newly exposed areas.
1159 \wxheading{See also}
1161 \helpref{Resize}{wximageresize}
1164 \membersection{wxImage::SetAlpha}\label{wximagesetalpha}
1166 \func{void}{SetAlpha}{\param{unsigned char *}{alpha = {\tt NULL}},\param{bool}{ static\_data = \false}}
1168 This function is similar to \helpref{SetData}{wximagesetdata} and has similar
1169 restrictions. The pointer passed to it may however be {\tt NULL} in which case
1170 the function will allocate the alpha array internally -- this is useful to add
1171 alpha channel data to an image which doesn't have any. If the pointer is not
1172 {\tt NULL}, it must have one byte for each image pixel and be allocated with
1173 {\tt malloc()}. wxImage takes ownership of the pointer and will free it unless
1174 \arg{static\_data} parameter is set to \true -- in this case the caller should
1177 \func{void}{SetAlpha}{\param{int }{x}, \param{int }{y}, \param{unsigned char }{alpha}}
1179 Sets the alpha value for the given pixel. This function should only be called
1180 if the image has alpha channel data, use \helpref{HasAlpha}{wximagehasalpha} to
1184 \membersection{wxImage::SetData}\label{wximagesetdata}
1186 \func{void}{SetData}{\param{unsigned char*}{data}}
1188 Sets the image data without performing checks. The data given must have
1189 the size (width*height*3) or results will be unexpected. Don't use this
1190 method if you aren't sure you know what you are doing.
1192 The data must have been allocated with {\tt malloc()}, {\large {\bf NOT}} with
1195 After this call the pointer to the data is owned by the wxImage object,
1196 that will be responsible for deleting it.
1197 Do not pass to this function a pointer obtained through
1198 \helpref{wxImage::GetData}{wximagegetdata}.
1201 \membersection{wxImage::SetMask}\label{wximagesetmask}
1203 \func{void}{SetMask}{\param{bool}{ hasMask = true}}
1205 Specifies whether there is a mask or not. The area of the mask is determined by the current mask colour.
1208 \membersection{wxImage::SetMaskColour}\label{wximagesetmaskcolour}
1210 \func{void}{SetMaskColour}{\param{unsigned char }{red}, \param{unsigned char }{green}, \param{unsigned char }{blue}}
1212 Sets the mask colour for this image (and tells the image to use the mask).
1215 \membersection{wxImage::SetMaskFromImage}\label{wximagesetmaskfromimage}
1217 \func{bool}{SetMaskFromImage}{\param{const wxImage\&}{ mask}, \param{unsigned char}{ mr}, \param{unsigned char}{ mg}, \param{unsigned char}{ mb}}
1219 \wxheading{Parameters}
1221 \docparam{mask}{The mask image to extract mask shape from. Must have same dimensions as the image.}
1223 \docparam{mr,mg,mb}{RGB value of pixels in {\it mask} that will be used to create the mask.}
1225 Sets image's mask so that the pixels that have RGB value of {\it mr,mg,mb}
1226 in {\it mask} will be masked in the image. This is done by first finding an
1227 unused colour in the image, setting this colour as the mask colour and then
1228 using this colour to draw all pixels in the image who corresponding pixel
1229 in {\it mask} has given RGB value.
1231 \wxheading{Return value}
1233 Returns false if {\it mask} does not have same dimensions as the image or if
1234 there is no unused colour left. Returns true if the mask was successfully
1239 Note that this method involves computing the histogram, which is
1240 computationally intensive operation.
1243 \membersection{wxImage::SetOption}\label{wximagesetoption}
1245 \func{void}{SetOption}{\param{const wxString\&}{ name}, \param{const wxString\&}{ value}}
1247 \func{void}{SetOption}{\param{const wxString\&}{ name}, \param{int}{ value}}
1249 Sets a user-defined option. The function is case-insensitive to {\it name}.
1251 For example, when saving as a JPEG file, the option {\bf quality} is
1252 used, which is a number between 0 and 100 (0 is terrible, 100 is very good).
1254 \wxheading{See also}
1256 \helpref{wxImage::GetOption}{wximagegetoption},\rtfsp
1257 \helpref{wxImage::GetOptionInt}{wximagegetoptionint},\rtfsp
1258 \helpref{wxImage::HasOption}{wximagehasoption}
1261 \membersection{wxImage::SetPalette}\label{wximagesetpalette}
1263 \func{void}{SetPalette}{\param{const wxPalette\&}{ palette}}
1265 Associates a palette with the image. The palette may be used when converting
1266 wxImage to wxBitmap (MSW only at present) or in file save operations (none as yet).
1269 \membersection{wxImage::SetRGB}\label{wximagesetrgb}
1271 \func{void}{SetRGB}{\param{int }{x}, \param{int }{y}, \param{unsigned char }{red}, \param{unsigned char }{green}, \param{unsigned char }{blue}}
1273 Sets the pixel at the given coordinate. This routine performs bounds-checks
1274 for the coordinate so it can be considered a safe way to manipulate the
1275 data, but in some cases this might be too slow so that the data will have to
1276 be set directly. In that case you will have to get access to the image data
1277 using the \helpref{GetData}{wximagegetdata} method.
1280 \membersection{wxImage::SetRGB}\label{wximagesetrgbrect}
1282 \func{void}{SetRGB}{\param{wxRect \& }{rect}, \param{unsigned char }{red}, \param{unsigned char }{green}, \param{unsigned char }{blue}}
1284 Sets the colour of the pixels within the given rectangle. This routine performs
1285 bounds-checks for the coordinate so it can be considered a safe way to manipulate the
1289 \membersection{wxImage::operator $=$}\label{wximageassign}
1291 \func{wxImage\& }{operator $=$}{\param{const wxImage\& }{image}}
1293 Assignment operator. This operator does not copy any data, but instead
1294 passes a pointer to the data in {\it image} and increments a reference
1295 counter. It is a fast operation.
1297 \wxheading{Parameters}
1299 \docparam{image}{Image to assign.}
1301 \wxheading{Return value}
1303 Returns 'this' object.
1306 \membersection{wxImage::operator $==$}\label{wximageequal}
1308 \constfunc{bool}{operator $==$}{\param{const wxImage\& }{image}}
1310 Equality operator. This operator tests whether the internal data pointers are
1311 equal (a fast test).
1313 \wxheading{Parameters}
1315 \docparam{image}{Image to compare with 'this'}
1317 \wxheading{Return value}
1319 Returns true if the images were effectively equal, false otherwise.
1322 \membersection{wxImage::operator $!=$}\label{wximagenotequal}
1324 \constfunc{bool}{operator $!=$}{\param{const wxImage\& }{image}}
1326 Inequality operator. This operator tests whether the internal data pointers are
1327 unequal (a fast test).
1329 \wxheading{Parameters}
1331 \docparam{image}{Image to compare with 'this'}
1333 \wxheading{Return value}
1335 Returns true if the images were unequal, false otherwise.
1337 \section{\class{wxImageHandler}}\label{wximagehandler}
1339 This is the base class for implementing image file loading/saving, and image creation from data.
1340 It is used within wxImage and is not normally seen by the application.
1342 If you wish to extend the capabilities of wxImage, derive a class from wxImageHandler
1343 and add the handler using \helpref{wxImage::AddHandler}{wximageaddhandler} in your
1344 application initialisation.
1346 \wxheading{Note (Legal Issue)}
1348 This software is based in part on the work of the Independent JPEG Group.
1350 (Applies when wxWidgets is linked with JPEG support. wxJPEGHandler uses libjpeg
1353 \wxheading{Derived from}
1355 \helpref{wxObject}{wxobject}
1357 \wxheading{Include files}
1361 \wxheading{See also}
1363 \helpref{wxImage}{wximage},
1364 \helpref{wxInitAllImageHandlers}{wxinitallimagehandlers}
1366 \latexignore{\rtfignore{\wxheading{Members}}}
1369 \membersection{wxImageHandler::wxImageHandler}\label{wximagehandlerctor}
1371 \func{}{wxImageHandler}{\void}
1373 Default constructor. In your own default constructor, initialise the members
1374 m\_name, m\_extension and m\_type.
1377 \membersection{wxImageHandler::\destruct{wxImageHandler}}\label{wximagehandlerdtor}
1379 \func{}{\destruct{wxImageHandler}}{\void}
1381 Destroys the wxImageHandler object.
1384 \membersection{wxImageHandler::GetName}\label{wximagehandlergetname}
1386 \constfunc{const wxString\&}{GetName}{\void}
1388 Gets the name of this handler.
1391 \membersection{wxImageHandler::GetExtension}\label{wximagehandlergetextension}
1393 \constfunc{const wxString\&}{GetExtension}{\void}
1395 Gets the file extension associated with this handler.
1398 \membersection{wxImageHandler::GetImageCount}\label{wximagehandlergetimagecount}
1400 \func{int}{GetImageCount}{\param{wxInputStream\&}{ stream}}
1402 If the image file contains more than one image and the image handler is capable
1403 of retrieving these individually, this function will return the number of
1406 \docparam{stream}{Opened input stream for reading image data. Currently, the stream must support seeking.}
1408 \wxheading{Return value}
1410 Number of available images. For most image handlers, this is 1 (exceptions
1411 are TIFF and ICO formats).
1414 \membersection{wxImageHandler::GetType}\label{wximagehandlergettype}
1416 \constfunc{long}{GetType}{\void}
1418 Gets the image type associated with this handler.
1421 \membersection{wxImageHandler::GetMimeType}\label{wximagehandlergetmimetype}
1423 \constfunc{const wxString\&}{GetMimeType}{\void}
1425 Gets the MIME type associated with this handler.
1428 \membersection{wxImageHandler::LoadFile}\label{wximagehandlerloadfile}
1430 \func{bool}{LoadFile}{\param{wxImage* }{image}, \param{wxInputStream\&}{ stream}, \param{bool}{ verbose=true}, \param{int}{ index=0}}
1432 Loads a image from a stream, putting the resulting data into {\it image}. If the image file contains
1433 more than one image and the image handler is capable of retrieving these individually, {\it index}
1434 indicates which image to read from the stream.
1436 \wxheading{Parameters}
1438 \docparam{image}{The image object which is to be affected by this operation.}
1440 \docparam{stream}{Opened input stream for reading image data.}
1442 \docparam{verbose}{If set to true, errors reported by the image handler will produce wxLogMessages.}
1444 \docparam{index}{The index of the image in the file (starting from zero).}
1446 \wxheading{Return value}
1448 true if the operation succeeded, false otherwise.
1450 \wxheading{See also}
1452 \helpref{wxImage::LoadFile}{wximageloadfile},
1453 \helpref{wxImage::SaveFile}{wximagesavefile},
1454 \helpref{wxImageHandler::SaveFile}{wximagehandlersavefile}
1457 \membersection{wxImageHandler::SaveFile}\label{wximagehandlersavefile}
1459 \func{bool}{SaveFile}{\param{wxImage* }{image}, \param{wxOutputStream\& }{stream}}
1461 Saves a image in the output stream.
1463 \wxheading{Parameters}
1465 \docparam{image}{The image object which is to be affected by this operation.}
1467 \docparam{stream}{Opened output stream for writing the data.}
1469 \wxheading{Return value}
1471 true if the operation succeeded, false otherwise.
1473 \wxheading{See also}
1475 \helpref{wxImage::LoadFile}{wximageloadfile},
1476 \helpref{wxImage::SaveFile}{wximagesavefile},
1477 \helpref{wxImageHandler::LoadFile}{wximagehandlerloadfile}
1480 \membersection{wxImageHandler::SetName}\label{wximagehandlersetname}
1482 \func{void}{SetName}{\param{const wxString\& }{name}}
1484 Sets the handler name.
1486 \wxheading{Parameters}
1488 \docparam{name}{Handler name.}
1491 \membersection{wxImageHandler::SetExtension}\label{wximagehandlersetextension}
1493 \func{void}{SetExtension}{\param{const wxString\& }{extension}}
1495 Sets the handler extension.
1497 \wxheading{Parameters}
1499 \docparam{extension}{Handler extension.}
1502 \membersection{wxImageHandler::SetMimeType}\label{wximagehandlersetmimetype}
1504 \func{void}{SetMimeType}{\param{const wxString\& }{mimetype}}
1506 Sets the handler MIME type.
1508 \wxheading{Parameters}
1510 \docparam{mimename}{Handler MIME type.}
1513 \membersection{wxImageHandler::SetType}\label{wximagehandlersettype}
1515 \func{void}{SetType}{\param{long }{type}}
1517 Sets the handler type.
1519 \wxheading{Parameters}
1521 \docparam{name}{Handler type.}