我有两个 PDF 文件,我想使用 IronPDF 将两个 PDF 文件合并到单个 PDF 文件中(参考来自https://ironpdf.com/)。这是我正在使用的代码
var PDFs = new List<PdfDocument>();
foreach (var file in files)
{
PDFs.Add(PdfDocument.FromFile(file));
}
PdfDocument PDF = PdfDocument.Merge(PDFs);
newFileName = Path.Combine(TEMP_PDF_FILESTORE_LOCATION, newFileName);
PDF.SaveAs(newFileName);
在此处合并两个 PDF 文件时出现错误,显示“无法安全地从 AnotherPdfFile 读取页面对象”。PDF 之一可以在其中包含图像。一些图像 PDF 会出现一些抛出错误。我们怎样才能消除这个错误?