@qrcommunication/gigapdf-lib — SDK API reference - v0.110.3
    Preparing search index...

    Interface InfoFields

    The standard document-information fields (ISO 32000-1 §14.3.3), shared by the /Info dictionary and the XMP /Metadata packet. Passed to GigaPdfDoc.setInfo, which writes both and keeps them in sync. Every field is optional; on setInfo an omitted field is left unchanged (a partial update). Dates are PDF date strings ("D:YYYYMMDDHHmmSS+HH'mm'").

    interface InfoFields {
        title?: string;
        author?: string;
        subject?: string;
        keywords?: string;
        creator?: string;
        producer?: string;
        creationDate?: string;
        modDate?: string;
    }
    Index

    Properties

    title?: string

    /Titledc:title.

    author?: string

    /Authordc:creator.

    subject?: string

    /Subjectdc:description.

    keywords?: string

    /Keywordspdf:Keywords.

    creator?: string

    /Creator (authoring app) → xmp:CreatorTool.

    producer?: string

    /Producer (PDF producer) → pdf:Producer.

    creationDate?: string

    /CreationDate (PDF date string) → xmp:CreateDate.

    modDate?: string

    /ModDate (PDF date string) → xmp:ModifyDate.