1999-12-15 22:38:02 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: imagtiff.h
|
|
|
|
// Purpose: wxImage TIFF handler
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-12-15 22:38:02 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_IMAGTIFF_H_
|
|
|
|
#define _WX_IMAGTIFF_H_
|
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxTIFFHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if wxUSE_LIBTIFF
|
|
|
|
|
1999-12-15 22:38:02 +00:00
|
|
|
#include "wx/image.h"
|
|
|
|
|
2005-02-19 16:32:29 +00:00
|
|
|
// defines for wxImage::SetOption
|
2009-07-23 20:30:22 +00:00
|
|
|
#define wxIMAGE_OPTION_BITSPERSAMPLE wxString(wxT("BitsPerSample"))
|
|
|
|
#define wxIMAGE_OPTION_SAMPLESPERPIXEL wxString(wxT("SamplesPerPixel"))
|
|
|
|
#define wxIMAGE_OPTION_COMPRESSION wxString(wxT("Compression"))
|
|
|
|
#define wxIMAGE_OPTION_IMAGEDESCRIPTOR wxString(wxT("ImageDescriptor"))
|
1999-12-15 22:38:02 +00:00
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxTIFFHandler: public wxImageHandler
|
1999-12-15 22:38:02 +00:00
|
|
|
{
|
|
|
|
public:
|
2003-05-21 18:25:24 +00:00
|
|
|
wxTIFFHandler();
|
1999-12-15 22:38:02 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
2004-09-16 18:13:32 +00:00
|
|
|
virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
|
|
|
|
virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
|
2009-06-01 11:43:36 +00:00
|
|
|
|
2006-02-08 21:47:09 +00:00
|
|
|
protected:
|
2009-06-01 11:43:36 +00:00
|
|
|
virtual int DoGetImageCount( wxInputStream& stream );
|
2006-02-08 21:47:09 +00:00
|
|
|
virtual bool DoCanRead( wxInputStream& stream );
|
1999-12-15 22:38:02 +00:00
|
|
|
#endif
|
2002-12-04 14:11:26 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxTIFFHandler)
|
1999-12-15 22:38:02 +00:00
|
|
|
};
|
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#endif // wxUSE_LIBTIFF
|
1999-12-15 22:38:02 +00:00
|
|
|
|
2005-03-16 16:18:31 +00:00
|
|
|
#endif // _WX_IMAGTIFF_H_
|
1999-12-15 22:38:02 +00:00
|
|
|
|