goldendict-ng/src/tiff.hh
shenleban tongying 618310f772
Some checks are pending
SonarCloud / Build and analyze (push) Waiting to run
clean: just use #pragma once
2024-11-06 22:53:04 -05:00

10 lines
148 B
C++

#pragma once
#include <QImage>
#include <vector>
namespace GdTiff {
void tiff2img( std::vector< char > & data, const char * format = "webp" );
}