]>
Commit | Line | Data |
---|---|---|
8f493002 | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/imagtiff.h |
8f493002 VS |
3 | // Purpose: wxImage TIFF 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_IMAGTIFF_H_ | |
11 | #define _WX_IMAGTIFF_H_ | |
12 | ||
2ecf902b WS |
13 | #include "wx/defs.h" |
14 | ||
15 | //----------------------------------------------------------------------------- | |
16 | // wxTIFFHandler | |
17 | //----------------------------------------------------------------------------- | |
18 | ||
19 | #if wxUSE_LIBTIFF | |
20 | ||
8f493002 | 21 | #include "wx/image.h" |
ccec9093 | 22 | #include "wx/versioninfo.h" |
8f493002 | 23 | |
fe9308c6 | 24 | // defines for wxImage::SetOption |
9a83f860 VZ |
25 | #define wxIMAGE_OPTION_BITSPERSAMPLE wxString(wxT("BitsPerSample")) |
26 | #define wxIMAGE_OPTION_SAMPLESPERPIXEL wxString(wxT("SamplesPerPixel")) | |
27 | #define wxIMAGE_OPTION_COMPRESSION wxString(wxT("Compression")) | |
28 | #define wxIMAGE_OPTION_IMAGEDESCRIPTOR wxString(wxT("ImageDescriptor")) | |
8f493002 | 29 | |
53a2db12 | 30 | class WXDLLIMPEXP_CORE wxTIFFHandler: public wxImageHandler |
8f493002 | 31 | { |
8f493002 | 32 | public: |
0fc7f695 | 33 | wxTIFFHandler(); |
8f493002 | 34 | |
ccec9093 VZ |
35 | static wxVersionInfo GetLibraryVersionInfo(); |
36 | ||
8f493002 | 37 | #if wxUSE_STREAMS |
7beb59f3 WS |
38 | virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 ); |
39 | virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true ); | |
8faef7cc | 40 | |
6f02a879 | 41 | protected: |
8faef7cc | 42 | virtual int DoGetImageCount( wxInputStream& stream ); |
6f02a879 | 43 | virtual bool DoCanRead( wxInputStream& stream ); |
8f493002 | 44 | #endif |
2b5f62a0 VZ |
45 | |
46 | private: | |
47 | DECLARE_DYNAMIC_CLASS(wxTIFFHandler) | |
8f493002 | 48 | }; |
8f493002 | 49 | |
2ecf902b | 50 | #endif // wxUSE_LIBTIFF |
8f493002 | 51 | |
2ecf902b | 52 | #endif // _WX_IMAGTIFF_H_ |
8f493002 | 53 |