geotiff.js
    Preparing search index...

    Interface ReadRGBOptions

    interface ReadRGBOptions {
        enableAlpha?: boolean;
        height?: number;
        interleave?: boolean;
        pool?: Pool | null;
        resampleMethod?: string;
        signal?: AbortSignal;
        width?: number;
        window?: number[];
    }

    Properties

    enableAlpha?: boolean

    Enable reading alpha channel if present.

    height?: number

    The desired height of the output. When the width is no the same as the images, resampling will be performed.

    interleave?: boolean

    whether the data shall be read in one single array or separate arrays.

    pool?: Pool | null

    The optional decoder pool to use.

    resampleMethod?: string

    The desired resampling method.

    signal?: AbortSignal

    An AbortSignal that may be signalled if the request is to be aborted

    width?: number

    The desired width of the output. When the width is no the same as the images, resampling will be performed.

    window?: number[]

    the subset to read data from in pixels. Whole window if not specified.