Import and Export Annotations from Instant JSON on iOS

Instant JSON is our approach to bringing annotations into a modern format while keeping all important properties to make the Instant JSON spec work with PDF. It’s fully documented and supports long-term storage.

Instant JSON stores a list of new or updated annotations. Annotations follow the format for Instant JSON for annotations. When an annotation contains a pdfObjectId, it’s considered to be an update to one of the annotations of the original PDF. For newly created annotations, this key won’t be set.

There are some limitations with Instant JSON, in that not all annotation types are currently supported, and only the properties that can be handled correctly across all of PSPDFKit’s supported platforms (iOS, Android, Web, Windows, and Document Engine) are serialized. For more information, check out the detailed JSON Format guide.

Instant Annotation JSON API

Annotation JSON is Instant’s representation of a single annotation. This can be generated by using the methods available in Annotation. For generation, use Annotation.generateInstantJSON():

let annotation = ...
let instantJSONData = try? annotation.generateInstantJSON()

// The annotation's Instant JSON data can be saved to an external file.
PSPDFAnnotation *annotation = ...
NSError *instantJSONGenerationError;
NSData *instantJSON = [annotation generateInstantJSONWithError:&instantJSONGenerationError];
if (!instantJSON) {
    // Handle error.
}

// The annotation's Instant JSON data can be saved to an external file.

ℹ️ Note: When working with documents that have multiple document providers, the value of pageIndex when creating an annotation JSON from an annotation is always relative to its own document provider and not the entire document.

For creating an annotation from the JSON payload, use Annotation(fromInstantJSON:documentProvider:), like so:

// Load the document.
let document = ...
let loadedInstantJSONData = ... // The Instant JSON data can be loaded from an external file.

let documentProvider = document.documentProviders.first!
// Create an annotation from Instant JSON data.
let annotation = try! Annotation(fromInstantJSON: loadedInstantJSONData, documentProvider: documentProvider)

// Add the newly created annotation to the document.
document.add([annotation])
// Load the document.
PSPDFDocument *document = ...
NSData *loadedInstantJSONData = ... // The Instant JSON data can be loaded from an external file.

// Create an annotation from Instant JSON data.
NSError *annotationCreationError;
PSPDFAnnotation *annotation = [PSPDFAnnotation annotationFromInstantJSON:loadedInstantJSONData documentProvider:document.documentProviders.firstObject error:&annotationCreationError];
if (!annotation) {
    // Handle error.
}

// Add the newly created annotation to the document.
[document addAnnotations:@[annotation] options:nil];

For more information, check out the detailed JSON Format guide and the Instant JSON — Annotation example from InstantJSONExamples.swift in PSPDFKit Catalog.

Here’s an Instant JSON sample payload for an ink annotation:

{
	"v": 1,
	"type": "pspdfkit/ink",
	"bbox": [89, 98, 143, 207],
	"blendMode": "normal",
	"createdAt": "2018-07-03T13:53:03Z",
	"isDrawnNaturally": false,
	"lineWidth": 5,
	"lines": {
		"intensities": [
			[0.5, 0.5, 0.5],
			[0.5, 0.5, 0.5]
		],
		"points": [
			[
				[92, 101],
				[92, 202],
				[138, 303]
			],
			[
				[184, 101],
				[184, 202],
				[230, 303]
			]
		]
	},
	"opacity": 1,
	"pageIndex": 0,
	"strokeColor": "#AA47BE",
	"updatedAt": "2018-07-03T13:53:03Z"
}

Instant Document JSON API

Document JSON is a serializable representation of the current changes to a document, i.e. a diff between the Document’s saved and unsaved changes. This can be used to transfer a set of changes across devices without having to send the entire PDF, which could potentially be very large. PSPDFKit for Web uses this in standalone deployment to reduce bandwidth use. Currently, the generated JSON only contains changes to annotations.

To generate Instant JSON for documents, call Document.generateInstantJSON(from:) on the document from which you wish to retrieve currently unsaved changes in JSON form. Note that this method will return nil if there are no unsaved changes in the document:

let data = try? document.generateInstantJSON(from: document.documentProviders.first)
NSError *error;
NSData *data = [document generateInstantJSONFromDocumentProvider:document.documentProviders.firstObject error:&error];
if (!data) {
  // Handle error.
}

This generated JSON can then be applied to a document using Document.applyInstantJSON(fromDataProvider:to:lenient:). If you have an NSData object containing the Document JSON data, create a DataContainerProvider and pass that as the dataProvider argument to the method, like this:

let document = ...
let jsonContainer = DataContainerProvider(data:data!)
try! document.applyInstantJSON(fromDataProvider: jsonContainer, to: document.documentProviders.first, lenient: false)
PSPDFDocument *document = ...
PSPDFDataContainerProvider *jsonContainer = [[PSPDFDataContainerProvider alloc] initWithData:data];
NSError *error;
BOOL success = [document applyInstantJSONFromDataProvider:jsonContainer toDocumentProvider:document.documentProviders.firstObject lenient:NO error:&error];
if (!success) {
    // Handle error.
}

For more details, see the Instant JSON — Document example from InstantJSONExamples.swift in PSPDFKit Catalog.

Here’s an Instant JSON sample payload for a document with an ink annotation and a bookmark:

{
	"annotations": [
		{
			"v": 1,
			"type": "pspdfkit/ink",
			"id": "01CHG7QMTDT1JFYQ8BSKGT6F3P",
			"bbox": [97.5, 97.5, 155, 205],
			"blendMode": "normal",
			"createdAt": "2018-07-03T14:11:21Z",
			"creatorName": "John Appleseed",
			"isDrawnNaturally": false,
			"lineWidth": 5,
			"lines": {
				"intensities": [
					[0.5, 0.5, 0.5],
					[0.5, 0.5, 0.5]
				],
				"points": [
					[
						[100, 100],
						[100, 200],
						[150, 300]
					],
					[
						[200, 100],
						[200, 200],
						[250, 300]
					]
				]
			},
			"name": "A167811E-6D10-4546-A147-B7AD775FE8AC",
			"note": "",
			"opacity": 1,
			"pageIndex": 0,
			"strokeColor": "#AA47BE",
			"updatedAt": "2018-07-03T14:11:21Z"
		}
	],
	"bookmarks": [
		{
			"action": {
				"pageIndex": 1,
				"type": "goTo"
			},
			"type": "pspdfkit/bookmark",
			"v": 1
		}
	],
	"format": "https://pspdfkit.com/instant-json/v1",
	"pdfId": {
		"changing": "wljL9fB/TPOAuGjHAsAsHg==",
		"permanent": "qTwUmg5VSm6ysfzcPlFvnQ=="
	},
	"skippedPdfObjectIds": [557]
}

Instant JSON Annotation Attachment API

The Instant JSON Annotation Attachment API enables you to represent an annotation’s binary attachments as data blobs. For example, a stamp annotation with an image has an attachment.

Writing

You can export an Instant JSON binary for a stamp annotation as NSData and persist it to an external file using Annotation.writeBinaryInstantJSONAttachment(to:), like this:

let stampAnnotation = ...
let dataSink = DataContainerSink(data: nil)
var contentType: String?
if stampAnnotation.hasBinaryInstantJSONAttachment {
    contentType = try! stampAnnotation.writeBinaryInstantJSONAttachment(to: dataSink)
}

// Persist the data sink's data and the content type onto an external file so it can be attached later.
PSPDFStampAnnotation *stampAnnotation = ...
PSPDFDataContainerSink dataSink = [[PSPDFDataContainerSink alloc] initWithData:nil];
NSError *error;
NSString *contentType;

if (stampAnnotation.hasBinaryInstantJSONAttachment){
    contentType = [stampAnnotation writeBinaryInstantJSONAttachmentToDataSink:dataSink error:&error];
    if (!contentType) {
    	// Handle error.
        return;
    }
}

// Persist the data sink's data and the content type onto an external file so it can be attached later.

Attaching

You can import and attach the Instant JSON binary attachment data for a stamp annotation from an external file using Annotation.attachBinaryInstantJSONAttachment(fromDataProvider:), like so:

// Load the document.
let document = ...
let instantJSONData = ... // The Instant JSON data can be loaded from an external file.
let attachmentData = ... // The Instant JSON binary attachment data can be loaded from an external file.

// Create the data container provider using the attachment data.
let dataContainerProvider = DataContainerProvider(data: attachmentData)
let documentProvider = document.documentProviders.first!

// Create an annotation from Instant JSON data.
let stampAnnotation = try! Annotation(fromInstantJSON: instantJSONData!, documentProvider: documentProvider)
// Attach the attachment data.
try! stampAnnotation.attachBinaryInstantJSONAttachment(fromDataProvider: dataContainerProvider)

// Add the newly loaded annotation to the document.
document.add([stampAnnotation])
// Load the document.
PSPDFDocument *document = ...
NSData *instantJSONData = ... // The Instant JSON data can be loaded from an external file.
NSData *attachmentData = ... // The Instant JSON binary attachment data can be loaded from an external file.

// Create an annotation from Instant JSON data.
NSError *annotationCreationError;
PSPDFAnnotation *stampAnnotation = [PSPDFAnnotation annotationFromInstantJSON:instantJSONData documentProvider:document.documentProviders.firstObject error:&annotationCreationError];
if (!stampAnnotation) {
    // Handle error.
}

// Create the data container provider using the attachment data.
PSPDFDataContainerProvider *dataContainerProvider = [[PSPDFDataContainerProvider alloc] initWithData:attachmentData];

// Attach the attachment data.
NSError *attachBinaryError;
BOOL success = [stampAnnotation attachBinaryInstantJSONAttachmentFromDataProvider:dataContainerProvider error:&attachBinaryError];
if (!success) {
    // Handle error.
}

// Add the newly loaded annotation to the document.
[document addAnnotations:@[stampAnnotation] options:nil];

For more details, please take a look at the Instant JSON — Attachment example from InstantJSONExamples.swift in PSPDFKit Catalog.