PdfMetadata

data class PdfMetadata(val title: String?, val author: String?, val subject: String?, val keywords: String?, val creator: String?, val producer: String?, val creationDate: String?, val modificationDate: String?, val additional: Map<String, String> = emptyMap())

Document information dictionary values.

PDF date values are intentionally left unparsed because malformed and partially specified PDF date strings are common.

Constructors

Link copied to clipboard
constructor(title: String?, author: String?, subject: String?, keywords: String?, creator: String?, producer: String?, creationDate: String?, modificationDate: String?, additional: Map<String, String> = emptyMap())

Properties

Link copied to clipboard

Non-standard information dictionary entries.

Link copied to clipboard

Document author, or null when absent.

Link copied to clipboard

Raw PDF date string, or null when absent.

Link copied to clipboard

Name of the application that created the source document.

Link copied to clipboard

Whitespace- or comma-separated keywords, or null when absent.

Link copied to clipboard

Raw PDF date string, or null when absent.

Link copied to clipboard

Name of the application that produced the PDF file.

Link copied to clipboard

Document subject, or null when absent.

Link copied to clipboard

Document title, or null when absent.