]>
Commit | Line | Data |
---|---|---|
8f493002 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: imagjpeg.h | |
3 | // Purpose: wxImage JPEG handler | |
4 | // Author: Vaclav Slavik | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) Vaclav Slavik | |
65571936 | 7 | // Licence: wxWindows licence |
8f493002 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifndef _WX_IMAGJPEG_H_ | |
11 | #define _WX_IMAGJPEG_H_ | |
12 | ||
2ecf902b | 13 | #include "wx/defs.h" |
89d38f8c | 14 | |
8f493002 VS |
15 | //----------------------------------------------------------------------------- |
16 | // wxJPEGHandler | |
17 | //----------------------------------------------------------------------------- | |
18 | ||
19 | #if wxUSE_LIBJPEG | |
2ecf902b WS |
20 | |
21 | #include "wx/image.h" | |
22 | ||
8f493002 VS |
23 | class WXDLLEXPORT wxJPEGHandler: public wxImageHandler |
24 | { | |
8f493002 | 25 | public: |
2b5f62a0 VZ |
26 | inline wxJPEGHandler() |
27 | { | |
28 | m_name = wxT("JPEG file"); | |
29 | m_extension = wxT("jpg"); | |
30 | m_type = wxBITMAP_TYPE_JPEG; | |
31 | m_mime = wxT("image/jpeg"); | |
32 | } | |
8f493002 VS |
33 | |
34 | #if wxUSE_STREAMS | |
7beb59f3 WS |
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 ); | |
6f02a879 | 37 | protected: |
2b5f62a0 | 38 | virtual bool DoCanRead( wxInputStream& stream ); |
8f493002 | 39 | #endif |
2b5f62a0 VZ |
40 | |
41 | private: | |
42 | DECLARE_DYNAMIC_CLASS(wxJPEGHandler) | |
8f493002 | 43 | }; |
2ecf902b WS |
44 | |
45 | #endif // wxUSE_LIBJPEG | |
8f493002 | 46 | |
fe9308c6 | 47 | #endif // _WX_IMAGJPEG_H_ |
8f493002 | 48 |