EPSファイルのXMPメタデータの配列項目の変更| C++

EPSファイルのXMPメタデータの配列項目を変更するには、以下の手順を実行する必要があります。

  1. 入力EPSファイルの入力ストリームを初期化します。
  2. 先ほど作成した入力ストリームから PsDocumentのインスタンスを作成します。
  3. PsDocumentから XmpMetadataのインスタンスを取得します。指定したEPSファイルにXMPメタデータが含まれていない場合は、新しいメタデータが作成され、PSメタデータコメントの値が入力されて返されます。
  4. これで、配列メタデータフィールドの項目を変更できます。
  5. 出力EPSファイルの出力ストリームを初期化します。
  6. 変更したXMPメタデータを含むEPSファイルを保存します。


次のコード スニペットは、C++ で EPS ファイル内の XMP メタデータの配列項目を変更する方法を示しています。

 1// For complete examples and data files, please go to https://github.com/aspose-page/Aspose.Page-for-C
 2// The path to the documents directory.
 3System::String dataDir = RunExamples::GetDataDir_WorkingWithXMPMetadataInEPS();
 4// Initialize EPS file input stream
 5System::SharedPtr<System::IO::FileStream> psStream = System::MakeObject<System::IO::FileStream>(dataDir + u"add_simple_props_input.eps", System::IO::FileMode::Open, System::IO::FileAccess::Read);
 6// Create PsDocument instance from stream
 7System::SharedPtr<PsDocument> document = System::MakeObject<PsDocument>(psStream);
 8
 9
10{
11    auto __finally_guard_0 = ::System::MakeScopeGuard([&psStream]()
12    {
13        psStream->Close();
14    });
15    
16    try
17    {
18        // 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)
19        System::SharedPtr<XmpMetadata> xmp = document->GetXmpMetadata();
20        
21        //Change XMP metadata values
22        
23        // Change title item at index 0
24        xmp->SetArrayItem(u"dc:title", 0, System::MakeObject<XmpValue>(u"NewTitle"));
25        
26        // Change creator item at index 0
27        xmp->SetArrayItem(u"dc:creator", 0, System::MakeObject<XmpValue>(u"NewCreator"));
28        
29        // Save EPS file with changed XMP metadata
30        
31        // Create ouput stream
32        System::SharedPtr<System::IO::FileStream> outPsStream = System::MakeObject<System::IO::FileStream>(RunExamples::GetOutDir() + u"change_array_items_output.eps", System::IO::FileMode::Create, System::IO::FileAccess::Write);
33        
34        // Save EPS file
35        
36        {
37            auto __finally_guard_1 = ::System::MakeScopeGuard([&outPsStream]()
38            {
39                outPsStream->Close();
40            });
41            
42            try
43            {
44                document->Save(outPsStream);
45                outPsStream->Flush();
46            }
47            catch (...)
48            {
49                throw;
50            }
51        }
52        
53    }
54    catch (...)
55    {
56        throw;
57    }
58}

Java および .NET の XMP メタデータ内の配列項目の変更を参照してください。

サンプルとデータ ファイルは GitHub からダウンロードできます。

Have any questions about Aspose.Page?



Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.