libpdf.h 561 B

123456789101112131415161718192021
  1. #ifndef __LIBPDF_H__
  2. #define __LIBPDF_H__
  3. #include <string>
  4. #include <vector>
  5. using namespace std;
  6. #ifdef LIBPDF_EXPORTS
  7. #define LIBPDF _declspec(dllexport)
  8. #else
  9. #define LIBPDF _declspec(dllimport)
  10. #endif
  11. /************************************
  12. 功能:多张图片合并成一个pdf文件
  13. 参数说明:vecImage:需要合并的图片列表 strPdfName:合并后的pdf文件
  14. 返回值:0:成功 非0:失败 错误值参考:https://github.com/libharu/libharu/wiki/Error-handling
  15. ************************************/
  16. LIBPDF int PdfNewFromImage(vector<string> vecImage, string strPdfName);
  17. #endif