mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 08:34:08 +00:00
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
|