Skip to content

miyako/4d-plugin-pdf-metadata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"
	}
}