]> git.saurik.com Git - wxWidgets.git/blame - include/wx/imagtiff.h
Remove wxDialog::OnSysColourChanged() documentation.
[wxWidgets.git] / include / wx / imagtiff.h
CommitLineData
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
d65172db
DS
25#define wxIMAGE_OPTION_TIFF_BITSPERSAMPLE wxString(wxT("BitsPerSample"))
26#define wxIMAGE_OPTION_TIFF_SAMPLESPERPIXEL wxString(wxT("SamplesPerPixel"))
27#define wxIMAGE_OPTION_TIFF_COMPRESSION wxString(wxT("Compression"))
fc695138 28#define wxIMAGE_OPTION_TIFF_PHOTOMETRIC wxString(wxT("Photometric"))
d65172db
DS
29#define wxIMAGE_OPTION_TIFF_IMAGEDESCRIPTOR wxString(wxT("ImageDescriptor"))
30
31// for backwards compatibility
32#define wxIMAGE_OPTION_BITSPERSAMPLE wxIMAGE_OPTION_TIFF_BITSPERSAMPLE
33#define wxIMAGE_OPTION_SAMPLESPERPIXEL wxIMAGE_OPTION_TIFF_SAMPLESPERPIXEL
34#define wxIMAGE_OPTION_COMPRESSION wxIMAGE_OPTION_TIFF_COMPRESSION
35#define wxIMAGE_OPTION_IMAGEDESCRIPTOR wxIMAGE_OPTION_TIFF_IMAGEDESCRIPTOR
8f493002 36
53a2db12 37class WXDLLIMPEXP_CORE wxTIFFHandler: public wxImageHandler
8f493002 38{
8f493002 39public:
0fc7f695 40 wxTIFFHandler();
8f493002 41
ccec9093
VZ
42 static wxVersionInfo GetLibraryVersionInfo();
43
8f493002 44#if wxUSE_STREAMS
7beb59f3
WS
45 virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
46 virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
8faef7cc 47
6f02a879 48protected:
8faef7cc 49 virtual int DoGetImageCount( wxInputStream& stream );
6f02a879 50 virtual bool DoCanRead( wxInputStream& stream );
8f493002 51#endif
2b5f62a0
VZ
52
53private:
54 DECLARE_DYNAMIC_CLASS(wxTIFFHandler)
8f493002 55};
8f493002 56
2ecf902b 57#endif // wxUSE_LIBTIFF
8f493002 58
2ecf902b 59#endif // _WX_IMAGTIFF_H_
8f493002 60