1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxImage PNG handler
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_IMAGPNG_H_
11 #define _WX_IMAGPNG_H_
15 //-----------------------------------------------------------------------------
17 //-----------------------------------------------------------------------------
23 #define wxIMAGE_OPTION_PNG_FORMAT wxT("PngFormat")
24 #define wxIMAGE_OPTION_PNG_BITDEPTH wxT("PngBitDepth")
28 wxPNG_TYPE_COLOUR
= 0,
30 wxPNG_TYPE_GREY_RED
= 3
33 class WXDLLIMPEXP_CORE wxPNGHandler
: public wxImageHandler
38 m_name
= wxT("PNG file");
39 m_extension
= wxT("png");
40 m_type
= wxBITMAP_TYPE_PNG
;
41 m_mime
= wxT("image/png");
45 virtual bool LoadFile( wxImage
*image
, wxInputStream
& stream
, bool verbose
=true, int index
=-1 );
46 virtual bool SaveFile( wxImage
*image
, wxOutputStream
& stream
, bool verbose
=true );
48 virtual bool DoCanRead( wxInputStream
& stream
);
52 DECLARE_DYNAMIC_CLASS(wxPNGHandler
)