]> git.saurik.com Git - wxWidgets.git/blame - include/wx/imagpng.h
have CGImage Support in all OSX builds
[wxWidgets.git] / include / wx / imagpng.h
CommitLineData
8f493002
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: imagpng.h
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
12028905 13#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
8f493002
VS
14#pragma interface "imagpng.h"
15#endif
16
17#include "wx/image.h"
18
19//-----------------------------------------------------------------------------
20// wxPNGHandler
21//-----------------------------------------------------------------------------
22
23#if wxUSE_LIBPNG
a4efa721
VZ
24
25#define wxIMAGE_OPTION_PNG_FORMAT wxT("PngFormat")
26#define wxIMAGE_OPTION_PNG_BITDEPTH wxT("PngBitDepth")
27
28enum
29{
30 wxPNG_TYPE_COLOUR = 0,
31 wxPNG_TYPE_GREY = 2,
e8144c31 32 wxPNG_TYPE_GREY_RED = 3
a4efa721
VZ
33};
34
8f493002
VS
35class WXDLLEXPORT wxPNGHandler: public wxImageHandler
36{
8f493002 37public:
2b5f62a0
VZ
38 inline wxPNGHandler()
39 {
40 m_name = wxT("PNG file");
41 m_extension = wxT("png");
42 m_type = wxBITMAP_TYPE_PNG;
43 m_mime = wxT("image/png");
44 }
8f493002
VS
45
46#if wxUSE_STREAMS
7beb59f3
WS
47 virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
48 virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
2b5f62a0 49 virtual bool DoCanRead( wxInputStream& stream );
8f493002 50#endif
2b5f62a0
VZ
51
52private:
53 DECLARE_DYNAMIC_CLASS(wxPNGHandler)
8f493002
VS
54};
55#endif
56
57
58#endif
59 // _WX_IMAGPNG_H_
60