0

我需要使用 Gem Box 合并到 PDF 文件,是否可以将它们与 Gembox 合并?我知道我们可以与 ITEXT 合并。请建议是否有办法将文件与 gembox 合并。

4

1 回答 1

1

编辑 2019-11-15:
将多个 PDF 文件合并为一个的更合适的解决方案是使用GemBox.Pdf,如本示例所示。

string[] files = { "File 1.pdf", "File 2.pdf", "File 3.pdf" };

using (var document = new PdfDocument())
{
    foreach (var file in files)
        using (var source = PdfDocument.Load(file))
            document.Pages.Kids.AddClone(source.Pages);

    document.Save("Merged Files.pdf");
}

编辑 2017-11-22:
较新版本的 GemBox.Document(2.5 版)支持 PDF 作为输入和输出文件格式,请参阅发布帖子
在以下链接中,您可以找到“在 C# 和 VB.NET 中读取和提取 PDF 文本”的演示示例:
https ://www.gemboxsoftware.com/document/examples/c-sharp-read-pdf/305

原始答案:
当前版本的 GemBox.Document(2.3 版)仅支持 PDF 文件作为输出文件。对此有一个功能请求,但目前我不确定它何时可用: https: //support.gemboxsoftware.com/feedback/view/support-for-reading-pdf-files

于 2014-06-26T08:14:50.090 回答