1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxImage TIFF handler
4 // Author: Robert Roebling
6 // Copyright: (c) Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_IMAGTIFF_H_
11 #define _WX_IMAGTIFF_H_
15 //-----------------------------------------------------------------------------
17 //-----------------------------------------------------------------------------
23 // defines for wxImage::SetOption
24 #define wxIMAGE_OPTION_BITSPERSAMPLE wxString(_T("BitsPerSample"))
25 #define wxIMAGE_OPTION_SAMPLESPERPIXEL wxString(_T("SamplesPerPixel"))
26 #define wxIMAGE_OPTION_COMPRESSION wxString(_T("Compression"))
27 #define wxIMAGE_OPTION_IMAGEDESCRIPTOR wxString(_T("ImageDescriptor"))
29 class WXDLLIMPEXP_CORE wxTIFFHandler
: public wxImageHandler
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 int GetImageCount( wxInputStream
& stream
);
39 virtual bool DoCanRead( wxInputStream
& stream
);
43 DECLARE_DYNAMIC_CLASS(wxTIFFHandler
)
46 #endif // wxUSE_LIBTIFF
48 #endif // _WX_IMAGTIFF_H_