/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.pdfbox.pdmodel.common; import java.io.IOException; import java.io.InputStream; import javax.xml.transform.TransformerException; import org.apache.jempbox.xmp.XMPMetadata; import org.apache.pdfbox.cos.COSStream; import org.apache.pdfbox.pdmodel.PDDocument; /** * This class represents metadata for various objects in a PDF document. * * @author <a href="mailto:ben@benlitchfield.com">Ben Litchfield</a> * @version $Revision: 1.3 $ */ public class PDMetadata extends PDStream { /** * This will create a new PDMetadata object. * * @param document The document that the stream will be part of. */ public PDMetadata( PDDocument document ) { super( document ); getStream().setName( "Type", "Metadata" ); getStream().setName( "Subtype", "XML" ); } /** * Constructor. Reads all data from the input stream and embeds it into the * document, this will close the InputStream. * * @param doc The document that will hold the stream. * @param str The stream parameter. * @param filtered True if the stream already has a filter applied. * @throws IOException If there is an error creating the stream in the document. */ public PDMetadata( PDDocument doc, InputStream str, boolean filtered ) throws IOException { super( doc, str, filtered ); getStream().setName( "Type", "Metadata" ); getStream().setName( "Subtype", "XML" ); } /** * Constructor. * * @param str The stream parameter. */ public PDMetadata( COSStream str ) { super( str ); } /** * Extract the XMP metadata and create and build an in memory object. * To persist changes back to the PDF you must call importXMPMetadata. * * @return A parsed XMP object. * * @throws IOException If there is an error parsing the XMP data. */ public XMPMetadata exportXMPMetadata() throws IOException { return XMPMetadata.load( createInputStream() ); } /** * Import an XMP stream into the PDF document. * * @param xmp The XMP data. * * @throws IOException If there is an error generating the XML document. * @throws TransformerException If there is an error generating the XML document. */ public void importXMPMetadata( XMPMetadata xmp ) throws IOException, TransformerException { xmp.save( createOutputStream() ); } }