]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/image.tex
fixed corrupted file, checked in as text file now
[wxWidgets.git] / docs / latex / wx / image.tex
CommitLineData
1e6d9499
JS
1\section{\class{wxImage}}\label{wximage}
2
3This class encapsulates a platform-independent image. An image can be created
b06a6b20 4from data, or using \helpref{wxBitmap::ConvertToImage}{wxbitmapconverttoimage}. An image
1e6d9499
JS
5can be loaded from a file in a variety of formats, and is extensible to new formats
6via image format handlers. Functions are available to set and get image bits, so
7it can be used for basic image manipulation.
8
7468b994
RR
9A wxImage cannot (currently) be drawn directly to a \helpref{wxDC}{wxdc}. Instead,
10a platform-specific \helpref{wxBitmap}{wxbitmap} object must be created from it using
b06a6b20
VS
11the \helpref{wxBitmap::wxBitmap(wxImage,int depth)}{wxbitmapconstr} constructor.
12This bitmap can then
7468b994
RR
13be drawn in a device context, using \helpref{wxDC::DrawBitmap}{wxdcdrawbitmap}.
14
15One colour value of the image may be used as a mask colour which will lead to the automatic
16creation of a \helpref{wxMask}{wxmask} object associated to the bitmap object.
12a44087 17
487659e0
VZ
18\wxheading{Alpha channel support}
19
fc2171bd 20Starting from wxWidgets 2.5.0 wxImage supports alpha channel data, that is in
487659e0
VZ
21addition to a byte for the red, green and blue colour components for each pixel
22it also stores a byte representing the pixel opacity. The alpha value of $0$
23corresponds to a transparent pixel (null opacity) while the value of $255$
24means that the pixel is 100\% opaque.
25
26Unlike the RGB data, not all images have the alpha channel and before using
27\helpref{GetAlpha}{wximagegetalpha} you should check if this image contains
28alpha value with \helpref{HasAlpha}{wximagehasalpha}. In fact, currently only
29images loaded from PNG files with transparency information will have alpha
30channel but support for it will be added to the other formats as well (as well
31as support for saving images with alpha channel which is not still implemented
939fadc8 32either).
487659e0 33
8727a1fe
GRG
34\wxheading{Available image handlers}
35
36The following image handlers are available. {\bf wxBMPHandler} is always
2edb0bde 37installed by default. To use other image formats, install the appropriate
fa482912 38handler with \helpref{wxImage::AddHandler}{wximageaddhandler} or
8727a1fe
GRG
39\helpref{wxInitAllImageHandlers}{wxinitallimagehandlers}.
40
41\twocolwidtha{5cm}%
42\begin{twocollist}
4fa0a5b4 43\twocolitem{\indexit{wxBMPHandler}}{For loading and saving, always installed.}
487659e0 44\twocolitem{\indexit{wxPNGHandler}}{For loading (including alpha support) and saving.}
606a3178
GT
45\twocolitem{\indexit{wxJPEGHandler}}{For loading and saving.}
46\twocolitem{\indexit{wxGIFHandler}}{Only for loading, due to legal issues.}
47\twocolitem{\indexit{wxPCXHandler}}{For loading and saving (see below).}
48\twocolitem{\indexit{wxPNMHandler}}{For loading and saving (see below).}
b86e511a 49\twocolitem{\indexit{wxTIFFHandler}}{For loading and saving.}
4fa0a5b4 50\twocolitem{\indexit{wxIFFHandler}}{For loading only.}
b86e511a 51\twocolitem{\indexit{wxXPMHandler}}{For loading and saving.}
37b83ca6 52\twocolitem{\indexit{wxICOHandler}}{For loading and saving.}
a61d25e6 53\twocolitem{\indexit{wxCURHandler}}{For loading and saving.}
4fa0a5b4 54\twocolitem{\indexit{wxANIHandler}}{For loading only.}
8727a1fe
GRG
55\end{twocollist}
56
57When saving in PCX format, {\bf wxPCXHandler} will count the number of
58different colours in the image; if there are 256 or less colours, it will
59save as 8 bit, else it will save as 24 bit.
60
61Loading PNMs only works for ASCII or raw RGB images. When saving in
62PNM format, {\bf wxPNMHandler} will always save as raw RGB.
63
1e6d9499
JS
64\wxheading{Derived from}
65
66\helpref{wxObject}{wxobject}
67
954b8ae6
JS
68\wxheading{Include files}
69
70<wx/image.h>
71
1e6d9499
JS
72\wxheading{See also}
73
f6081a04 74\helpref{wxBitmap}{wxbitmap},
b5a4a47d 75\helpref{wxInitAllImageHandlers}{wxinitallimagehandlers}
1e6d9499
JS
76
77\latexignore{\rtfignore{\wxheading{Members}}}
78
79\membersection{wxImage::wxImage}\label{wximageconstr}
80
81\func{}{wxImage}{\void}
82
83Default constructor.
84
85\func{}{wxImage}{\param{const wxImage\& }{image}}
86
87Copy constructor.
88
89\func{}{wxImage}{\param{const wxBitmap\&}{ bitmap}}
90
b06a6b20
VS
91(Deprecated form, use \helpref{wxBitmap::ConvertToImage}{wxbitmapconverttoimage}
92instead.) Constructs an image from a platform-dependent bitmap. This preserves
12a44087
RR
93mask information so that bitmaps and images can be converted back
94and forth without loss in that respect.
1e6d9499 95
ff865c13 96\func{}{wxImage}{\param{int}{ width}, \param{int}{ height}, \param{bool}{ clear=true}}
1e6d9499 97
ff865c13
JS
98Creates an image with the given width and height. If {\it clear} is true, the new image will be initialized to black.
99Otherwise, the image data will be uninitialized.
1e6d9499 100
cc81d32f 101\func{}{wxImage}{\param{int}{ width}, \param{int}{ height}, \param{unsigned char*}{ data}, \param{bool}{ static\_data=false}}
f6bcfd97
BP
102
103Creates an image from given data with the given width and height. If
cc81d32f 104{\it static\_data} is true, then wxImage will not delete the actual
f6bcfd97
BP
105image data in its destructor, otherwise it will free it by calling
106{\it free()}.
107
a61d25e6 108\func{}{wxImage}{\param{const wxString\& }{name}, \param{long}{ type = wxBITMAP\_TYPE\_ANY}, \param{int}{ index = -1}}
1e6d9499 109
a61d25e6 110\func{}{wxImage}{\param{const wxString\& }{name}, \param{const wxString\&}{ mimetype}, \param{int}{ index = -1}}
9e9ee68e 111
1e6d9499
JS
112Loads an image from a file.
113
a61d25e6 114\func{}{wxImage}{\param{wxInputStream\& }{stream}, \param{long}{ type = wxBITMAP\_TYPE\_ANY}, \param{int}{ index = -1}}
45b5751f 115
a61d25e6 116\func{}{wxImage}{\param{wxInputStream\& }{stream}, \param{const wxString\&}{ mimetype}, \param{int}{ index = -1}}
9e9ee68e 117
45b5751f
JS
118Loads an image from an input stream.
119
1e6d9499
JS
120\wxheading{Parameters}
121
122\docparam{width}{Specifies the width of the image.}
123
124\docparam{height}{Specifies the height of the image.}
125
31fd9b6b 126\docparam{name}{Name of the file from which to load the image.}
1e6d9499 127
31fd9b6b 128\docparam{stream}{Opened input stream from which to load the image. Currently, the stream must support seeking.}
45b5751f 129
1e6d9499
JS
130\docparam{type}{May be one of the following:
131
6be663cf 132\twocolwidtha{5cm}%
1e6d9499 133\begin{twocollist}
606a3178
GT
134\twocolitem{\indexit{wxBITMAP\_TYPE\_BMP}}{Load a Windows bitmap file.}
135\twocolitem{\indexit{wxBITMAP\_TYPE\_GIF}}{Load a GIF bitmap file.}
136\twocolitem{\indexit{wxBITMAP\_TYPE\_JPEG}}{Load a JPEG bitmap file.}
137\twocolitem{\indexit{wxBITMAP\_TYPE\_PNG}}{Load a PNG bitmap file.}
138\twocolitem{\indexit{wxBITMAP\_TYPE\_PCX}}{Load a PCX bitmap file.}
139\twocolitem{\indexit{wxBITMAP\_TYPE\_PNM}}{Load a PNM bitmap file.}
140\twocolitem{\indexit{wxBITMAP\_TYPE\_TIF}}{Load a TIFF bitmap file.}
b86e511a 141\twocolitem{\indexit{wxBITMAP\_TYPE\_XPM}}{Load a XPM bitmap file.}
a61d25e6
VS
142\twocolitem{\indexit{wxBITMAP\_TYPE\_ICO}}{Load a Windows icon file (ICO).}
143\twocolitem{\indexit{wxBITMAP\_TYPE\_CUR}}{Load a Windows cursor file (CUR).}
658974ae 144\twocolitem{\indexit{wxBITMAP\_TYPE\_ANI}}{Load a Windows animated cursor file (ANI).}
606a3178 145\twocolitem{\indexit{wxBITMAP\_TYPE\_ANY}}{Will try to autodetect the format.}
31fd9b6b 146\end{twocollist}}
1e6d9499 147
9e9ee68e
VS
148\docparam{mimetype}{MIME type string (for example 'image/jpeg')}
149
a61d25e6 150\docparam{index}{Index of the image to load in the case that the image file contains multiple images.
b931f7ee 151This is only used by GIF, ICO and TIFF handlers. The default value (-1) means
a61d25e6 152"choose the default image" and is interpreted as the first image (index=0) by
b931f7ee 153the GIF and TIFF handler and as the largest and most colourful one by the ICO handler.}
a61d25e6 154
31fd9b6b
GRG
155\wxheading{Remarks}
156
fc2171bd 157Depending on how wxWidgets has been configured, not all formats may be available.
31fd9b6b 158
fa482912
JS
159Note: any handler other than BMP must be previously
160initialized with \helpref{wxImage::AddHandler}{wximageaddhandler} or
31fd9b6b 161\helpref{wxInitAllImageHandlers}{wxinitallimagehandlers}.
0a9f2522 162
a61d25e6
VS
163Note: you can use \helpref{GetOptionInt}{wximagegetoptionint} to get the
164hotspot for loaded cursor file:
165\begin{verbatim}
fd94e8aa
VS
166 int hotspot_x = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X);
167 int hotspot_y = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y);
a61d25e6
VS
168
169\end{verbatim}
170
1e6d9499
JS
171\wxheading{See also}
172
173\helpref{wxImage::LoadFile}{wximageloadfile}
174
f899db6d
RD
175\pythonnote{Constructors supported by wxPython are:\par
176\indented{2cm}{\begin{twocollist}
c9110876
VS
177\twocolitem{{\bf wxImage(name, flag)}}{Loads an image from a file}
178\twocolitem{{\bf wxNullImage()}}{Create a null image (has no size or
f899db6d 179image data)}
c9110876 180\twocolitem{{\bf wxEmptyImage(width, height)}}{Creates an empty image
f899db6d 181of the given size}
c9110876 182\twocolitem{{\bf wxImageFromMime(name, mimetype}}{Creates an image from
f899db6d 183the given file of the given mimetype}
c9110876 184\twocolitem{{\bf wxImageFromBitmap(bitmap)}}{Creates an image from a
f899db6d
RD
185platform-dependent bitmap}
186\end{twocollist}}
187}
188
5873607e
VZ
189\perlnote{Constructors supported by wxPerl are:\par
190\begin{itemize}
191\item{Wx::Image->new( bitmap )}
25e4b4bf 192\item{Wx::Image->new( icon )}
5873607e 193\item{Wx::Image->new( width, height )}
25e4b4bf
MB
194\item{Wx::Image->new( width, height, data )}
195\item{Wx::Image->new( file, type, index )}
196\item{Wx::Image->new( file, mimetype, index )}
197\item{Wx::Image->new( stream, type, index )}
198\item{Wx::Image->new( stream, mimetype, index )}
5873607e
VZ
199\end{itemize}
200}
201
1e6d9499
JS
202\membersection{wxImage::\destruct{wxImage}}
203
204\func{}{\destruct{wxImage}}{\void}
205
206Destructor.
207
208\membersection{wxImage::AddHandler}\label{wximageaddhandler}
209
210\func{static void}{AddHandler}{\param{wxImageHandler*}{ handler}}
211
212Adds a handler to the end of the static list of format handlers.
213
214\docparam{handler}{A new image format handler object. There is usually only one instance
215of a given handler class in an application session.}
216
217\wxheading{See also}
218
219\helpref{wxImageHandler}{wximagehandler}
220
4fa0a5b4
VS
221\func{bool}{CanRead}{\param{const wxString\&}{ filename}}
222
cc81d32f 223returns true if the current image handlers can read this file
4fa0a5b4 224
e7240349 225\pythonnote{In wxPython this static method is named {\tt wxImage\_AddHandler}.}
1e6d9499
JS
226\membersection{wxImage::CleanUpHandlers}
227
228\func{static void}{CleanUpHandlers}{\void}
229
230Deletes all image handlers.
231
fc2171bd 232This function is called by wxWidgets on exit.
1e6d9499 233
d7af2fea
VS
234\membersection{wxImage::ComputeHistogram}\label{wximagecomputehistogram}
235
236\constfunc{unsigned long}{ComputeHistogram}{\param{wxImageHistogram\& }{histogram}}
237
238Computes the histogram of the image. {\it histogram} is a reference to
239wxImageHistogram object. wxImageHistogram is a specialization of
240\helpref{wxHashMap}{wxhashmap} "template" and is defined as follows:
241
242\begin{verbatim}
243class WXDLLEXPORT wxImageHistogramEntry
244{
245public:
246 wxImageHistogramEntry() : index(0), value(0) {}
247 unsigned long index;
248 unsigned long value;
249};
250
251WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry,
252 wxIntegerHash, wxIntegerEqual,
253 wxImageHistogram);
254\end{verbatim}
255
256\wxheading{Return value}
257
258Returns number of colours in the histogram.
259
ff5ad794
VS
260\membersection{wxImage::ConvertAlphaToMask}\label{wximageconvertalphatomask}
261
262\func{bool}{ConvertAlphaToMask}{\param{unsigned char}{ threshold = 128}}
263
264If the image has alpha channel, this method converts it to mask. All pixels
265with alpha value less than \arg{threshold} are replaced with mask colour
266and the alpha channel is removed. Mask colour is chosen automatically using
267\helpref{FindFirstUnusedColour}{wximagefindfirstunusedcolour}.
268
269If the image image doesn't have alpha channel,
270ConvertAlphaToMask does nothing.
271
272\wxheading{Return value}
273
274\false if FindFirstUnusedColour returns \false, \true otherwise.
275
1e6d9499
JS
276\membersection{wxImage::ConvertToBitmap}\label{wximageconverttobitmap}
277
278\constfunc{wxBitmap}{ConvertToBitmap}{\void}
279
b06a6b20
VS
280Deprecated, use equivalent \helpref{wxBitmap constructor}{wxbitmapconstr}
281(which takes wxImage and depth as its arguments) instead.
7468b994 282
b06a6b20 283\membersection{wxImage::ConvertToMono}\label{wxbitmapconverttomono}
1e6d9499 284
b06a6b20
VS
285\constfunc{wxImage}{ConvertToMono}{\param{unsigned char}{ r}, \param{unsigned char}{ g}, \param{unsigned char}{ b}}
286
287Returns monochromatic version of the image. The returned image has white
288colour where the original has {\it (r,g,b)} colour and black colour
289everywhere else.
3ca6a5f0 290
f6bcfd97
BP
291\membersection{wxImage::Copy}\label{wximagecopy}
292
293\constfunc{wxImage}{Copy}{\void}
294
295Returns an identical copy of the image.
296
1e6d9499
JS
297\membersection{wxImage::Create}\label{wximagecreate}
298
ff865c13 299\func{bool}{Create}{\param{int}{ width}, \param{int}{ height}, \param{bool}{ clear=true}}
1e6d9499 300
ff865c13
JS
301Creates a fresh image. If {\it clear} is true, the new image will be initialized to black.
302Otherwise, the image data will be uninitialized.
1e6d9499
JS
303
304\wxheading{Parameters}
305
306\docparam{width}{The width of the image in pixels.}
307
308\docparam{height}{The height of the image in pixels.}
309
310\wxheading{Return value}
311
cc81d32f 312true if the call succeeded, false otherwise.
1e6d9499
JS
313
314\membersection{wxImage::Destroy}\label{wximagedestroy}
315
316\func{bool}{Destroy}{\void}
317
318Destroys the image data.
319
37b83ca6
VS
320\membersection{wxImage::FindFirstUnusedColour}\label{wximagefindfirstunusedcolour}
321
322\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}}
323
324\wxheading{Parameters}
325
326\docparam{r,g,b}{Pointers to variables to save the colour.}
327
328\docparam{startR,startG,startB}{Initial values of the colour. Returned colour
329will have RGB values equal to or greater than these.}
330
331Finds the first colour that is never used in the image. The search begins at
332given initial colour and continues by increasing R, G and B components (in this
333order) by 1 until an unused colour is found or the colour space exhausted.
334
335\wxheading{Return value}
336
cc81d32f 337Returns false if there is no unused colour left, true on success.
37b83ca6
VS
338
339\wxheading{Notes}
340
341Note that this method involves computing the histogram, which is
342computationally intensive operation.
343
1e6d9499
JS
344\membersection{wxImage::FindHandler}
345
346\func{static wxImageHandler*}{FindHandler}{\param{const wxString\& }{name}}
347
348Finds the handler with the given name.
349
350\func{static wxImageHandler*}{FindHandler}{\param{const wxString\& }{extension}, \param{long}{ imageType}}
351
352Finds the handler associated with the given extension and type.
353
354\func{static wxImageHandler*}{FindHandler}{\param{long }{imageType}}
355
356Finds the handler associated with the given image type.
357
9e9ee68e
VS
358\func{static wxImageHandler*}{FindHandlerMime}{\param{const wxString\& }{mimetype}}
359
360Finds the handler associated with the given MIME type.
361
1e6d9499
JS
362\docparam{name}{The handler name.}
363
364\docparam{extension}{The file extension, such as ``bmp".}
365
f6fcbb63 366\docparam{imageType}{The image type, such as wxBITMAP\_TYPE\_BMP.}
1e6d9499 367
9e9ee68e
VS
368\docparam{mimetype}{MIME type.}
369
1e6d9499
JS
370\wxheading{Return value}
371
372A pointer to the handler if found, NULL otherwise.
373
374\wxheading{See also}
375
376\helpref{wxImageHandler}{wximagehandler}
377
939fadc8
JS
378\membersection{wxImage::GetImageExtWildcard}
379
380\func{static wxString}{GetImageExtWildcard}{\void}
381
382Iterates all registered wxImageHandler objects, and returns a string containing file extension masks
383suitable for passing to file open/save dialog boxes.
384
385\wxheading{Return value}
386
387The format of the returned string is "(*.ext1;*.ext2)|*.ext1;*.ext2".
388
389It is usually a good idea to prepend a description before passing the result to the dialog.
390
391Example:
392
393\begin{verbatim}
394 wxFileDialog FileDlg( this, "Choose Image", ::wxGetWorkingDirectory(), "", _("Image Files ") + wxImage::GetImageExtWildcard(), wxOPEN );
395\end{verbatim}
396
397\wxheading{See also}
398
399\helpref{wxImageHandler}{wximagehandler}
400
487659e0
VZ
401\membersection{wxImage::GetAlpha}\label{wximagegetalpha}
402
403\constfunc{unsigned char}{GetAlpha}{\param{int}{ x}, \param{int}{ y}}
404
405Returns the alpha value for the given pixel. This function may only be called
406for the images with alpha channel, use \helpref{HasAlpha}{wximagehasalpha} to
407check for this.
408
409The returned value is the {\it opacity} of the image, i.e. the value of $0$
410corresponds to the transparent pixels while the value of $255$ -- to the opaque
411ones.
412
413\constfunc{unsigned char *}{GetAlpha}{\void}
414
415Returns pointer to the array storing the alpha values for this image. This
416pointer is {\tt NULL} for the images without the alpha channel. If the image
417does have it, this pointer may be used to directly manipulate the alpha values
418which are stored as the \helpref{RGB}{wximagegetdata} ones.
419
1e6d9499
JS
420\membersection{wxImage::GetBlue}\label{wximagegetblue}
421
422\constfunc{unsigned char}{GetBlue}{\param{int}{ x}, \param{int}{ y}}
423
424Returns the blue intensity at the given coordinate.
425
426\membersection{wxImage::GetData}\label{wximagegetdata}
427
428\constfunc{unsigned char*}{GetData}{\void}
429
12a44087
RR
430Returns the image data as an array. This is most often used when doing
431direct image manipulation. The return value points to an array of
487659e0
VZ
432characters in RGBRGBRGB$\ldots$ format in the top-to-bottom, left-to-right
433order, that is the first RGB triplet corresponds to the pixel $(0, 0)$, the
434second one --- to $(0, 1)$ and so on.
1e6d9499 435
f811bc9a
MB
436You should not delete the returned pointer nor pass it to
437\helpref{wxImage::SetData}{wximagesetdata}.
438
1e6d9499
JS
439\membersection{wxImage::GetGreen}\label{wximagegetgreen}
440
441\constfunc{unsigned char}{GetGreen}{\param{int}{ x}, \param{int}{ y}}
442
443Returns the green intensity at the given coordinate.
444
649d13e8 445\membersection{wxImage::GetImageCount}\label{wximagegetimagecount}
a61d25e6 446
649d13e8 447\func{static int}{GetImageCount}{\param{const wxString\&}{ filename}, \param{long}{ type = wxBITMAP\_TYPE\_ANY}}
a61d25e6 448
649d13e8 449\func{static int}{GetImageCount}{\param{wxInputStream\&}{ stream}, \param{long}{ type = wxBITMAP\_TYPE\_ANY}}
a61d25e6
VS
450
451If the image file contains more than one image and the image handler is capable
452of retrieving these individually, this function will return the number of
453available images.
454
455\docparam{name}{Name of the file to query.}
456
457\docparam{stream}{Opened input stream with image data. Currently, the stream must support seeking.}
458
459\docparam{type}{May be one of the following:
460
461\twocolwidtha{5cm}%
462\begin{twocollist}
463\twocolitem{\indexit{wxBITMAP\_TYPE\_BMP}}{Load a Windows bitmap file.}
464\twocolitem{\indexit{wxBITMAP\_TYPE\_GIF}}{Load a GIF bitmap file.}
465\twocolitem{\indexit{wxBITMAP\_TYPE\_JPEG}}{Load a JPEG bitmap file.}
466\twocolitem{\indexit{wxBITMAP\_TYPE\_PNG}}{Load a PNG bitmap file.}
467\twocolitem{\indexit{wxBITMAP\_TYPE\_PCX}}{Load a PCX bitmap file.}
468\twocolitem{\indexit{wxBITMAP\_TYPE\_PNM}}{Load a PNM bitmap file.}
469\twocolitem{\indexit{wxBITMAP\_TYPE\_TIF}}{Load a TIFF bitmap file.}
470\twocolitem{\indexit{wxBITMAP\_TYPE\_XPM}}{Load a XPM bitmap file.}
471\twocolitem{\indexit{wxBITMAP\_TYPE\_ICO}}{Load a Windows icon file (ICO).}
472\twocolitem{\indexit{wxBITMAP\_TYPE\_CUR}}{Load a Windows cursor file (CUR).}
658974ae 473\twocolitem{\indexit{wxBITMAP\_TYPE\_ANI}}{Load a Windows animated cursor file (ANI).}
a61d25e6
VS
474\twocolitem{\indexit{wxBITMAP\_TYPE\_ANY}}{Will try to autodetect the format.}
475\end{twocollist}}
476
477\wxheading{Return value}
478
479Number of available images. For most image handlers, this is 1 (exceptions
480are TIFF and ICO formats).
481
1e6d9499
JS
482\membersection{wxImage::GetHandlers}
483
484\func{static wxList\&}{GetHandlers}{\void}
485
486Returns the static list of image format handlers.
487
488\wxheading{See also}
489
490\helpref{wxImageHandler}{wximagehandler}
491
492\membersection{wxImage::GetHeight}\label{wximagegetheight}
493
494\constfunc{int}{GetHeight}{\void}
495
496Gets the height of the image in pixels.
497
498\membersection{wxImage::GetMaskBlue}\label{wximagegetmaskblue}
499
500\constfunc{unsigned char}{GetMaskBlue}{\void}
501
502Gets the blue value of the mask colour.
503
504\membersection{wxImage::GetMaskGreen}\label{wximagegetmaskgreen}
505
506\constfunc{unsigned char}{GetMaskGreen}{\void}
507
508Gets the green value of the mask colour.
509
510\membersection{wxImage::GetMaskRed}\label{wximagegetmaskred}
511
512\constfunc{unsigned char}{GetMaskRed}{\void}
513
514Gets the red value of the mask colour.
515
3ca6a5f0
BP
516\membersection{wxImage::GetPalette}\label{wximagegetpalette}
517
518\constfunc{const wxPalette\&}{GetPalette}{\void}
519
520Returns the palette associated with the image. Currently the palette is only
b06a6b20 521used when converting to wxBitmap under Windows.
3ca6a5f0
BP
522
523Eventually wxImage handlers will set the palette if one exists in the image file.
524
7b4c3149
VZ
525\membersection{wxImage::GetRed}\label{wximagegetred}
526
527\constfunc{unsigned char}{GetRed}{\param{int}{ x}, \param{int}{ y}}
528
529Returns the red intensity at the given coordinate.
530
fc9c7c09
RR
531\membersection{wxImage::GetSubImage}\label{wximagegetsubimage}
532
7468b994 533\constfunc{wxImage}{GetSubImage}{\param{const wxRect\&}{ rect}}
fc9c7c09
RR
534
535Returns a sub image of the current one as long as the rect belongs entirely to
536the image.
537
1e6d9499
JS
538\membersection{wxImage::GetWidth}\label{wximagegetwidth}
539
540\constfunc{int}{GetWidth}{\void}
541
542Gets the width of the image in pixels.
543
544\wxheading{See also}
545
546\helpref{wxImage::GetHeight}{wximagegetheight}
547
487659e0
VZ
548\membersection{wxImage::HasAlpha}\label{wximagehasalpha}
549
550\constfunc{bool}{HasAlpha}{\void}
551
552Returns true if this image has alpha channel, false otherwise.
553
554\wxheading{See also}
555
556\helpref{GetAlpha}{wximagegetalpha}, \helpref{SetAlpha}{wximagesetalpha}
557
1e6d9499
JS
558\membersection{wxImage::HasMask}\label{wximagehasmask}
559
560\constfunc{bool}{HasMask}{\void}
561
cc81d32f 562Returns true if there is a mask active, false otherwise.
1e6d9499 563
5e5437e0
JS
564\membersection{wxImage::GetOption}\label{wximagegetoption}
565
566\constfunc{wxString}{GetOption}{\param{const wxString\&}{ name}}
567
568Gets a user-defined option. The function is case-insensitive to {\it name}.
569
570For example, when saving as a JPEG file, the option {\bf quality} is
571used, which is a number between 0 and 100 (0 is terrible, 100 is very good).
572
573\wxheading{See also}
574
575\helpref{wxImage::SetOption}{wximagesetoption},\rtfsp
576\helpref{wxImage::GetOptionInt}{wximagegetoptionint},\rtfsp
577\helpref{wxImage::HasOption}{wximagehasoption}
578
579\membersection{wxImage::GetOptionInt}\label{wximagegetoptionint}
580
581\constfunc{int}{GetOptionInt}{\param{const wxString\&}{ name}}
582
583Gets a user-defined option as an integer. The function is case-insensitive to {\it name}.
584
585\wxheading{See also}
586
587\helpref{wxImage::SetOption}{wximagesetoption},\rtfsp
588\helpref{wxImage::GetOption}{wximagegetoption},\rtfsp
589\helpref{wxImage::HasOption}{wximagehasoption}
590
591\membersection{wxImage::HasOption}\label{wximagehasoption}
592
593\constfunc{bool}{HasOption}{\param{const wxString\&}{ name}}
594
cc81d32f 595Returns true if the given option is present. The function is case-insensitive to {\it name}.
5e5437e0
JS
596
597\wxheading{See also}
598
599\helpref{wxImage::SetOption}{wximagesetoption},\rtfsp
600\helpref{wxImage::GetOption}{wximagegetoption},\rtfsp
601\helpref{wxImage::GetOptionInt}{wximagegetoptionint}
602
1e6d9499
JS
603\membersection{wxImage::InitStandardHandlers}
604
605\func{static void}{InitStandardHandlers}{\void}
606
a14e57f9 607Internal use only. Adds standard image format handlers. It only install BMP
31fd9b6b 608for the time being, which is used by wxBitmap.
1e6d9499 609
fc2171bd 610This function is called by wxWidgets on startup, and shouldn't be called by
a14e57f9 611the user.
1e6d9499
JS
612
613\wxheading{See also}
614
fa482912 615\helpref{wxImageHandler}{wximagehandler},
b5a4a47d 616\helpref{wxInitAllImageHandlers}{wxinitallimagehandlers}
1e6d9499
JS
617
618\membersection{wxImage::InsertHandler}
619
620\func{static void}{InsertHandler}{\param{wxImageHandler*}{ handler}}
621
622Adds a handler at the start of the static list of format handlers.
623
624\docparam{handler}{A new image format handler object. There is usually only one instance
625of a given handler class in an application session.}
626
627\wxheading{See also}
628
629\helpref{wxImageHandler}{wximagehandler}
630
631\membersection{wxImage::LoadFile}\label{wximageloadfile}
632
a61d25e6 633\func{bool}{LoadFile}{\param{const wxString\&}{ name}, \param{long}{ type = wxBITMAP\_TYPE\_ANY}, \param{int}{ index = -1}}
1e6d9499 634
a61d25e6 635\func{bool}{LoadFile}{\param{const wxString\&}{ name}, \param{const wxString\&}{ mimetype}, \param{int}{ index = -1}}
9e9ee68e 636
a14e57f9 637Loads an image from a file. If no handler type is provided, the library will
31fd9b6b 638try to autodetect the format.
1e6d9499 639
a61d25e6 640\func{bool}{LoadFile}{\param{wxInputStream\&}{ stream}, \param{long}{ type}, \param{int}{ index = -1}}
45b5751f 641
a61d25e6 642\func{bool}{LoadFile}{\param{wxInputStream\&}{ stream}, \param{const wxString\&}{ mimetype}, \param{int}{ index = -1}}
9e9ee68e 643
45b5751f
JS
644Loads an image from an input stream.
645
1e6d9499
JS
646\wxheading{Parameters}
647
31fd9b6b 648\docparam{name}{Name of the file from which to load the image.}
1e6d9499 649
31fd9b6b 650\docparam{stream}{Opened input stream from which to load the image. Currently, the stream must support seeking.}
45b5751f 651
1e6d9499
JS
652\docparam{type}{One of the following values:
653
6be663cf 654\twocolwidtha{5cm}%
1e6d9499 655\begin{twocollist}
f6fcbb63 656\twocolitem{{\bf wxBITMAP\_TYPE\_BMP}}{Load a Windows image file.}
a14e57f9 657\twocolitem{{\bf wxBITMAP\_TYPE\_GIF}}{Load a GIF image file.}
48b4e302 658\twocolitem{{\bf wxBITMAP\_TYPE\_JPEG}}{Load a JPEG image file.}
a14e57f9
SB
659\twocolitem{{\bf wxBITMAP\_TYPE\_PCX}}{Load a PCX image file.}
660\twocolitem{{\bf wxBITMAP\_TYPE\_PNG}}{Load a PNG image file.}
661\twocolitem{{\bf wxBITMAP\_TYPE\_PNM}}{Load a PNM image file.}
31fd9b6b 662\twocolitem{{\bf wxBITMAP\_TYPE\_TIF}}{Load a TIFF image file.}
b86e511a 663\twocolitem{{\bf wxBITMAP\_TYPE\_XPM}}{Load a XPM image file.}
a61d25e6
VS
664\twocolitem{{\bf wxBITMAP\_TYPE\_ICO}}{Load a Windows icon file (ICO).}
665\twocolitem{{\bf wxBITMAP\_TYPE\_CUR}}{Load a Windows cursor file (CUR).}
658974ae 666\twocolitem{\indexit{wxBITMAP\_TYPE\_ANI}}{Load a Windows animated cursor file (ANI).}
31fd9b6b
GRG
667\twocolitem{{\bf wxBITMAP\_TYPE\_ANY}}{Will try to autodetect the format.}
668\end{twocollist}}
1e6d9499 669
9e9ee68e
VS
670\docparam{mimetype}{MIME type string (for example 'image/jpeg')}
671
a61d25e6 672\docparam{index}{Index of the image to load in the case that the image file contains multiple images.
b931f7ee 673This is only used by GIF, ICO and TIFF handlers. The default value (-1) means
a61d25e6 674"choose the default image" and is interpreted as the first image (index=0) by
b931f7ee 675the GIF and TIFF handler and as the largest and most colourful one by the ICO handler.}
a61d25e6 676
31fd9b6b
GRG
677\wxheading{Remarks}
678
fc2171bd 679Depending on how wxWidgets has been configured, not all formats may be available.
31fd9b6b 680
a61d25e6
VS
681Note: you can use \helpref{GetOptionInt}{wximagegetoptionint} to get the
682hotspot for loaded cursor file:
683\begin{verbatim}
fd94e8aa
VS
684 int hotspot_x = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X);
685 int hotspot_y = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y);
a61d25e6
VS
686
687\end{verbatim}
37b83ca6 688
1e6d9499
JS
689\wxheading{Return value}
690
cc81d32f
VS
691true if the operation succeeded, false otherwise. If the optional index parameter is out of range,
692false is returned and a call to wxLogError() takes place.
1e6d9499
JS
693
694\wxheading{See also}
695
696\helpref{wxImage::SaveFile}{wximagesavefile}
697
f899db6d
RD
698\pythonnote{In place of a single overloaded method name, wxPython
699implements the following methods:\par
700\indented{2cm}{\begin{twocollist}
c9110876 701\twocolitem{{\bf LoadFile(filename, type)}}{Loads an image of the given
f899db6d 702type from a file}
c9110876 703\twocolitem{{\bf LoadMimeFile(filename, mimetype)}}{Loads an image of the given
f899db6d
RD
704mimetype from a file}
705\end{twocollist}}
706}
707
5873607e
VZ
708\perlnote{Methods supported by wxPerl are:\par
709\begin{itemize}
606a3178
GT
710\item{bitmap->LoadFile( name, type )}
711\item{bitmap->LoadFile( name, mimetype )}
5873607e
VZ
712\end{itemize}
713}
714
f899db6d 715
1e6d9499
JS
716\membersection{wxImage::Ok}\label{wximageok}
717
718\constfunc{bool}{Ok}{\void}
719
cc81d32f 720Returns true if image data is present.
1e6d9499
JS
721
722\membersection{wxImage::RemoveHandler}
723
724\func{static bool}{RemoveHandler}{\param{const wxString\& }{name}}
725
726Finds the handler with the given name, and removes it. The handler
727is not deleted.
728
729\docparam{name}{The handler name.}
730
731\wxheading{Return value}
732
cc81d32f 733true if the handler was found and removed, false otherwise.
1e6d9499
JS
734
735\wxheading{See also}
736
737\helpref{wxImageHandler}{wximagehandler}
738
e119d049
JS
739\membersection{wxImage::Mirror}\label{wximagemirror}
740
741\constfunc{wxImage}{Mirror}{\param{bool}{ horizontally = true}}
742
743Returns a mirrored copy of the image. The parameter {\it horizontally}
744indicates the orientation.
745
746\membersection{wxImage::Replace}\label{wximagereplace}
747
748\func{void}{Replace}{\param{unsigned char}{ r1}, \param{unsigned char}{ g1}, \param{unsigned char}{ b1},
749\param{unsigned char}{ r2}, \param{unsigned char}{ g2}, \param{unsigned char}{ b2}}
750
751Replaces the colour specified by {\it r1,g1,b1} by the colour {\it r2,g2,b2}.
752
753\membersection{wxImage::Rescale}\label{wximagerescale}
754
755\func{wxImage \&}{Rescale}{\param{int}{ width}, \param{int}{ height}}
756
757Changes the size of the image in-place: after a call to this function, the
758image will have the given width and height.
759
760Returns the (modified) image itself.
761
762\wxheading{See also}
763
764\helpref{Scale}{wximagescale}
765
766\membersection{wxImage::Rotate}\label{wximagerotate}
767
768\func{wxImage}{Rotate}{\param{double}{ angle}, \param{const wxPoint\& }{rotationCentre},
769 \param{bool}{ interpolating = true}, \param{wxPoint*}{ offsetAfterRotation = NULL}}
770
771Rotates the image about the given point, by {\it angle} radians. Passing true
772to {\it interpolating} results in better image quality, but is slower. If the
773image has a mask, then the mask colour is used for the uncovered pixels in the
774rotated image background. Else, black (rgb 0, 0, 0) will be used.
775
776Returns the rotated image, leaving this image intact.
777
778\membersection{wxImage::Rotate90}\label{wximagerotate90}
779
780\constfunc{wxImage}{Rotate90}{\param{bool}{ clockwise = true}}
781
782Returns a copy of the image rotated 90 degrees in the direction
783indicated by {\it clockwise}.
784
1e6d9499
JS
785\membersection{wxImage::SaveFile}\label{wximagesavefile}
786
d7af2fea 787\constfunc{bool}{SaveFile}{\param{const wxString\& }{name}, \param{int}{ type}}
1e6d9499 788
d7af2fea 789\constfunc{bool}{SaveFile}{\param{const wxString\& }{name}, \param{const wxString\&}{ mimetype}}
9e9ee68e 790
4fa0a5b4
VS
791Saves an image in the named file.
792
793\constfunc{bool}{SaveFile}{\param{const wxString\& }{name}}
794
795Saves an image in the named file. File type is determined from the extension of the
796file name. Note that this function may fail if the extension is not recognized! You
797can use one of the forms above to save images to files with non-standard extensions.
1e6d9499 798
d7af2fea 799\constfunc{bool}{SaveFile}{\param{wxOutputStream\& }{stream}, \param{int}{ type}}
45b5751f 800
d7af2fea 801\constfunc{bool}{SaveFile}{\param{wxOutputStream\& }{stream}, \param{const wxString\&}{ mimetype}}
9e9ee68e 802
4fa0a5b4 803Saves an image in the given stream.
45b5751f 804
1e6d9499
JS
805\wxheading{Parameters}
806
31fd9b6b 807\docparam{name}{Name of the file to save the image to.}
1e6d9499 808
31fd9b6b 809\docparam{stream}{Opened output stream to save the image to.}
45b5751f 810
4fa0a5b4 811\docparam{type}{Currently these types can be used:
1e6d9499 812
6be663cf 813\twocolwidtha{5cm}%
1e6d9499 814\begin{twocollist}
4fa0a5b4 815\twocolitem{{\bf wxBITMAP\_TYPE\_BMP}}{Save a BMP image file.}
48b4e302 816\twocolitem{{\bf wxBITMAP\_TYPE\_JPEG}}{Save a JPEG image file.}
31fd9b6b
GRG
817\twocolitem{{\bf wxBITMAP\_TYPE\_PNG}}{Save a PNG image file.}
818\twocolitem{{\bf wxBITMAP\_TYPE\_PCX}}{Save a PCX image file (tries to save as 8-bit if possible, falls back to 24-bit otherwise).}
819\twocolitem{{\bf wxBITMAP\_TYPE\_PNM}}{Save a PNM image file (as raw RGB always).}
b86e511a
VS
820\twocolitem{{\bf wxBITMAP\_TYPE\_TIFF}}{Save a TIFF image file.}
821\twocolitem{{\bf wxBITMAP\_TYPE\_XPM}}{Save a XPM image file.}
a61d25e6
VS
822\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).}
823\twocolitem{{\bf wxBITMAP\_TYPE\_CUR}}{Save a Windows cursor file (CUR).}
31fd9b6b 824\end{twocollist}}
1e6d9499 825
9e9ee68e
VS
826\docparam{mimetype}{MIME type.}
827
1e6d9499
JS
828\wxheading{Return value}
829
cc81d32f 830true if the operation succeeded, false otherwise.
1e6d9499
JS
831
832\wxheading{Remarks}
833
fc2171bd 834Depending on how wxWidgets has been configured, not all formats may be available.
1e6d9499 835
a61d25e6
VS
836Note: you can use \helpref{GetOptionInt}{wximagegetoptionint} to set the
837hotspot before saving an image into a cursor file (default hotspot is in
838the centre of the image):
839\begin{verbatim}
fd94e8aa
VS
840 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, hotspotX);
841 image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, hotspotY);
a61d25e6
VS
842
843\end{verbatim}
844
1e6d9499
JS
845\wxheading{See also}
846
847\helpref{wxImage::LoadFile}{wximageloadfile}
848
f899db6d
RD
849\pythonnote{In place of a single overloaded method name, wxPython
850implements the following methods:\par
851\indented{2cm}{\begin{twocollist}
c9110876 852\twocolitem{{\bf SaveFile(filename, type)}}{Saves the image using the given
f899db6d 853type to the named file}
c9110876 854\twocolitem{{\bf SaveMimeFile(filename, mimetype)}}{Saves the image using the given
f899db6d
RD
855mimetype to the named file}
856\end{twocollist}}
857}
858
5873607e
VZ
859\perlnote{Methods supported by wxPerl are:\par
860\begin{itemize}
606a3178
GT
861\item{bitmap->SaveFile( name, type )}
862\item{bitmap->SaveFile( name, mimetype )}
5873607e
VZ
863\end{itemize}
864}
865
1e6d9499
JS
866\membersection{wxImage::Scale}\label{wximagescale}
867
ce9a75d2 868\constfunc{wxImage}{Scale}{\param{int}{ width}, \param{int}{ height}}
1e6d9499 869
12a44087
RR
870Returns a scaled version of the image. This is also useful for
871scaling bitmaps in general as the only other way to scale bitmaps
ce9a75d2
VZ
872is to blit a wxMemoryDC into another wxMemoryDC.
873
7468b994 874It may be mentioned that the GTK port uses this function internally
f6bcfd97 875to scale bitmaps when using mapping modes in wxDC.
ce9a75d2
VZ
876
877Example:
878
879\begin{verbatim}
880 // get the bitmap from somewhere
881 wxBitmap bmp = ...;
882
883 // rescale it to have size of 32*32
884 if ( bmp.GetWidth() != 32 || bmp.GetHeight() != 32 )
885 {
af494043 886 wxImage image = bmp.ConvertToImage();
b06a6b20 887 bmp = wxBitmap(image.Scale(32, 32));
ce9a75d2
VZ
888
889 // another possibility:
890 image.Rescale(32, 32);
891 bmp = image;
892 }
893
894\end{verbatim}
895
896\wxheading{See also}
897
898\helpref{Rescale}{wximagerescale}
1e6d9499 899
487659e0
VZ
900\membersection{wxImage::SetAlpha}\label{wximagesetalpha}
901
902\func{void}{SetAlpha}{\param{unsigned char *}{alpha = {\tt NULL}}}
903
904This function is similar to \helpref{SetData}{wximagesetdata} and has similar
905restrictions. The pointer passed to it may however be {\tt NULL} in which case
906the function will allocate the alpha array internally -- this is useful to add
907alpha channel data to an image which doesn't have any. If the pointer is not
908{\tt NULL}, it must have one byte for each image pixel and be allocated with
909{\tt malloc()}. wxImage takes ownership of the pointer and will free it.
910
911\func{void}{SetAlpha}{\param{int }{x}, \param{int }{y}, \param{unsigned char }{alpha}}
912
913Sets the alpha value for the given pixel. This function should only be called
914if the image has alpha channel data, use \helpref{HasAlpha}{wximagehasalpha} to
915check for this.
916
1e6d9499
JS
917\membersection{wxImage::SetData}\label{wximagesetdata}
918
919\func{void}{SetData}{\param{unsigned char*}{data}}
920
f899db6d 921Sets the image data without performing checks. The data given must have
12a44087
RR
922the size (width*height*3) or results will be unexpected. Don't use this
923method if you aren't sure you know what you are doing.
1e6d9499 924
b1ef8821 925The data must have been allocated with {\tt malloc()}, {\large {\bf NOT}} with
487659e0 926{\tt operator new}.
f811bc9a
MB
927
928After this call the pointer to the data is owned by the wxImage object,
929that will be responsible for deleting it.
930Do not pass to this function a pointer obtained through
931\helpref{wxImage::GetData}{wximagegetdata}.
932
1e6d9499
JS
933\membersection{wxImage::SetMask}\label{wximagesetmask}
934
cc81d32f 935\func{void}{SetMask}{\param{bool}{ hasMask = true}}
1e6d9499
JS
936
937Specifies whether there is a mask or not. The area of the mask is determined by the current mask colour.
938
939\membersection{wxImage::SetMaskColour}\label{wximagesetmaskcolour}
940
80793cda 941\func{void}{SetMaskColour}{\param{unsigned char }{red}, \param{unsigned char }{green}, \param{unsigned char }{blue}}
1e6d9499 942
b1170810 943Sets the mask colour for this image (and tells the image to use the mask).
1e6d9499 944
37b83ca6
VS
945\membersection{wxImage::SetMaskFromImage}\label{wximagesetmaskfromimage}
946
947\func{bool}{SetMaskFromImage}{\param{const wxImage\&}{ mask}, \param{unsigned char}{ mr}, \param{unsigned char}{ mg}, \param{unsigned char}{ mb}}
948
949\wxheading{Parameters}
950
951\docparam{mask}{The mask image to extract mask shape from. Must have same dimensions as the image.}
952
953\docparam{mr,mg,mb}{RGB value of pixels in {\it mask} that will be used to create the mask.}
954
955Sets image's mask so that the pixels that have RGB value of {\it mr,mg,mb}
956in {\it mask} will be masked in the image. This is done by first finding an
957unused colour in the image, setting this colour as the mask colour and then
958using this colour to draw all pixels in the image who corresponding pixel
959in {\it mask} has given RGB value.
960
961\wxheading{Return value}
962
cc81d32f
VS
963Returns false if {\it mask} does not have same dimensions as the image or if
964there is no unused colour left. Returns true if the mask was successfully
37b83ca6
VS
965applied.
966
967\wxheading{Notes}
968
969Note that this method involves computing the histogram, which is
970computationally intensive operation.
971
5e5437e0
JS
972\membersection{wxImage::SetOption}\label{wximagesetoption}
973
974\func{void}{SetOption}{\param{const wxString\&}{ name}, \param{const wxString\&}{ value}}
975
976\func{void}{SetOption}{\param{const wxString\&}{ name}, \param{int}{ value}}
977
978Sets a user-defined option. The function is case-insensitive to {\it name}.
979
980For example, when saving as a JPEG file, the option {\bf quality} is
981used, which is a number between 0 and 100 (0 is terrible, 100 is very good).
982
983\wxheading{See also}
984
985\helpref{wxImage::GetOption}{wximagegetoption},\rtfsp
986\helpref{wxImage::GetOptionInt}{wximagegetoptionint},\rtfsp
987\helpref{wxImage::HasOption}{wximagehasoption}
988
3ca6a5f0
BP
989\membersection{wxImage::SetPalette}\label{wximagesetpalette}
990
991\func{void}{SetPalette}{\param{const wxPalette\&}{ palette}}
992
b06a6b20
VS
993Associates a palette with the image. The palette may be used when converting
994wxImage to wxBitmap (MSW only at present) or in file save operations (none as yet).
3ca6a5f0 995
1e6d9499
JS
996\membersection{wxImage::SetRGB}\label{wximagesetrgb}
997
f6bcfd97 998\func{void}{SetRGB}{\param{int }{x}, \param{int }{y}, \param{unsigned char }{red}, \param{unsigned char }{green}, \param{unsigned char }{blue}}
1e6d9499 999
12a44087
RR
1000Sets the pixel at the given coordinate. This routine performs bounds-checks
1001for the coordinate so it can be considered a safe way to manipulate the
1002data, but in some cases this might be too slow so that the data will have to
7468b994
RR
1003be set directly. In that case you will have to get access to the image data
1004using the \helpref{GetData}{wximagegetdata} method.
1e6d9499
JS
1005
1006\membersection{wxImage::operator $=$}
1007
1008\func{wxImage\& }{operator $=$}{\param{const wxImage\& }{image}}
1009
1010Assignment operator. This operator does not copy any data, but instead
1011passes a pointer to the data in {\it image} and increments a reference
1012counter. It is a fast operation.
1013
1014\wxheading{Parameters}
1015
1016\docparam{image}{Image to assign.}
1017
1018\wxheading{Return value}
1019
1020Returns 'this' object.
1021
1022\membersection{wxImage::operator $==$}
1023
2b5f62a0 1024\constfunc{bool}{operator $==$}{\param{const wxImage\& }{image}}
1e6d9499
JS
1025
1026Equality operator. This operator tests whether the internal data pointers are
1027equal (a fast test).
1028
1029\wxheading{Parameters}
1030
1031\docparam{image}{Image to compare with 'this'}
1032
1033\wxheading{Return value}
1034
cc81d32f 1035Returns true if the images were effectively equal, false otherwise.
1e6d9499
JS
1036
1037\membersection{wxImage::operator $!=$}
1038
2b5f62a0 1039\constfunc{bool}{operator $!=$}{\param{const wxImage\& }{image}}
1e6d9499
JS
1040
1041Inequality operator. This operator tests whether the internal data pointers are
1042unequal (a fast test).
1043
1044\wxheading{Parameters}
1045
1046\docparam{image}{Image to compare with 'this'}
1047
1048\wxheading{Return value}
1049
cc81d32f 1050Returns true if the images were unequal, false otherwise.
1e6d9499
JS
1051
1052\section{\class{wxImageHandler}}\label{wximagehandler}
1053
1e6d9499
JS
1054This is the base class for implementing image file loading/saving, and image creation from data.
1055It is used within wxImage and is not normally seen by the application.
1056
1057If you wish to extend the capabilities of wxImage, derive a class from wxImageHandler
1058and add the handler using \helpref{wxImage::AddHandler}{wximageaddhandler} in your
1059application initialisation.
1060
48b4e302
VS
1061\wxheading{Note (Legal Issue)}
1062
954b8ae6 1063This software is based in part on the work of the Independent JPEG Group.
48b4e302 1064
fc2171bd 1065(Applies when wxWidgets is linked with JPEG support. wxJPEGHandler uses libjpeg
48b4e302
VS
1066created by IJG.)
1067
1e6d9499
JS
1068\wxheading{Derived from}
1069
1070\helpref{wxObject}{wxobject}
1071
954b8ae6
JS
1072\wxheading{Include files}
1073
1074<wx/image.h>
1075
1e6d9499
JS
1076\wxheading{See also}
1077
fa482912 1078\helpref{wxImage}{wximage},
b5a4a47d 1079\helpref{wxInitAllImageHandlers}{wxinitallimagehandlers}
1e6d9499
JS
1080
1081\latexignore{\rtfignore{\wxheading{Members}}}
1082
1083\membersection{wxImageHandler::wxImageHandler}\label{wximagehandlerconstr}
1084
1085\func{}{wxImageHandler}{\void}
1086
1087Default constructor. In your own default constructor, initialise the members
1088m\_name, m\_extension and m\_type.
1089
1090\membersection{wxImageHandler::\destruct{wxImageHandler}}
1091
1092\func{}{\destruct{wxImageHandler}}{\void}
1093
1094Destroys the wxImageHandler object.
1095
1096\membersection{wxImageHandler::GetName}
1097
1098\constfunc{wxString}{GetName}{\void}
1099
1100Gets the name of this handler.
1101
1102\membersection{wxImageHandler::GetExtension}
1103
1104\constfunc{wxString}{GetExtension}{\void}
1105
1106Gets the file extension associated with this handler.
1107
649d13e8 1108\membersection{wxImageHandler::GetImageCount}\label{wximagehandlergetimagecount}
7941ba11 1109
649d13e8 1110\func{int}{GetImageCount}{\param{wxInputStream\&}{ stream}}
7941ba11
RR
1111
1112If the image file contains more than one image and the image handler is capable
1113of retrieving these individually, this function will return the number of
1114available images.
1115
31fd9b6b 1116\docparam{stream}{Opened input stream for reading image data. Currently, the stream must support seeking.}
7941ba11
RR
1117
1118\wxheading{Return value}
1119
a61d25e6
VS
1120Number of available images. For most image handlers, this is 1 (exceptions
1121are TIFF and ICO formats).
7941ba11 1122
1e6d9499
JS
1123\membersection{wxImageHandler::GetType}
1124
1125\constfunc{long}{GetType}{\void}
1126
1127Gets the image type associated with this handler.
1128
9e9ee68e
VS
1129\membersection{wxImageHandler::GetMimeType}
1130
1131\constfunc{wxString}{GetMimeType}{\void}
1132
1133Gets the MIME type associated with this handler.
1134
1e6d9499
JS
1135\membersection{wxImageHandler::LoadFile}\label{wximagehandlerloadfile}
1136
cc81d32f 1137\func{bool}{LoadFile}{\param{wxImage* }{image}, \param{wxInputStream\&}{ stream}, \param{bool}{ verbose=true}, \param{int}{ index=0}}
1e6d9499 1138
7941ba11
RR
1139Loads a image from a stream, putting the resulting data into {\it image}. If the image file contains
1140more than one image and the image handler is capable of retrieving these individually, {\it index}
1141indicates which image to read from the stream.
1e6d9499
JS
1142
1143\wxheading{Parameters}
1144
1145\docparam{image}{The image object which is to be affected by this operation.}
1146
31fd9b6b 1147\docparam{stream}{Opened input stream for reading image data.}
7941ba11 1148
cc81d32f 1149\docparam{verbose}{If set to true, errors reported by the image handler will produce wxLogMessages.}
7941ba11
RR
1150
1151\docparam{index}{The index of the image in the file (starting from zero).}
1e6d9499
JS
1152
1153\wxheading{Return value}
1154
cc81d32f 1155true if the operation succeeded, false otherwise.
1e6d9499
JS
1156
1157\wxheading{See also}
1158
fa482912
JS
1159\helpref{wxImage::LoadFile}{wximageloadfile},
1160\helpref{wxImage::SaveFile}{wximagesavefile},
1e6d9499
JS
1161\helpref{wxImageHandler::SaveFile}{wximagehandlersavefile}
1162
1163\membersection{wxImageHandler::SaveFile}\label{wximagehandlersavefile}
1164
45b5751f 1165\func{bool}{SaveFile}{\param{wxImage* }{image}, \param{wxOutputStream\& }{stream}}
1e6d9499 1166
45b5751f 1167Saves a image in the output stream.
1e6d9499
JS
1168
1169\wxheading{Parameters}
1170
1171\docparam{image}{The image object which is to be affected by this operation.}
1172
31fd9b6b 1173\docparam{stream}{Opened output stream for writing the data.}
1e6d9499
JS
1174
1175\wxheading{Return value}
1176
cc81d32f 1177true if the operation succeeded, false otherwise.
1e6d9499
JS
1178
1179\wxheading{See also}
1180
fa482912
JS
1181\helpref{wxImage::LoadFile}{wximageloadfile},
1182\helpref{wxImage::SaveFile}{wximagesavefile},
1e6d9499
JS
1183\helpref{wxImageHandler::LoadFile}{wximagehandlerloadfile}
1184
1185\membersection{wxImageHandler::SetName}
1186
1187\func{void}{SetName}{\param{const wxString\& }{name}}
1188
1189Sets the handler name.
1190
1191\wxheading{Parameters}
1192
1193\docparam{name}{Handler name.}
1194
1195\membersection{wxImageHandler::SetExtension}
1196
1197\func{void}{SetExtension}{\param{const wxString\& }{extension}}
1198
1199Sets the handler extension.
1200
1201\wxheading{Parameters}
1202
1203\docparam{extension}{Handler extension.}
1204
f6bcfd97 1205\membersection{wxImageHandler::SetMimeType}\label{wximagehandlersetmimetype}
1e6d9499 1206
f6bcfd97 1207\func{void}{SetMimeType}{\param{const wxString\& }{mimetype}}
1e6d9499 1208
f6bcfd97 1209Sets the handler MIME type.
1e6d9499
JS
1210
1211\wxheading{Parameters}
1212
f6bcfd97 1213\docparam{mimename}{Handler MIME type.}
9e9ee68e 1214
f6bcfd97 1215\membersection{wxImageHandler::SetType}
9e9ee68e 1216
f6bcfd97 1217\func{void}{SetType}{\param{long }{type}}
9e9ee68e 1218
f6bcfd97 1219Sets the handler type.
9e9ee68e
VS
1220
1221\wxheading{Parameters}
1222
f6bcfd97 1223\docparam{name}{Handler type.}
9e9ee68e 1224