Edit PDF Metadata on iOS
Metadata may be stored in a PDF document in two ways: in a document information dictionary associated with the document, or in a metadata stream containing XMP data. To give you full access to all the PDF metadata, PSPDFKit comes with PDFMetadata
and XMPMetadata
, which allow you to retrieve or modify a document’s metadata.
PDF Metadata
Use PDFMetadata
to work with the dictionary-based metadata in a PDF.
All values specified in the PDF Info Dictionary are represented by the following types:
Swift | Objective-C |
---|---|
String |
NSString |
Int , Float , Double , Bool |
NSNumber |
Date |
NSDate |
Array<Any> |
NSArray<id> |
Dictionary<String, Any> |
NSDictionary<NSString*, id> |
ℹ️ Note: The
Any
andid
types above can include any of the types mentioned.
These types can be combined in any way you see fit and will be converted into the proper PDF types.
By default, the dictionary metadata may contain the following info keys:
-
Author
-
CreationDate
-
Creator
-
Keywords
-
ModDate
-
Producer
-
Title
You can, of course, add any supported key-value dictionary to the metadata.
Retrieving
To get an entry of the metadata dictionary (e.g. the Author
), you can use the following code snippet:
let document = ... let pdfMetadata = PDFMetadata(document: document) let author = pdfMetadata?.object(forInfoDictionaryKey: .author)
PSPDFDocument *document = ... PSPDFDocumentPDFMetadata *pdfMetadata = [[PSPDFDocumentPDFMetadata alloc] initWithDocument:document]; NSString *author = [pdfMetadata objectForInfoDictionaryKey:PSPDFMetadataAuthorKey];
Saving
You can customize the document metadata and then save the document, which also saves the modified metadata into the PDF:
let pdfMetadata = PDFMetadata(document: document) pdfMetadata?.setObject("MyValue", forInfoDictionaryKey: PDFMetadata.Key("MyCustomKey")) try? document.save()
PSPDFDocumentPDFMetadata *pdfMetadata = [[PSPDFDocumentPDFMetadata alloc] initWithDocument:document]; PSPDFMetadataName metadataKey = @"MyKey"; NSArray *metadataValue = @[@"MyValue"]; [pdfMetadata setObject:metadataValue forKeyedSubscript:metadataKey]; [document saveWithOptions:nil error:NULL];
XMP Metadata
Use XMPMetadata
to work with the metadata stream containing XMP data.
Each key in the XMP metadata stream has to have a namespace set. You can define your own namespace or use one of the already existing ones. PSPDFKit exposes two constants for common namespaces:
-
PSPDFXMPPDFNamespace
/PSPDFXMPPDFNamespacePrefix
— the XMP PDF namespace created by Adobe §3.1 -
PSPDFXMPDCNamespace
/PSPDFXMPDCNamespacePrefix
— the Dublin Core namespace
When setting a value, you also have to pass along a suggested namespace prefix, as this can’t be generated automatically.
Retrieving
Use the following code snippet to get an object from the XMP metadata:
let xmpMetadata = XMPMetadata(document: document) let documentFormat = xmpMetadata?.string(forXMPKey: "format", namespace: PSPDFXMPDCNamespace)
PSPDFDocumentXMPMetadata *xmpMetadata = [[PSPDFDocumentXMPMetadata alloc] initWithDocument:document];
NSString *documentFormat = [xmpMetadata stringForXMPKey:@"format" namespace:PSPDFXMPDCNamespace];
Saving
You can also set new metadata and save it to the document:
let xmpMetadata = XMPMetadata(document: document) let metadataKey = "MyKey" let metadataValue = "MyValue" xmpMetadata?.setString(metadataValue, forXMPKey: metadataKey, namespace: PSPDFXMPPDFNamespace, suggestedNamespacePrefix: PSPDFXMPPDFNamespacePrefix)
PSPDFDocumentXMPMetadata *xmpMetadata = [[PSPDFDocumentXMPMetadata alloc] initWithDocument:document]; NSString *metadataKey = @"MyKey"; NSString *metadataValue = @"MyValue"; [xmpMetadata setString:metadataValue forXMPKey:metadataKey namespace:PSPDFXMPPDFNamespace suggestedNamespacePrefix:PSPDFXMPPDFNamespacePrefix]; [document saveWithOptions:nil error:NULL];