PdfCustomPropertiesExport

PdfCustomPropertiesExport enumeration

指定方式CustomDocumentProperties导出为 PDF 文件。

public enum PdfCustomPropertiesExport

价值观

姓名价值描述
None0未导出自定义属性。
Standard1自定义属性作为 /Info 字典中的条目导出。
Metadata2自定义属性是元数据。

例子

演示如何在将文档转换为 PDF 时导出自定义属性。

Document doc = new Document();

doc.CustomDocumentProperties.Add("Company", "My value");

// 创建一个“PdfSaveOptions”对象,我们可以将其传递给文档的“Save”方法
// 修改该方法将文档转换为 .PDF 的方式。
PdfSaveOptions options = new PdfSaveOptions();

// 将“CustomPropertiesExport”属性设置为“PdfCustomPropertiesExport.None”以丢弃
// 当我们将文档保存为 .PDF 时自定义文档属性。
// 将“CustomPropertiesExport”属性设置为“PdfCustomPropertiesExport.Standard”
// 在输出 PDF 文档中保留自定义属性。
// 将“CustomPropertiesExport”属性设置为“PdfCustomPropertiesExport.Metadata”
// 在 XMP 数据包中保留自定义属性。
options.CustomPropertiesExport = pdfCustomPropertiesExportMode;

doc.Save(ArtifactsDir + "PdfSaveOptions.CustomPropertiesExport.pdf", options);

也可以看看