pdftools_sdk.pdf.metadata
Classes
|
Represents the metadata of a document or an object in a document. |
- class pdftools_sdk.pdf.metadata.Metadata(handle)[source]
Bases:
_NativeObject
Represents the metadata of a document or an object in a document.
For document level metadata, all changes are reflected in both, XMP metadata and document info dictionary depending on the conformance of the document.
- property title: str | None
The title of the document or resource.
This property corresponds to the “dc:title” entry in the XMP metadata and to the “Title” entry in the document information dictionary.
- Returns:
Optional[str]
- Raises:
StateError – if the metadata have already been closed
- property author: str | None
The name of the person who created the document or resource.
This property corresponds to the “dc:creator” entry in the XMP metadata and to the “Author” entry in the document information dictionary.
- Returns:
Optional[str]
- Raises:
StateError – if the metadata have already been closed
- property subject: str | None
The subject of the document or resource.
This property corresponds to the “dc:description” entry in the XMP metadata and to the “Subject” entry in the document information dictionary.
- Returns:
Optional[str]
- Raises:
StateError – if the metadata have already been closed
- property keywords: str | None
Keywords associated with the document or resource.
Keywords can be separated by:
carriage return / line feed
comma
semicolon
tab
double space
This property corresponds to the “pdf:Keywords” entry in the XMP metadata and to the “Keywords” entry in the document information dictionary.
- Returns:
Optional[str]
- Raises:
StateError – if the metadata have already been closed
- property creator: str | None
The original application that created the document.
The name of the first known tool used to create the document or resource.
This property corresponds to the “xmp:CreatorTool” entry in the XMP metadata and to the “Creator” entry in the document information dictionary.
- Returns:
Optional[str]
- Raises:
StateError – if the metadata have already been closed
- property producer: str | None
The application that created the PDF
If the document was converted to PDF from another format, the name of the PDF processor that converted it to PDF.
This property corresponds to the “pdf:Producer” entry in the XMP metadata and to the “Producer” entry in the document information dictionary.
- Returns:
Optional[str]
- Raises:
StateError – if the metadata have already been closed
- property creation_date: datetime | None
The date and time the document or resource was originally created.
This property corresponds to the “xmp:CreateDate” entry in the XMP metadata and to the “CreationDate” entry in the document information dictionary.
- Returns:
Optional[datetime]
- Raises:
StateError – if the metadata have already been closed
- property modification_date: datetime | None
The date and time the document or resource was most recently modified.
This property corresponds to the “xmp:ModifyDate” entry in the XMP metadata and to the “ModDate” entry in the document information dictionary.
- Returns:
Optional[datetime]
- Raises:
pdftools_sdk.corrupt_error.CorruptError – The date is corrupt.
StateError – if the metadata have already been closed