mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
cd40bfa7d3
* Qt already have built-in support for them * remove qmake option no_extra_tiff_handler
14 lines
213 B
C++
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
|