目前我无法使用 GemBox 加载原始 pdf 文档。它给了我以下图像错误。我正在使用 Acrobat 9。
我也尝试过使用 8/16/2018 修复。任何建议将不胜感激。
我使用的基本代码是,
using GemBox.Document;
using System;
namespace Pdf2Text
{
class Program
{
[STAThread]
static void Main(string[] args)
{
ComponentInfo.SetLicense("My-License");
DocumentModel document = null;
document = DocumentModel.Load(@"E:\data\testing\HA021.pdf");
document.Save(@"E:\data\testing\HA021.docx");
}
}
}