1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxQuantize
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
12 Performs quantization, or colour reduction, on a wxImage.
14 Functions in this class are static and so a wxQuantize object need not be
20 class wxQuantize
: public wxObject
24 Constructor. You do not need to construct a wxQuantize object since its
30 Converts input bitmap(s) into 8bit representation with custom palette.
31 @a in_rows and @a out_rows are arrays [0..h-1] of pointer to rows
32 (@a in_rows contains @a w * 3 bytes per row, @a out_rows @a w bytes per row).
33 Fills @a out_rows with indexes into palette (which is also stored into @a palette
36 static void DoQuantize(unsigned int w
, unsigned int h
,
37 unsigned char** in_rows
, unsigned char** out_rows
,
38 unsigned char* palette
, int desiredNoColours
);
41 Reduce the colours in the source image and put the result into the destination image.
42 Both images may be the same, to overwrite the source image.
44 Specify an optional palette pointer to receive the resulting palette.
45 This palette may be passed to ConvertImageToBitmap, for example.
47 static bool Quantize(const wxImage
& src
, wxImage
& dest
,
48 wxPalette
** pPalette
, int desiredNoColours
= 236,
49 unsigned char** eightBitData
= 0,
50 int flags
= wxQUANTIZE_INCLUDE_WINDOWS_COLOURS
|
51 wxQUANTIZE_FILL_DESTINATION_IMAGE
|
52 wxQUANTIZE_RETURN_8BIT_DATA
);
55 This version sets a palette in the destination image so you don't
56 have to manage it yourself.
58 static bool Quantize(const wxImage
& src
, wxImage
& dest
,
59 int desiredNoColours
= 236,
60 unsigned char** eightBitData
= 0,
61 int flags
= wxQUANTIZE_INCLUDE_WINDOWS_COLOURS
|
62 wxQUANTIZE_FILL_DESTINATION_IMAGE
|
63 wxQUANTIZE_RETURN_8BIT_DATA
);