ImageJS
    Preparing search index...

    Interface ImageOptions

    interface ImageOptions {
        bitDepth?: BitDepth;
        colorModel?: ImageColorModel;
        data?: ImageDataArray;
        meta?: ImageMetadata;
        origin?: Point;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bitDepth?: BitDepth

    Number of bits per value in each channel.

    8.

    colorModel?: ImageColorModel

    Color model of the created image.

    'RGB'.

    Typed array holding the image data.

    origin?: Point

    Origin of the image relative to a parent image (top-left corner).

    {row: 0, column: 0}