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 14:56:36 +00:00
|
|
|
// Licence: wxWidgets licence
|
1999-12-15 22:38:02 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_IMAGTIFF_H_
|
|
|
|
#define _WX_IMAGTIFF_H_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1999-12-15 22:38:02 +00:00
|
|
|
#pragma interface "imagtiff.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/image.h"
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxTIFFHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if wxUSE_LIBTIFF
|
|
|
|
class WXDLLEXPORT wxTIFFHandler: public wxImageHandler
|
|
|
|
{
|
|
|
|
public:
|
2003-05-21 18:25:24 +00:00
|
|
|
wxTIFFHandler();
|
1999-12-15 22:38:02 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
2002-12-04 14:11:26 +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 );
|
|
|
|
virtual bool DoCanRead( wxInputStream& stream );
|
|
|
|
virtual int GetImageCount( 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
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_IMAGTIFF_H_
|
|
|
|
|