teapub
    Preparing search index...

    Interface ImageData

    An image to include in the epub

    interface ImageData {
        data: Uint8Array;
        mime?: "image/png" | "image/jpeg" | "image/gif" | "image/svg+xml";
    }
    Index

    Properties

    Properties

    data: Uint8Array

    an appropriately formatted buffer of the image

    mime?: "image/png" | "image/jpeg" | "image/gif" | "image/svg+xml"

    the image mime type

    If omitted it will try to be inferred from the extension.