Skip to content

文档信息

以下是获取文档信息的示例代码:

C#
CPDFDocument document = CPDFDocument.InitWithFilePath("filePath");
CPDFInfo info = document.GetInfo();
string title = info.Title;          // 文档标题。
string author = info.Author;        // 文档作者。
string subject = info.Subject;      // 文档主题。
string creator = info.Creator;      // 创建文档的应用程序名称。
string producer = info.Producer;    // 生成 PDF 数据的应用程序名称。
string keywords = info.Keywords;    // 文档关键字。
string creationDate = info.CreationDate;	// 文档创建日期。
string modificationDate = info.ModificationDate;    // 文档最后修改日期。