1999-12-15 22:38:02 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: imagpng.h
|
|
|
|
// Purpose: wxImage PNG handler
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-12-15 22:38:02 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_IMAGPNG_H_
|
|
|
|
#define _WX_IMAGPNG_H_
|
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#include "wx/defs.h"
|
1999-12-15 22:38:02 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxPNGHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if wxUSE_LIBPNG
|
2005-02-27 15:24:50 +00:00
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#include "wx/image.h"
|
|
|
|
|
2005-02-27 15:24:50 +00:00
|
|
|
#define wxIMAGE_OPTION_PNG_FORMAT wxT("PngFormat")
|
|
|
|
#define wxIMAGE_OPTION_PNG_BITDEPTH wxT("PngBitDepth")
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
wxPNG_TYPE_COLOUR = 0,
|
|
|
|
wxPNG_TYPE_GREY = 2,
|
2005-02-28 02:10:54 +00:00
|
|
|
wxPNG_TYPE_GREY_RED = 3
|
2005-02-27 15:24:50 +00:00
|
|
|
};
|
|
|
|
|
1999-12-15 22:38:02 +00:00
|
|
|
class WXDLLEXPORT wxPNGHandler: public wxImageHandler
|
|
|
|
{
|
|
|
|
public:
|
2002-12-04 14:11:26 +00:00
|
|
|
inline wxPNGHandler()
|
|
|
|
{
|
|
|
|
m_name = wxT("PNG file");
|
|
|
|
m_extension = wxT("png");
|
|
|
|
m_type = wxBITMAP_TYPE_PNG;
|
|
|
|
m_mime = wxT("image/png");
|
|
|
|
}
|
1999-12-15 22:38:02 +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 );
|
2002-12-04 14:11:26 +00:00
|
|
|
virtual bool DoCanRead( wxInputStream& stream );
|
1999-12-15 22:38:02 +00:00
|
|
|
#endif
|
2002-12-04 14:11:26 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxPNGHandler)
|
1999-12-15 22:38:02 +00:00
|
|
|
};
|
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#endif
|
|
|
|
// wxUSE_LIBPNG
|
1999-12-15 22:38:02 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_IMAGPNG_H_
|
|
|
|
|