Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.21 KB

README.md

File metadata and controls

46 lines (37 loc) · 1.21 KB

version platform license downloads

4d-plugin-pdf-metadata

Read and write PDF metadata with PDFio

Modifications

Note

This library does not seem to support file modification; either read an existing PDF or create a new one.

Example

$path:=Get 4D folder(Current resources folder)+"test.pdf"

$status:=PDFio Get metadata($path)
{
	"success": true,
	"meta": {
		"version": "1.4",
		"permission": {
			"print": true,
			"modify": true,
			"copy": true,
			"annotate": true,
			"forms": true,
			"reading": true,
			"assemble": true,
			"printHigh": true
		},
		"encryption": "NONE",
		"pageCount": 1,
		"name": "/Users/miyako/Documents/GitHub/4d-plugin-pdf-metadata/pdfio/test/Resources/test.pdf",
		"creationDate": "1970-01-01T00:00:00Z"
	}
}