我正在使用 Aspose 库打开 pdf 文件,并尝试在使用 Adobe Acrobat Reader 时读取“可以打开方式”中显示的属性。
有人可以帮助我,让我知道哪个房产的“可以打开”下显示了该信息吗?
谢谢你的帮助。
我正在使用 Aspose 库打开 pdf 文件,并尝试在使用 Adobe Acrobat Reader 时读取“可以打开方式”中显示的属性。
有人可以帮助我,让我知道哪个房产的“可以打开”下显示了该信息吗?
谢谢你的帮助。
@塞尔吉奥卡斯特罗,
您可以使用 Document 类的 DocumentInfo 和 Metadata 成员检索和设置 PDF 文档的属性以及 XMP 属性。 C#
// Open document
Document pdfDocument = new Document(dataDir + "GetFileInfo.pdf");
// Get document information
DocumentInfo docInfo = pdfDocument.Info;
// Show document information
Console.WriteLine("Author: {0}", docInfo.Author);
Console.WriteLine("Creation Date: {0}", docInfo.CreationDate);
Console.WriteLine("Keywords: {0}", docInfo.Keywords);
Console.WriteLine("Modify Date: {0}", docInfo.ModDate);
Console.WriteLine("Subject: {0}", docInfo.Subject);
Console.WriteLine("Title: {0}", docInfo.Title);
Facades.PdfFileInfo fileInfo = new Facades.PdfFileInfo(pdfDocument);
fileInfo.GetPdfVersion();
此帮助主题中记录了代码示例:PDF 文件元数据