| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: imagjpeg.h |
| 3 | // Purpose: wxImage JPEG handler |
| 4 | // Author: Vaclav Slavik |
| 5 | // RCS-ID: $Id$ |
| 6 | // Copyright: (c) Vaclav Slavik |
| 7 | // Licence: wxWindows licence |
| 8 | ///////////////////////////////////////////////////////////////////////////// |
| 9 | |
| 10 | #ifndef _WX_IMAGJPEG_H_ |
| 11 | #define _WX_IMAGJPEG_H_ |
| 12 | |
| 13 | #include "wx/defs.h" |
| 14 | |
| 15 | //----------------------------------------------------------------------------- |
| 16 | // wxJPEGHandler |
| 17 | //----------------------------------------------------------------------------- |
| 18 | |
| 19 | #if wxUSE_LIBJPEG |
| 20 | |
| 21 | #include "wx/image.h" |
| 22 | |
| 23 | class WXDLLEXPORT wxJPEGHandler: public wxImageHandler |
| 24 | { |
| 25 | public: |
| 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 | } |
| 33 | |
| 34 | #if wxUSE_STREAMS |
| 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 ); |
| 37 | virtual bool DoCanRead( wxInputStream& stream ); |
| 38 | #endif |
| 39 | |
| 40 | private: |
| 41 | DECLARE_DYNAMIC_CLASS(wxJPEGHandler) |
| 42 | }; |
| 43 | |
| 44 | #endif // wxUSE_LIBJPEG |
| 45 | |
| 46 | #endif // _WX_IMAGJPEG_H_ |
| 47 | |