我正在使用LibHaru库生成 Pdf 文件。我的代码如下
#include <iostream>
#include "hpdf.h"
using namespace std;
void error_handler(HPDF_STATUS error_no, HPDF_STATUS detail_no, void *user_data)
{
}
int main()
{
cout<<"Compression"<<endl;
HPDF_Doc pdf = HPDF_New(error_handler, NULL);
if (!pdf)
return 0;
HPDF_STATUS Status = HPDF_SetCompressionMode(pdf, HPDF_COMP_ALL);
return 0;
}
问题:我调试了代码,发现HPDF_SetCompressionMode()
返回 4129 ,这是调用 HPDF_SetCommpressionMode() 时设置的无效值的错误代码。.