|
|
using System;using System.Collections;using System.ComponentModel;using System.Data;using System.IO;namespace XMPUtilityWSApp{class ImportMetadataTest{[STAThread]static void Main(string[] args){try{// Create a XMPUtilityServiceService objectXMPUtilityServiceService svc = new XMPUtilityServiceService();// Provide authentication credentials to the servicesvc.Credentials = new System.Net.NetworkCredential("administrator","password");// Create a BLOB that represents the input PDF fileBLOB inDoc = new BLOB();// Specify a PDF document whose metadata is to be exportedstring inputFileName = "C:\\Sample2.pdf";FileStream fs = new FileStream(inputFileName, FileMode.Open);// Get the length of the file stream and create a byte arrayint len = (int)fs.Length;byte[] byteArray = new byte[len];// Populate the byte array with the contents of the file streamfs.Read(byteArray, 0, len);// Populate the BLOB objectinDoc.binaryData = byteArray;// Specify an XML file containing the XMP metadata to be importedBLOB xmpDoc = new BLOB();string xmpFileName = "C:\\Grant777.xml";FileStream xmpfs = new FileStream(xmpFileName, FileMode.Open);int xmplen = (int)xmpfs.Length;byte[] xmpByteArray = new byte[xmplen];xmpfs.Read(xmpByteArray, 0, xmplen);xmpDoc.binaryData = xmpByteArray;// Import the XMP metadata from an XMP fileBLOB outDoc = svc.importXMP(inDoc, xmpDoc);// Inspect the XMP metadata object (retrieve the document’s author in this case)XMPUtilityMetadata myXmp = svc.exportMetadata(outDoc);string name = myXmp.author;Console.WriteLine("The document’s author is " + name);// Save the PDF document containing the new metadatabyte[] outByteArray = outDoc.binaryData;string FILE_NAME = "C:\\Sample2WithMetadata.pdf";FileStream fs2 = new FileStream(FILE_NAME, FileMode.OpenOrCreate);BinaryWriter w = new BinaryWriter(fs2);w.Write(outByteArray);w.Close();fs2.Close();Console.WriteLine("The XMP metadata was imported into the PDF document.");}catch (Exception ee){Console.WriteLine("An unexpected exception was encountered: " + ee.Message + "\n" + ee.StackTrace);}}}}
Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/livecycle/es/sdkHelp/programmer/sdkHelp/quickStarts_XMPUtilities.19.5.html