我想将总页数添加为自定义属性,如ms word所示。
pdf的类似内容是否可能?我也使用aspose进行文件转换。我将多种文件类型转换为pdf,但是如果我们还希望将文档的pagen计数显示为自定义属性。
答案 0 :(得分:0)
这是来自Aspose新闻组:
//open document
Aspose.Pdf.Document pdfDocument = new Aspose.Pdf.Document("Test.pdf");
//set properties
pdfDocument.Metadata["xmp:Nickname"] = "Nickname";
pdfDocument.Metadata["xmp:CreatorTool"] = "Test Value";
pdfDocument.Metadata["xmp:CustomProperty"] = "Custom Value";
//Convert to PDF/A compliant document
pdfDocument.Validate("log.xml", PdfFormat.PDF_A_1A);
pdfDocument.Convert("log.xml", PdfFormat.PDF_A_1A, ConvertErrorAction.Delete);
//save output document
pdfDocument.Save("output_XMP.pdf");
这是你在找什么?