在 EPS 的 XMP 元数据中添加命名值 | Java
810 / 5,000 为了在 EPS 文件的 XMP 元数据中添加命名值,需要执行以下步骤:
- 初始化用于输入 EPS 文件的输入流。
- 从先前创建的输入流创建 PsDocument 的实例。
- 从 PsDocument 获取 XmpMetadata 的实例。如果给定的 EPS 文件不包含 XMP 元数据,则将创建新的实例,并使用 PS 元数据注释中的值填充该实例并返回给您。
- 现在,您可以将命名值添加到结构元数据字段中。
- 初始化用于输出 EPS 文件的输出流。
- 保存包含更改后的 XMP 元数据的 EPS 文件。
以下代码片段展示了如何在 Java 中向 EPS 文件的 XMP 元数据中添加命名值:
1// For complete examples and data files, please go to https://github.com/aspose-page/Aspose.Page-for-Java
2// Set license
3new License().setLicense(BaseExamplesTest.LICENSE_PATH);
4
5// The path to the documents directory.
6String dataDir = Utils.getDataDir();
7
8// Initialize input EPS file stream
9FileInputStream psStream = new FileInputStream(dataDir + "xmp4.eps");
10
11PsDocument document = new PsDocument(psStream);
12
13try {
14 // Get XMP metadata. If EPS file doesn't contain XMP metadata we get new one filled with values from PS metadata comments (%%Creator, %%CreateDate, %%Title etc)
15 XmpMetadata xmp = document.getXmpMetadata();
16
17 // Add new named value "stDim:newKey" with string value "NewValue" to structure "xmpTPg:MaxPageSize"
18 xmp.addNamedValue("xmpTPg:MaxPageSize", "stDim:newKey", new XmpValue("NewValue"));
19
20
21 // Initialize output EPS file stream
22 FileOutputStream outPsStream = new FileOutputStream(dataDir + "xmp4_changed.eps");
23
24 // Save document with changed XMP metadata
25 try {
26 document.save(outPsStream);
27 } finally {
28 outPsStream.close();
29 }
30
31} finally {
32 // close input EPS stream
33 psStream.close();
34}
您可以从 GitHub下载示例和数据文件。