linux下动态加载pdf生成库的名字改为libpdf.so

This commit is contained in:
luoliangyi 2022-07-30 17:02:02 +08:00
parent f8ce9fc59f
commit ff7ec42b86
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@ HGResult HGPdfImageWriterImpl::Open(const HGChar* fileName)
#if defined(HG_CMP_MSC)
strcat(dllPath, "pdflib.dll");
#else
strcat(dllPath, "pdflib.so");
strcat(dllPath, "libpdf.so");
#endif
HGResult ret = HGBase_CreateDll(dllPath, &m_dll);
if (HGBASE_ERR_OK != ret)