1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxImage JPEG handler
4 // Author: Vaclav Slavik
6 // Copyright: (c) Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_IMAGJPEG_H_
11 #define _WX_IMAGJPEG_H_
13 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14 #pragma interface "imagjpeg.h"
19 // defines for wxImage::SetOption
20 #define wxIMAGE_OPTION_RESOLUTION wxString(_T("Resolution"))
21 #define wxIMAGE_OPTION_RESOLUTIONUNIT wxString(_T("ResolutionUnit"))
25 wxIMAGE_RESOLUTION_INCHES
= 1,
26 wxIMAGE_RESOLUTION_CM
= 2
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
34 class WXDLLEXPORT wxJPEGHandler
: public wxImageHandler
37 inline wxJPEGHandler()
39 m_name
= wxT("JPEG file");
40 m_extension
= wxT("jpg");
41 m_type
= wxBITMAP_TYPE_JPEG
;
42 m_mime
= wxT("image/jpeg");
46 virtual bool LoadFile( wxImage
*image
, wxInputStream
& stream
, bool verbose
=TRUE
, int index
=-1 );
47 virtual bool SaveFile( wxImage
*image
, wxOutputStream
& stream
, bool verbose
=TRUE
);
48 virtual bool DoCanRead( wxInputStream
& stream
);
52 DECLARE_DYNAMIC_CLASS(wxJPEGHandler
)