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

    Type Alias EmbeddedFileStreamProperties

    Represents embedded file stream in PDF. See EmbeddedFileStream.

    type EmbeddedFileStreamProperties = {
        creationDate?: PdfDateTime | null;
        data: Uint8Array;
        mimeType?: string | null;
        modificationDate?: PdfDateTime | null;
    }
    Index

    Properties

    creationDate?: PdfDateTime | null

    The date and time when the embedded file was created.

    data: Uint8Array

    The stream data.

    mimeType?: string | null

    The file's MIME type.

    modificationDate?: PdfDateTime | null

    The date and time when the embedded file was last modified.