1998-10-24 17:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-07-03 19:02:54 +00:00
|
|
|
// Name: wx/image.h
|
1998-10-24 17:12:05 +00:00
|
|
|
// Purpose: wxImage class
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-10-24 17:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_IMAGE_H_
|
|
|
|
#define _WX_IMAGE_H_
|
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#include "wx/defs.h"
|
2006-07-03 19:02:54 +00:00
|
|
|
|
|
|
|
#if wxUSE_IMAGE
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
|
|
|
#include "wx/gdicmn.h"
|
2002-02-07 18:11:39 +00:00
|
|
|
#include "wx/hashmap.h"
|
1999-01-22 11:06:20 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
1999-08-27 11:31:07 +00:00
|
|
|
# include "wx/stream.h"
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
1998-10-24 17:12:05 +00:00
|
|
|
|
2003-04-12 00:22:45 +00:00
|
|
|
// on some systems (Unixware 7.x) index is defined as a macro in the headers
|
|
|
|
// which breaks the compilation below
|
|
|
|
#undef index
|
|
|
|
|
2005-02-25 17:24:37 +00:00
|
|
|
#define wxIMAGE_OPTION_QUALITY wxString(_T("quality"))
|
2002-02-16 01:45:30 +00:00
|
|
|
#define wxIMAGE_OPTION_FILENAME wxString(_T("FileName"))
|
|
|
|
|
2005-02-19 16:32:29 +00:00
|
|
|
#define wxIMAGE_OPTION_RESOLUTION wxString(_T("Resolution"))
|
|
|
|
#define wxIMAGE_OPTION_RESOLUTIONX wxString(_T("ResolutionX"))
|
|
|
|
#define wxIMAGE_OPTION_RESOLUTIONY wxString(_T("ResolutionY"))
|
|
|
|
|
|
|
|
#define wxIMAGE_OPTION_RESOLUTIONUNIT wxString(_T("ResolutionUnit"))
|
|
|
|
|
|
|
|
// constants used with wxIMAGE_OPTION_RESOLUTIONUNIT
|
2007-04-21 19:29:01 +00:00
|
|
|
//
|
|
|
|
// NB: don't change these values, they correspond to libjpeg constants
|
|
|
|
enum wxImageResolution
|
2005-02-19 16:32:29 +00:00
|
|
|
{
|
2007-04-21 19:29:01 +00:00
|
|
|
// Resolution not specified
|
|
|
|
wxIMAGE_RESOLUTION_NONE = 0,
|
|
|
|
|
|
|
|
// Resolution specified in inches
|
2005-02-19 16:32:29 +00:00
|
|
|
wxIMAGE_RESOLUTION_INCHES = 1,
|
2007-04-21 19:29:01 +00:00
|
|
|
|
|
|
|
// Resolution specified in centimeters
|
2005-02-19 16:32:29 +00:00
|
|
|
wxIMAGE_RESOLUTION_CM = 2
|
|
|
|
};
|
|
|
|
|
2006-09-24 12:47:16 +00:00
|
|
|
// Constants for wxImage::Scale() for determining the level of quality
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
wxIMAGE_QUALITY_NORMAL = 0,
|
|
|
|
wxIMAGE_QUALITY_HIGH = 1
|
|
|
|
};
|
|
|
|
|
2005-04-02 21:30:22 +00:00
|
|
|
// alpha channel values: fully transparent, default threshold separating
|
|
|
|
// transparent pixels from opaque for a few functions dealing with alpha and
|
|
|
|
// fully opaque
|
|
|
|
const unsigned char wxIMAGE_ALPHA_TRANSPARENT = 0;
|
|
|
|
const unsigned char wxIMAGE_ALPHA_THRESHOLD = 0x80;
|
|
|
|
const unsigned char wxIMAGE_ALPHA_OPAQUE = 0xff;
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxImageHandler;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxImage;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxPalette;
|
1998-10-24 17:12:05 +00:00
|
|
|
|
2006-09-30 20:45:15 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxVariant support
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if wxUSE_VARIANT
|
|
|
|
#include "wx/variant.h"
|
2008-03-26 15:06:00 +00:00
|
|
|
DECLARE_VARIANT_OBJECT_EXPORTED(wxImage,WXDLLIMPEXP_CORE)
|
2006-09-30 20:45:15 +00:00
|
|
|
#endif
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxImageHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxImageHandler: public wxObject
|
1998-10-24 17:12:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2002-05-07 21:58:27 +00:00
|
|
|
wxImageHandler()
|
2008-06-06 23:33:58 +00:00
|
|
|
: m_name(wxEmptyString), m_extension(wxEmptyString), m_mime(), m_type(wxBITMAP_TYPE_INVALID)
|
2002-05-07 21:58:27 +00:00
|
|
|
{ }
|
1998-10-24 17:12:05 +00:00
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
#if wxUSE_STREAMS
|
2004-09-16 18:13:32 +00:00
|
|
|
virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
|
|
|
|
virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
|
1999-12-16 21:29:54 +00:00
|
|
|
|
2002-01-02 17:09:43 +00:00
|
|
|
virtual int GetImageCount( wxInputStream& stream );
|
1999-08-18 21:22:54 +00:00
|
|
|
|
2002-05-22 23:14:47 +00:00
|
|
|
bool CanRead( wxInputStream& stream ) { return CallDoCanRead(stream); }
|
1999-12-27 13:01:07 +00:00
|
|
|
bool CanRead( const wxString& name );
|
1999-12-16 21:29:54 +00:00
|
|
|
#endif // wxUSE_STREAMS
|
1998-10-24 17:12:05 +00:00
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
void SetName(const wxString& name) { m_name = name; }
|
|
|
|
void SetExtension(const wxString& ext) { m_extension = ext; }
|
2008-06-06 23:33:58 +00:00
|
|
|
void SetType(wxBitmapType type) { m_type = type; }
|
1999-12-27 13:01:07 +00:00
|
|
|
void SetMimeType(const wxString& type) { m_mime = type; }
|
2006-10-08 08:04:49 +00:00
|
|
|
const wxString& GetName() const { return m_name; }
|
|
|
|
const wxString& GetExtension() const { return m_extension; }
|
2008-06-06 23:33:58 +00:00
|
|
|
wxBitmapType GetType() const { return m_type; }
|
2006-10-08 08:04:49 +00:00
|
|
|
const wxString& GetMimeType() const { return m_mime; }
|
1999-04-11 19:07:17 +00:00
|
|
|
|
2008-06-26 11:16:40 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_8
|
2008-06-25 01:02:04 +00:00
|
|
|
wxDEPRECATED(
|
|
|
|
void SetType(long type) { SetType((wxBitmapType)type); }
|
|
|
|
)
|
|
|
|
#endif // WXWIN_COMPATIBILITY_2_8
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
protected:
|
1999-12-16 21:29:54 +00:00
|
|
|
#if wxUSE_STREAMS
|
1999-12-27 13:01:07 +00:00
|
|
|
virtual bool DoCanRead( wxInputStream& stream ) = 0;
|
1999-10-15 16:59:32 +00:00
|
|
|
|
2002-05-22 23:14:47 +00:00
|
|
|
// save the stream position, call DoCanRead() and restore the position
|
|
|
|
bool CallDoCanRead(wxInputStream& stream);
|
2002-05-23 21:23:10 +00:00
|
|
|
#endif // wxUSE_STREAMS
|
2002-05-22 23:14:47 +00:00
|
|
|
|
2007-04-21 19:29:01 +00:00
|
|
|
// helper for the derived classes SaveFile() implementations: returns the
|
|
|
|
// values of x- and y-resolution options specified as the image options if
|
|
|
|
// any
|
|
|
|
static wxImageResolution
|
|
|
|
GetResolutionFromOptions(const wxImage& image, int *x, int *y);
|
|
|
|
|
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
wxString m_name;
|
|
|
|
wxString m_extension;
|
|
|
|
wxString m_mime;
|
2008-06-06 23:33:58 +00:00
|
|
|
wxBitmapType m_type;
|
2001-12-30 22:26:15 +00:00
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
private:
|
|
|
|
DECLARE_CLASS(wxImageHandler)
|
1999-12-16 21:29:54 +00:00
|
|
|
};
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2002-02-07 18:11:39 +00:00
|
|
|
// wxImageHistogram
|
1998-10-24 17:12:05 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxImageHistogramEntry
|
1999-12-15 11:45:32 +00:00
|
|
|
{
|
|
|
|
public:
|
2003-04-12 00:22:45 +00:00
|
|
|
wxImageHistogramEntry() { index = value = 0; }
|
1999-12-15 11:45:32 +00:00
|
|
|
unsigned long index;
|
|
|
|
unsigned long value;
|
|
|
|
};
|
|
|
|
|
2002-02-07 18:11:39 +00:00
|
|
|
WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry,
|
|
|
|
wxIntegerHash, wxIntegerEqual,
|
2006-01-18 16:45:41 +00:00
|
|
|
wxImageHistogramBase);
|
2003-03-03 20:33:40 +00:00
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxImageHistogram : public wxImageHistogramBase
|
2003-03-03 20:33:40 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxImageHistogram() : wxImageHistogramBase(256) { }
|
|
|
|
|
|
|
|
// get the key in the histogram for the given RGB values
|
|
|
|
static unsigned long MakeKey(unsigned char r,
|
|
|
|
unsigned char g,
|
|
|
|
unsigned char b)
|
|
|
|
{
|
|
|
|
return (r << 16) | (g << 8) | b;
|
|
|
|
}
|
|
|
|
|
|
|
|
// find first colour that is not used in the image and has higher
|
|
|
|
// RGB values than RGB(startR, startG, startB)
|
|
|
|
//
|
|
|
|
// returns true and puts this colour in r, g, b (each of which may be NULL)
|
|
|
|
// on success or returns false if there are no more free colours
|
|
|
|
bool FindFirstUnusedColour(unsigned char *r,
|
|
|
|
unsigned char *g,
|
|
|
|
unsigned char *b,
|
|
|
|
unsigned char startR = 1,
|
|
|
|
unsigned char startG = 0,
|
|
|
|
unsigned char startB = 0 ) const;
|
|
|
|
};
|
2002-02-07 18:11:39 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxImage
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxImage: public wxObject
|
1998-10-24 17:12:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2005-07-28 22:50:34 +00:00
|
|
|
// red, green and blue are 8 bit unsigned integers in the range of 0..255
|
|
|
|
// We use the identifier RGBValue instead of RGB, since RGB is #defined
|
|
|
|
class RGBValue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RGBValue(unsigned char r=0, unsigned char g=0, unsigned char b=0)
|
|
|
|
: red(r), green(g), blue(b) {}
|
2006-01-19 09:55:15 +00:00
|
|
|
unsigned char red;
|
2005-07-28 22:50:34 +00:00
|
|
|
unsigned char green;
|
|
|
|
unsigned char blue;
|
|
|
|
};
|
|
|
|
|
|
|
|
// hue, saturation and value are doubles in the range 0.0..1.0
|
|
|
|
class HSVValue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
HSVValue(double h=0.0, double s=0.0, double v=0.0)
|
|
|
|
: hue(h), saturation(s), value(v) {}
|
2006-01-19 09:55:15 +00:00
|
|
|
double hue;
|
2005-07-28 22:50:34 +00:00
|
|
|
double saturation;
|
|
|
|
double value;
|
|
|
|
};
|
|
|
|
|
2008-06-06 23:33:58 +00:00
|
|
|
wxImage() {}
|
2003-05-03 15:06:07 +00:00
|
|
|
wxImage( int width, int height, bool clear = true );
|
2004-09-16 18:13:32 +00:00
|
|
|
wxImage( int width, int height, unsigned char* data, bool static_data = false );
|
2004-12-01 21:33:38 +00:00
|
|
|
wxImage( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false );
|
2008-06-06 23:33:58 +00:00
|
|
|
wxImage( const wxString& name, wxBitmapType type = wxBITMAP_TYPE_ANY, int index = -1 );
|
2002-01-01 23:13:37 +00:00
|
|
|
wxImage( const wxString& name, const wxString& mimetype, int index = -1 );
|
2006-10-08 08:04:49 +00:00
|
|
|
wxImage( const char* const* xpmData );
|
2001-12-30 22:26:15 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
2008-06-06 23:33:58 +00:00
|
|
|
wxImage( wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY, int index = -1 );
|
2002-01-01 23:13:37 +00:00
|
|
|
wxImage( wxInputStream& stream, const wxString& mimetype, int index = -1 );
|
2001-12-30 22:26:15 +00:00
|
|
|
#endif // wxUSE_STREAMS
|
1998-10-24 17:12:05 +00:00
|
|
|
|
2003-05-11 00:59:42 +00:00
|
|
|
bool Create( int width, int height, bool clear = true );
|
2004-09-16 18:13:32 +00:00
|
|
|
bool Create( int width, int height, unsigned char* data, bool static_data = false );
|
2004-12-01 21:33:38 +00:00
|
|
|
bool Create( int width, int height, unsigned char* data, unsigned char* alpha, bool static_data = false );
|
2006-10-08 08:04:49 +00:00
|
|
|
bool Create( const char* const* xpmData );
|
2006-10-29 20:36:43 +00:00
|
|
|
#ifdef __BORLANDC__
|
|
|
|
// needed for Borland 5.5
|
|
|
|
wxImage( char** xpmData ) { Create(wx_const_cast(const char* const*, xpmData)); }
|
|
|
|
bool Create( char** xpmData ) { return Create(wx_const_cast(const char* const*, xpmData)); }
|
|
|
|
#endif
|
1999-12-27 13:01:07 +00:00
|
|
|
void Destroy();
|
1998-10-24 17:12:05 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// creates an identical copy of the image (the = operator
|
|
|
|
// just raises the ref count)
|
|
|
|
wxImage Copy() const;
|
2001-12-30 22:26:15 +00:00
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
// return the new image with size width*height
|
2005-03-04 18:33:57 +00:00
|
|
|
wxImage GetSubImage( const wxRect& rect) const;
|
|
|
|
|
|
|
|
// Paste the image or part of this image into an image of the given size at the pos
|
|
|
|
// any newly exposed areas will be filled with the rgb colour
|
2005-03-16 16:18:31 +00:00
|
|
|
// by default if r = g = b = -1 then fill with this image's mask colour or find and
|
2005-03-04 18:33:57 +00:00
|
|
|
// set a suitable mask colour
|
2005-03-16 16:18:31 +00:00
|
|
|
wxImage Size( const wxSize& size, const wxPoint& pos,
|
2005-03-04 18:33:57 +00:00
|
|
|
int r = -1, int g = -1, int b = -1 ) const;
|
2001-12-30 22:26:15 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// pastes image into this instance and takes care of
|
|
|
|
// the mask colour and out of bounds problems
|
2001-12-30 22:26:15 +00:00
|
|
|
void Paste( const wxImage &image, int x, int y );
|
1999-07-07 15:11:09 +00:00
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
// return the new image with size width*height
|
2006-09-24 12:47:16 +00:00
|
|
|
wxImage Scale( int width, int height, int quality = wxIMAGE_QUALITY_NORMAL ) const;
|
|
|
|
|
|
|
|
// box averager and bicubic filters for up/down sampling
|
|
|
|
wxImage ResampleBox(int width, int height) const;
|
|
|
|
wxImage ResampleBicubic(int width, int height) const;
|
|
|
|
|
|
|
|
// blur the image according to the specified pixel radius
|
2007-10-07 17:02:12 +00:00
|
|
|
wxImage Blur(int radius) const;
|
|
|
|
wxImage BlurHorizontal(int radius) const;
|
|
|
|
wxImage BlurVertical(int radius) const;
|
2003-03-26 20:43:09 +00:00
|
|
|
|
2003-03-03 15:25:36 +00:00
|
|
|
wxImage ShrinkBy( int xFactor , int yFactor ) const ;
|
1999-08-18 17:01:47 +00:00
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
// rescales the image in place
|
2006-09-24 12:47:16 +00:00
|
|
|
wxImage& Rescale( int width, int height, int quality = wxIMAGE_QUALITY_NORMAL ) { return *this = Scale(width, height, quality); }
|
1999-07-05 21:08:29 +00:00
|
|
|
|
2005-03-04 18:33:57 +00:00
|
|
|
// resizes the image in place
|
2005-03-16 16:18:31 +00:00
|
|
|
wxImage& Resize( const wxSize& size, const wxPoint& pos,
|
2005-03-04 18:33:57 +00:00
|
|
|
int r = -1, int g = -1, int b = -1 ) { return *this = Size(size, pos, r, g, b); }
|
|
|
|
|
2000-02-06 14:51:36 +00:00
|
|
|
// Rotates the image about the given point, 'angle' radians.
|
|
|
|
// Returns the rotated image, leaving this image intact.
|
|
|
|
wxImage Rotate(double angle, const wxPoint & centre_of_rotation,
|
2004-09-16 18:13:32 +00:00
|
|
|
bool interpolating = true, wxPoint * offset_after_rotation = (wxPoint*) NULL) const;
|
2000-07-15 19:51:35 +00:00
|
|
|
|
2004-09-16 18:13:32 +00:00
|
|
|
wxImage Rotate90( bool clockwise = true ) const;
|
|
|
|
wxImage Mirror( bool horizontally = true ) const;
|
2000-02-06 14:51:36 +00:00
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
// replace one colour with another
|
|
|
|
void Replace( unsigned char r1, unsigned char g1, unsigned char b1,
|
|
|
|
unsigned char r2, unsigned char g2, unsigned char b2 );
|
2001-12-30 22:26:15 +00:00
|
|
|
|
2006-01-19 09:55:15 +00:00
|
|
|
// Convert to greyscale image. Uses the luminance component (Y) of the image.
|
|
|
|
// The luma value (YUV) is calculated using (R * lr) + (G * lg) + (B * lb), defaults to ITU-T BT.601
|
|
|
|
wxImage ConvertToGreyscale( double lr = 0.299, double lg = 0.587, double lb = 0.114 ) const;
|
|
|
|
|
2004-08-16 12:31:08 +00:00
|
|
|
// convert to monochrome image (<r,g,b> will be replaced by white,
|
|
|
|
// everything else by black)
|
2001-04-06 22:15:34 +00:00
|
|
|
wxImage ConvertToMono( unsigned char r, unsigned char g, unsigned char b ) const;
|
1999-07-05 21:08:29 +00:00
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
// these routines are slow but safe
|
|
|
|
void SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b );
|
2005-03-04 18:33:57 +00:00
|
|
|
void SetRGB( const wxRect& rect, unsigned char r, unsigned char g, unsigned char b );
|
2000-07-15 19:51:35 +00:00
|
|
|
unsigned char GetRed( int x, int y ) const;
|
|
|
|
unsigned char GetGreen( int x, int y ) const;
|
|
|
|
unsigned char GetBlue( int x, int y ) const;
|
1999-07-07 15:11:09 +00:00
|
|
|
|
2003-03-03 20:33:40 +00:00
|
|
|
void SetAlpha(int x, int y, unsigned char alpha);
|
2004-04-15 16:16:01 +00:00
|
|
|
unsigned char GetAlpha(int x, int y) const;
|
2003-03-03 20:33:40 +00:00
|
|
|
|
2001-11-20 23:55:44 +00:00
|
|
|
// find first colour that is not used in the image and has higher
|
|
|
|
// RGB values than <startR,startG,startB>
|
|
|
|
bool FindFirstUnusedColour( unsigned char *r, unsigned char *g, unsigned char *b,
|
2001-12-30 22:26:15 +00:00
|
|
|
unsigned char startR = 1, unsigned char startG = 0,
|
2002-02-08 00:17:25 +00:00
|
|
|
unsigned char startB = 0 ) const;
|
2001-11-20 23:55:44 +00:00
|
|
|
// Set image's mask to the area of 'mask' that has <r,g,b> colour
|
2001-12-30 22:26:15 +00:00
|
|
|
bool SetMaskFromImage(const wxImage & mask,
|
2001-11-20 23:55:44 +00:00
|
|
|
unsigned char mr, unsigned char mg, unsigned char mb);
|
2001-11-18 09:43:06 +00:00
|
|
|
|
2004-08-16 12:31:08 +00:00
|
|
|
// converts image's alpha channel to mask, if it has any, does nothing
|
|
|
|
// otherwise:
|
2005-04-02 21:30:22 +00:00
|
|
|
bool ConvertAlphaToMask(unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD);
|
2004-08-16 12:31:08 +00:00
|
|
|
|
2004-11-18 14:01:45 +00:00
|
|
|
// This method converts an image where the original alpha
|
|
|
|
// information is only available as a shades of a colour
|
|
|
|
// (actually shades of grey) typically when you draw anti-
|
|
|
|
// aliased text into a bitmap. The DC drawinf routines
|
|
|
|
// draw grey values on the black background although they
|
|
|
|
// actually mean to draw white with differnt alpha values.
|
|
|
|
// This method reverses it, assuming a black (!) background
|
2005-01-21 18:48:22 +00:00
|
|
|
// and white text (actually only the red channel is read).
|
2004-11-18 14:01:45 +00:00
|
|
|
// The method will then fill up the whole image with the
|
|
|
|
// colour given.
|
2005-01-21 18:48:22 +00:00
|
|
|
bool ConvertColourToAlpha( unsigned char r, unsigned char g, unsigned char b );
|
2004-11-18 14:01:45 +00:00
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
static bool CanRead( const wxString& name );
|
2008-06-06 23:33:58 +00:00
|
|
|
static int GetImageCount( const wxString& name, wxBitmapType type = wxBITMAP_TYPE_ANY );
|
|
|
|
virtual bool LoadFile( const wxString& name, wxBitmapType type = wxBITMAP_TYPE_ANY, int index = -1 );
|
2002-01-01 23:13:37 +00:00
|
|
|
virtual bool LoadFile( const wxString& name, const wxString& mimetype, int index = -1 );
|
1999-01-22 11:06:20 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
1999-12-27 13:01:07 +00:00
|
|
|
static bool CanRead( wxInputStream& stream );
|
2008-06-06 23:33:58 +00:00
|
|
|
static int GetImageCount( wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY );
|
|
|
|
virtual bool LoadFile( wxInputStream& stream, wxBitmapType type = wxBITMAP_TYPE_ANY, int index = -1 );
|
2002-01-01 23:13:37 +00:00
|
|
|
virtual bool LoadFile( wxInputStream& stream, const wxString& mimetype, int index = -1 );
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
|
|
|
|
2002-03-17 11:35:32 +00:00
|
|
|
virtual bool SaveFile( const wxString& name ) const;
|
2008-06-06 23:33:58 +00:00
|
|
|
virtual bool SaveFile( const wxString& name, wxBitmapType type ) const;
|
2002-02-08 00:17:25 +00:00
|
|
|
virtual bool SaveFile( const wxString& name, const wxString& mimetype ) const;
|
1999-01-22 11:06:20 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
2008-06-06 23:33:58 +00:00
|
|
|
virtual bool SaveFile( wxOutputStream& stream, wxBitmapType type ) const;
|
2002-02-08 00:17:25 +00:00
|
|
|
virtual bool SaveFile( wxOutputStream& stream, const wxString& mimetype ) const;
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
1998-10-24 17:12:05 +00:00
|
|
|
|
2006-10-08 21:56:55 +00:00
|
|
|
bool Ok() const { return IsOk(); }
|
|
|
|
bool IsOk() const;
|
1999-12-27 13:01:07 +00:00
|
|
|
int GetWidth() const;
|
|
|
|
int GetHeight() const;
|
|
|
|
|
2008-06-11 00:28:23 +00:00
|
|
|
// Gets the type of image found by LoadFile or specified with SaveFile
|
|
|
|
wxBitmapType GetType() const;
|
|
|
|
|
2008-08-02 20:13:41 +00:00
|
|
|
// Set the image type, this is normally only called if the image is being
|
|
|
|
// created from data in the given format but not using LoadFile() (e.g.
|
|
|
|
// wxGIFDecoder uses this)
|
|
|
|
void SetType(wxBitmapType type);
|
|
|
|
|
2003-03-03 20:33:40 +00:00
|
|
|
// these functions provide fastest access to wxImage data but should be
|
|
|
|
// used carefully as no checks are done
|
|
|
|
unsigned char *GetData() const;
|
2005-04-02 02:04:52 +00:00
|
|
|
void SetData( unsigned char *data, bool static_data=false );
|
|
|
|
void SetData( unsigned char *data, int new_width, int new_height, bool static_data=false );
|
2003-03-03 20:33:40 +00:00
|
|
|
|
|
|
|
unsigned char *GetAlpha() const; // may return NULL!
|
|
|
|
bool HasAlpha() const { return GetAlpha() != NULL; }
|
2005-04-02 02:04:52 +00:00
|
|
|
void SetAlpha(unsigned char *alpha = NULL, bool static_data=false);
|
2005-02-19 21:51:37 +00:00
|
|
|
void InitAlpha();
|
2000-07-29 11:44:57 +00:00
|
|
|
|
2005-04-02 21:30:22 +00:00
|
|
|
// return true if this pixel is masked or has alpha less than specified
|
|
|
|
// threshold
|
|
|
|
bool IsTransparent(int x, int y,
|
|
|
|
unsigned char threshold = wxIMAGE_ALPHA_THRESHOLD) const;
|
|
|
|
|
2000-07-29 11:44:57 +00:00
|
|
|
// Mask functions
|
1999-12-27 13:01:07 +00:00
|
|
|
void SetMaskColour( unsigned char r, unsigned char g, unsigned char b );
|
2005-03-04 18:33:57 +00:00
|
|
|
// Get the current mask colour or find a suitable colour
|
|
|
|
// returns true if using current mask colour
|
|
|
|
bool GetOrFindMaskColour( unsigned char *r, unsigned char *g, unsigned char *b ) const;
|
1999-12-27 13:01:07 +00:00
|
|
|
unsigned char GetMaskRed() const;
|
|
|
|
unsigned char GetMaskGreen() const;
|
|
|
|
unsigned char GetMaskBlue() const;
|
2004-09-16 18:13:32 +00:00
|
|
|
void SetMask( bool mask = true );
|
1999-12-27 13:01:07 +00:00
|
|
|
bool HasMask() const;
|
|
|
|
|
2001-09-30 22:06:39 +00:00
|
|
|
#if wxUSE_PALETTE
|
2000-07-29 11:44:57 +00:00
|
|
|
// Palette functions
|
|
|
|
bool HasPalette() const;
|
|
|
|
const wxPalette& GetPalette() const;
|
|
|
|
void SetPalette(const wxPalette& palette);
|
2001-09-30 22:06:39 +00:00
|
|
|
#endif // wxUSE_PALETTE
|
2000-07-29 11:44:57 +00:00
|
|
|
|
|
|
|
// Option functions (arbitrary name/value mapping)
|
|
|
|
void SetOption(const wxString& name, const wxString& value);
|
|
|
|
void SetOption(const wxString& name, int value);
|
|
|
|
wxString GetOption(const wxString& name) const;
|
|
|
|
int GetOptionInt(const wxString& name) const;
|
|
|
|
bool HasOption(const wxString& name) const;
|
2000-07-28 17:53:25 +00:00
|
|
|
|
2002-02-08 00:17:25 +00:00
|
|
|
unsigned long CountColours( unsigned long stopafter = (unsigned long) -1 ) const;
|
2002-02-07 18:11:39 +00:00
|
|
|
|
|
|
|
// Computes the histogram of the image and fills a hash table, indexed
|
|
|
|
// with integer keys built as 0xRRGGBB, containing wxImageHistogramEntry
|
2003-03-26 20:43:09 +00:00
|
|
|
// objects. Each of them contains an 'index' (useful to build a palette
|
|
|
|
// with the image colours) and a 'value', which is the number of pixels
|
2002-02-07 18:11:39 +00:00
|
|
|
// in the image with that colour.
|
|
|
|
// Returned value: # of entries in the histogram
|
2002-02-08 00:17:25 +00:00
|
|
|
unsigned long ComputeHistogram( wxImageHistogram &h ) const;
|
1999-12-27 13:01:07 +00:00
|
|
|
|
2005-07-28 22:50:34 +00:00
|
|
|
// Rotates the hue of each pixel of the image. angle is a double in the range
|
|
|
|
// -1.0..1.0 where -1.0 is -360 degrees and 1.0 is 360 degrees
|
|
|
|
void RotateHue(double angle);
|
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
static wxList& GetHandlers() { return sm_handlers; }
|
|
|
|
static void AddHandler( wxImageHandler *handler );
|
|
|
|
static void InsertHandler( wxImageHandler *handler );
|
|
|
|
static bool RemoveHandler( const wxString& name );
|
|
|
|
static wxImageHandler *FindHandler( const wxString& name );
|
2008-06-06 23:33:58 +00:00
|
|
|
static wxImageHandler *FindHandler( const wxString& extension, wxBitmapType imageType );
|
|
|
|
static wxImageHandler *FindHandler( wxBitmapType imageType );
|
2008-06-24 23:43:59 +00:00
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
static wxImageHandler *FindHandlerMime( const wxString& mimetype );
|
|
|
|
|
2003-06-01 16:10:17 +00:00
|
|
|
static wxString GetImageExtWildcard();
|
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
static void CleanUpHandlers();
|
|
|
|
static void InitStandardHandlers();
|
1999-12-15 11:45:32 +00:00
|
|
|
|
2005-07-28 22:50:34 +00:00
|
|
|
static HSVValue RGBtoHSV(const RGBValue& rgb);
|
|
|
|
static RGBValue HSVtoRGB(const HSVValue& hsv);
|
|
|
|
|
2008-06-26 11:16:40 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_8
|
2008-09-18 09:12:32 +00:00
|
|
|
wxDEPRECATED_CONSTRUCTOR(
|
|
|
|
wxImage(const wxString& name, long type, int index = -1)
|
2008-06-25 01:02:04 +00:00
|
|
|
{
|
|
|
|
LoadFile(name, (wxBitmapType)type, index);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
2008-09-18 09:12:32 +00:00
|
|
|
wxDEPRECATED_CONSTRUCTOR(
|
|
|
|
wxImage(wxInputStream& stream, long type, int index = -1)
|
2008-06-25 01:02:04 +00:00
|
|
|
{
|
|
|
|
LoadFile(stream, (wxBitmapType)type, index);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
wxDEPRECATED(
|
|
|
|
bool LoadFile(wxInputStream& stream, long type, int index = -1)
|
|
|
|
{
|
|
|
|
return LoadFile(stream, (wxBitmapType)type, index);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
wxDEPRECATED(
|
|
|
|
bool SaveFile(wxOutputStream& stream, long type) const
|
|
|
|
{
|
|
|
|
return SaveFile(stream, (wxBitmapType)type);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
#endif // wxUSE_STREAMS
|
|
|
|
|
2008-06-24 23:43:59 +00:00
|
|
|
wxDEPRECATED(
|
|
|
|
bool LoadFile(const wxString& name, long type, int index = -1)
|
|
|
|
{
|
|
|
|
return LoadFile(name, (wxBitmapType)type, index);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2008-06-25 01:02:04 +00:00
|
|
|
wxDEPRECATED(
|
|
|
|
bool SaveFile(const wxString& name, long type) const
|
|
|
|
{
|
|
|
|
return SaveFile(name, (wxBitmapType)type);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
wxDEPRECATED(
|
|
|
|
static wxImageHandler *FindHandler(const wxString& ext, long type)
|
|
|
|
{
|
|
|
|
return FindHandler(ext, (wxBitmapType)type);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2008-06-24 23:43:59 +00:00
|
|
|
wxDEPRECATED(
|
|
|
|
static wxImageHandler *FindHandler(long imageType)
|
|
|
|
{
|
|
|
|
return FindHandler((wxBitmapType)imageType);
|
|
|
|
}
|
|
|
|
)
|
|
|
|
#endif // WXWIN_COMPATIBILITY_2_8
|
2005-07-28 22:50:34 +00:00
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
protected:
|
2000-07-29 11:44:57 +00:00
|
|
|
static wxList sm_handlers;
|
1998-10-24 17:12:05 +00:00
|
|
|
|
2005-04-02 21:16:04 +00:00
|
|
|
// return the index of the point with the given coordinates or -1 if the
|
|
|
|
// image is invalid of the coordinates are out of range
|
|
|
|
//
|
|
|
|
// note that index must be multiplied by 3 when using it with RGB array
|
|
|
|
long XYToIndex(int x, int y) const;
|
|
|
|
|
2006-06-17 19:09:28 +00:00
|
|
|
virtual wxObjectRefData* CreateRefData() const;
|
|
|
|
virtual wxObjectRefData* CloneRefData(const wxObjectRefData* data) const;
|
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
private:
|
2007-07-09 10:09:52 +00:00
|
|
|
friend class WXDLLIMPEXP_FWD_CORE wxImageHandler;
|
1999-07-07 15:11:09 +00:00
|
|
|
|
2008-06-11 00:28:23 +00:00
|
|
|
#if wxUSE_STREAMS
|
|
|
|
// read the image from the specified stream updating image type if
|
|
|
|
// successful
|
|
|
|
bool DoLoad(wxImageHandler& handler, wxInputStream& stream, int index);
|
|
|
|
|
|
|
|
// write the image to the specified stream and also update the image type
|
|
|
|
// if successful
|
|
|
|
bool DoSave(wxImageHandler& handler, wxOutputStream& stream) const;
|
|
|
|
#endif // wxUSE_STREAMS
|
|
|
|
|
1999-12-27 13:01:07 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxImage)
|
1998-10-24 17:12:05 +00:00
|
|
|
};
|
|
|
|
|
1999-12-15 22:38:02 +00:00
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
extern void WXDLLIMPEXP_CORE wxInitAllImageHandlers();
|
1999-09-20 19:05:49 +00:00
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
extern WXDLLIMPEXP_DATA_CORE(wxImage) wxNullImage;
|
1999-12-15 22:38:02 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxImage handlers
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "wx/imagbmp.h"
|
|
|
|
#include "wx/imagpng.h"
|
|
|
|
#include "wx/imaggif.h"
|
|
|
|
#include "wx/imagpcx.h"
|
|
|
|
#include "wx/imagjpeg.h"
|
2006-10-29 18:58:25 +00:00
|
|
|
#include "wx/imagtga.h"
|
1999-12-15 22:38:02 +00:00
|
|
|
#include "wx/imagtiff.h"
|
|
|
|
#include "wx/imagpnm.h"
|
2001-04-22 22:21:21 +00:00
|
|
|
#include "wx/imagxpm.h"
|
2002-01-15 17:57:08 +00:00
|
|
|
#include "wx/imagiff.h"
|
2001-04-22 22:21:21 +00:00
|
|
|
|
|
|
|
#endif // wxUSE_IMAGE
|
1999-12-15 22:38:02 +00:00
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
#endif
|
|
|
|
// _WX_IMAGE_H_
|