代码看起来没有问题。
https://www.leadtools.com/help/l ... tml?platform=dotnet
上面这个文档链接里就是示例代码。
- public void PDFFileMergeWithExample()
- {
- string sourceFileName1 = Path.Combine(LEAD_VARS.ImagesDir, @"File1.pdf");
- string sourceFileName2 = Path.Combine(LEAD_VARS.ImagesDir, @"File2.pdf");
- string sourceFileName3 = Path.Combine(LEAD_VARS.ImagesDir, @"File3.pdf");
- string destinationFileName = Path.Combine(LEAD_VARS.ImagesDir, @"Merged.pdf");
- // Merge 1 with (2, 3) and form destination
- PDFFile pdfFile = new PDFFile(sourceFileName1);
- pdfFile.MergeWith(new string[] { sourceFileName2, sourceFileName2 }, destinationFileName);
- }
复制代码
你出现这个问题很可能是license不支持。有可能是你购买了正式授权,但是授权中不包含PDF操作的功能模块,所以不能使用。 |