1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxImage PNM handler
4 // Author: Sylvain Bougnoux
6 // Copyright: (c) Sylvain Bougnoux
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_IMAGPNM_H_
11 #define _WX_IMAGPNM_H_
15 //-----------------------------------------------------------------------------
17 //-----------------------------------------------------------------------------
20 class WXDLLIMPEXP_CORE wxPNMHandler
: public wxImageHandler
25 m_name
= wxT("PNM file");
26 m_extension
= wxT("pnm");
27 m_altExtensions
.Add(wxT("ppm"));
28 m_altExtensions
.Add(wxT("pgm"));
29 m_altExtensions
.Add(wxT("pbm"));
30 m_type
= wxBITMAP_TYPE_PNM
;
31 m_mime
= wxT("image/pnm");
35 virtual bool LoadFile( wxImage
*image
, wxInputStream
& stream
, bool verbose
=true, int index
=-1 );
36 virtual bool SaveFile( wxImage
*image
, wxOutputStream
& stream
, bool verbose
=true );
38 virtual bool DoCanRead( wxInputStream
& stream
);
42 DECLARE_DYNAMIC_CLASS(wxPNMHandler
)