]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/imagpng.h
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_
13 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14 #pragma interface "imagpng.h"
19 //-----------------------------------------------------------------------------
21 //-----------------------------------------------------------------------------
27 #define wxIMAGE_OPTION_PNG_FORMAT wxT("PngFormat")
28 #define wxIMAGE_OPTION_PNG_BITDEPTH wxT("PngBitDepth")
32 wxPNG_TYPE_COLOUR
= 0,
34 wxPNG_TYPE_GREY_RED
= 3
37 class WXDLLEXPORT wxPNGHandler
: public wxImageHandler
42 m_name
= wxT("PNG file");
43 m_extension
= wxT("png");
44 m_type
= wxBITMAP_TYPE_PNG
;
45 m_mime
= wxT("image/png");
49 virtual bool LoadFile( wxImage
*image
, wxInputStream
& stream
, bool verbose
=true, int index
=-1 );
50 virtual bool SaveFile( wxImage
*image
, wxOutputStream
& stream
, bool verbose
=true );
51 virtual bool DoCanRead( wxInputStream
& stream
);
55 DECLARE_DYNAMIC_CLASS(wxPNGHandler
)