mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 12:44:07 +00:00
21 lines
360 B
C++
21 lines
360 B
C++
|
#ifndef __TIFF_HH_INCLUDED__
|
||
|
#define __TIFF_HH_INCLUDED__
|
||
|
|
||
|
#ifdef MAKE_EXTRA_TIFF_HANDLER
|
||
|
|
||
|
#include <QImage>
|
||
|
|
||
|
namespace GdTiff
|
||
|
{
|
||
|
|
||
|
// QImage don't handle TIFF files if TIFFTAG_PHOTOMETRIC is not set
|
||
|
// We will handle such 1-bit b/w images with default photometric
|
||
|
|
||
|
bool tiffToQImage( const char * data, int size, QImage & image );
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif // TIFF_HH
|