Interface CogWindowRequestExperimental

interface CogWindowRequest {
    bands?: readonly number[];
    height: number;
    sampling?: CogWindowSampling;
    width: number;
    x: number;
    y: number;
}

Properties

bands?: readonly number[]

One-based band indices. Omission means every inspected band.

height: number

Optional bounded decoder output. The native pixel window remains x/y/width/height; this contract lets an injected decoder select an advertised overview and return only the requested render-sized pixels.

width: number
x: number
y: number