]>
Commit | Line | Data |
---|---|---|
8f493002 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: imagtiff.h | |
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 VS |
21 | #include "wx/image.h" |
22 | ||
fe9308c6 | 23 | // defines for wxImage::SetOption |
9a83f860 VZ |
24 | #define wxIMAGE_OPTION_BITSPERSAMPLE wxString(wxT("BitsPerSample")) |
25 | #define wxIMAGE_OPTION_SAMPLESPERPIXEL wxString(wxT("SamplesPerPixel")) | |
26 | #define wxIMAGE_OPTION_COMPRESSION wxString(wxT("Compression")) | |
27 | #define wxIMAGE_OPTION_IMAGEDESCRIPTOR wxString(wxT("ImageDescriptor")) | |
8f493002 | 28 | |
53a2db12 | 29 | class WXDLLIMPEXP_CORE wxTIFFHandler: public wxImageHandler |
8f493002 | 30 | { |
8f493002 | 31 | public: |
0fc7f695 | 32 | wxTIFFHandler(); |
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 ); | |
8faef7cc | 37 | |
6f02a879 | 38 | protected: |
8faef7cc | 39 | virtual int DoGetImageCount( wxInputStream& stream ); |
6f02a879 | 40 | virtual bool DoCanRead( wxInputStream& stream ); |
8f493002 | 41 | #endif |
2b5f62a0 VZ |
42 | |
43 | private: | |
44 | DECLARE_DYNAMIC_CLASS(wxTIFFHandler) | |
8f493002 | 45 | }; |
8f493002 | 46 | |
2ecf902b | 47 | #endif // wxUSE_LIBTIFF |
8f493002 | 48 | |
2ecf902b | 49 | #endif // _WX_IMAGTIFF_H_ |
8f493002 | 50 |