DsPdfJS API - v9.1.0
    Preparing search index...

    Type Alias MetadataProperties

    Provides options for creating metadata for a PDF document.

    type MetadataProperties = {
        contributors?: string[];
        copyright?: string;
        coverage?: string;
        createDate?: Date;
        creators?: string[];
        creatorTool?: string;
        dates?: string[];
        description?: string;
        identifier?: string;
        keywords?: string[];
        languages?: string[];
        metadataDate?: Date;
        modifyDate?: Date;
        pdfA?: PdfAConformanceLevel;
        pdfUa?: number | null;
        producer?: string;
        publishers?: string[];
        readOnly?: boolean;
        relations?: string[];
        source?: string;
        title?: string;
        types?: string[];
        userProps?: MetadataUserProp[];
    }
    Index

    Properties

    contributors?: string[]

    The list of document contributors. Maps to Dublin Core 'contributor' property.

    copyright?: string

    The document copyright. Maps to Dublin Core 'rights' property.

    coverage?: string

    The document coverage. Maps to Dublin Core 'coverage' property.

    createDate?: Date

    The creation date. Maps to XMP 'CreateDate' property. If not set, the current date/time is used.

    creators?: string[]

    The list of document creators. Maps to Dublin Core 'creator' property.

    creatorTool?: string

    The creator tool, in PDF/A compatible documents this value should be the same as DocumentInfo.creator.

    dates?: string[]

    The list of document dates. Maps to Dublin Core 'date' property.

    description?: string

    The document description. Maps to Dublin Core 'description' property.

    identifier?: string

    The document identifier. Maps to Dublin Core 'identifier' property.

    keywords?: string[]

    The list of document keywords, or subjects. Maps to Dublin Core 'subject' property.

    languages?: string[]

    The list of document languages. Maps to Dublin Core 'language' property.

    metadataDate?: Date

    The metadata date. Maps to XMP 'MetadataDate' property. If not set, the current date/time is used.

    modifyDate?: Date

    The modification date. Maps to XMP 'ModifyDate' property. If not set, the current date/time is used.

    The PDF/A conformance version.

    pdfUa?: number | null

    The PDF/UA conformance version. Null indicates that the document is not PDF/UA compliant.

    producer?: string

    The document's producer. Maps to PDF 'Producer' property.

    publishers?: string[]

    The list of document publishers. Maps to Dublin Core 'publisher' property.

    readOnly?: boolean

    Indicates whether the metadata is marked as read-only.

    relations?: string[]

    The list of document relations. Maps to Dublin Core 'relation' property.

    source?: string

    The document source. Maps to Dublin Core 'source' property.

    title?: string

    The document's title. Maps to Dublin Core 'title' property.

    types?: string[]

    The list of document types. Maps to Dublin Core 'type' property.

    userProps?: MetadataUserProp[]

    The list of document custom properties.