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(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"))
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 );
39 virtual int DoGetImageCount( wxInputStream
& stream
);
40 virtual bool DoCanRead( wxInputStream
& stream
);
44 DECLARE_DYNAMIC_CLASS(wxTIFFHandler
)
47 #endif // wxUSE_LIBTIFF
49 #endif // _WX_IMAGTIFF_H_