1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: PNG bitmap handler
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PNGHAND_H_
13 #define _WX_PNGHAND_H_
19 class WXDLLIMPEXP_CORE wxPNGFileHandler
: public wxBitmapHandler
21 DECLARE_DYNAMIC_CLASS(wxPNGFileHandler
)
23 inline wxPNGFileHandler(void)
25 SetName(wxT("PNG bitmap file"));
26 SetExtension(wxT("bmp"));
27 SetType(wxBITMAP_TYPE_PNG
);
30 virtual bool LoadFile(wxBitmap
*bitmap
, const wxString
& name
, long flags
,
31 int desiredWidth
, int desiredHeight
);
32 virtual bool SaveFile(const wxBitmap
*bitmap
, const wxString
& name
, int type
, const wxPalette
*palette
= NULL
);