code_app/app/scanner/ocrPdf.h

10 lines
280 B
C
Raw Normal View History

2023-02-17 01:20:12 +00:00
#ifndef __OCRPDF_H__
#define __OCRPDF_H__
#include <string>
std::string getOcrPath();
bool createOcrPdf(const std::string &imgPath, const std::string &dstFile, int languageType);//languageType is the index of the comboBox on export and save_as ui.
2023-02-17 01:20:12 +00:00
#endif /* __OCRPDF_H__ */