goldendict-ng/tiff.hh
shenleban tongying cd40bfa7d3 feat: remove LibTIFF dependency
* Qt already have built-in support for them
* remove qmake option no_extra_tiff_handler
2023-04-16 13:01:26 +08:00

14 lines
213 B
C++

#ifndef __TIFF_HH_INCLUDED__
#define __TIFF_HH_INCLUDED__
#include <QImage>
#include <vector>
namespace GdTiff {
void tiff2img( std::vector< char > & data, const char * format = "webp" );
}
#endif // TIFF_HH