goldendict-ng/tiff.hh
2022-04-05 21:36:06 +08:00

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