c#+找到pdf文件属性“可以由...打开”

时间:2018-06-29 07:00:08

标签: c# aspose aspose.pdf

我正在使用Aspose库打开pdf文件,并且尝试使用Adobe Acrobat Reader读取“可以由...打开”中显示的属性。

enter image description here

有人可以帮助我,让我知道在“可以由...打开”下方显示哪些信息吗?

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

@SergioKastro,

您可以使用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 File Metadata