]>
Commit | Line | Data |
---|---|---|
8f493002 | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/imagpng.h |
8f493002 VS |
3 | // Purpose: wxImage PNG handler |
4 | // Author: Robert Roebling | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) Robert Roebling | |
65571936 | 7 | // Licence: wxWindows licence |
8f493002 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifndef _WX_IMAGPNG_H_ | |
11 | #define _WX_IMAGPNG_H_ | |
12 | ||
2ecf902b | 13 | #include "wx/defs.h" |
8f493002 VS |
14 | |
15 | //----------------------------------------------------------------------------- | |
16 | // wxPNGHandler | |
17 | //----------------------------------------------------------------------------- | |
18 | ||
19 | #if wxUSE_LIBPNG | |
a4efa721 | 20 | |
2ecf902b | 21 | #include "wx/image.h" |
ccec9093 | 22 | #include "wx/versioninfo.h" |
2ecf902b | 23 | |
a4efa721 VZ |
24 | #define wxIMAGE_OPTION_PNG_FORMAT wxT("PngFormat") |
25 | #define wxIMAGE_OPTION_PNG_BITDEPTH wxT("PngBitDepth") | |
d19ce8c4 FM |
26 | #define wxIMAGE_OPTION_PNG_FILTER wxT("PngF") |
27 | #define wxIMAGE_OPTION_PNG_COMPRESSION_LEVEL wxT("PngZL") | |
28 | #define wxIMAGE_OPTION_PNG_COMPRESSION_MEM_LEVEL wxT("PngZM") | |
29 | #define wxIMAGE_OPTION_PNG_COMPRESSION_STRATEGY wxT("PngZS") | |
30 | #define wxIMAGE_OPTION_PNG_COMPRESSION_BUFFER_SIZE wxT("PngZB") | |
a4efa721 VZ |
31 | |
32 | enum | |
33 | { | |
34 | wxPNG_TYPE_COLOUR = 0, | |
35 | wxPNG_TYPE_GREY = 2, | |
8ee313d2 DS |
36 | wxPNG_TYPE_GREY_RED = 3, |
37 | wxPNG_TYPE_PALETTE = 4 | |
a4efa721 VZ |
38 | }; |
39 | ||
53a2db12 | 40 | class WXDLLIMPEXP_CORE wxPNGHandler: public wxImageHandler |
8f493002 | 41 | { |
8f493002 | 42 | public: |
2b5f62a0 VZ |
43 | inline wxPNGHandler() |
44 | { | |
45 | m_name = wxT("PNG file"); | |
46 | m_extension = wxT("png"); | |
47 | m_type = wxBITMAP_TYPE_PNG; | |
48 | m_mime = wxT("image/png"); | |
49 | } | |
8f493002 | 50 | |
ccec9093 VZ |
51 | static wxVersionInfo GetLibraryVersionInfo(); |
52 | ||
8f493002 | 53 | #if wxUSE_STREAMS |
7beb59f3 WS |
54 | virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 ); |
55 | virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true ); | |
6f02a879 | 56 | protected: |
2b5f62a0 | 57 | virtual bool DoCanRead( wxInputStream& stream ); |
8f493002 | 58 | #endif |
2b5f62a0 VZ |
59 | |
60 | private: | |
61 | DECLARE_DYNAMIC_CLASS(wxPNGHandler) | |
8f493002 | 62 | }; |
8f493002 | 63 | |
2ecf902b WS |
64 | #endif |
65 | // wxUSE_LIBPNG | |
8f493002 VS |
66 | |
67 | #endif | |
68 | // _WX_IMAGPNG_H_ | |
69 |