mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
22 lines
465 B
C++
22 lines
465 B
C++
#ifndef __TIFF_HH_INCLUDED__
|
|
#define __TIFF_HH_INCLUDED__
|
|
|
|
#ifdef MAKE_EXTRA_TIFF_HANDLER
|
|
|
|
#include <QImage>
|
|
#include <vector>
|
|
using std::vector;
|
|
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 );
|
|
void tiff2img( vector< char > & data, const char * format = "webp" );
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif // TIFF_HH
|