Aggiungere proprietà nei metadati XMP di un file EPS | Python
Per aggiungere proprietà ai metadati XMP di un file EPS, è necessario seguire questi passaggi:
- Inizializzare un flusso di input per il file EPS di input.
- Creare un’istanza di PsDocument dal flusso di input creato in precedenza.
- Ottenere un’istanza di XmpMetadata dal PsDocument. Se il file EPS non contiene metadati XMP, ne verrà creato uno nuovo, popolato con i valori dei commenti dei metadati PS e restituito all’utente.
- Ora è possibile aggiungere proprietà ai campi dei metadati.
- Inizializzare un flusso di output per il file EPS di output.
- Salvare il file EPS con i metadati XMP aggiornati.
Di seguito è riportato un frammento di codice che mostra come aggiungere proprietà ai metadati XMP di un file EPS utilizzando Python:
1# The path to the documents directory.
2data_dir = Util.get_data_dir_working_with_xmp_metadata_in_eps()
3# Initialize an EPS file input stream
4ps_stream = open(data_dir + "add_simple_props_input.eps", "rb",)
5# Create a PsDocument instance from stream
6document = PsDocument(ps_stream)
7
8try:
9 # Get XMP metadata. If EPS file doesn't contain any XMP metadata we get a new one filled with values from PS metadata comments (%%Creator, %%CreateDate, %%Title etc)
10 xmp = document.get_xmp_metadata()
11
12 #Change the XMP metadata values
13
14
15 now = datetime.utcnow()
16
17 # Add an Integer poperty
18 xmp.add("xmp:Intg1", XmpValue(111))
19
20 # Add a DateTime poperty
21 xmp.add("xmp:Date1", XmpValue(now))
22
23 # Add a Double poperty
24 xmp.add("xmp:Double1", XmpValue(111.11))
25
26 # Add a String poperty
27 xmp.add("xmp:String1", XmpValue("ABC"))
28
29 # Save the EPS file with the changed XMP metadata
30
31 # Create an ouput stream
32 with open(data_dir + "add_simple_props_output.eps", "wb") as out_ps_stream:
33 # Save the EPS file
34 document.save(out_ps_stream)
35
36finally:
37 ps_stream.close()
È possibile scaricare esempi e file di dati da GitHub.