interface GetImageOptions {
    createReadableTextures: boolean;
    extent: Extent;
    height: number;
    id: string;
    signal?: AbortSignal;
    width: number;
}

Properties

createReadableTextures: boolean

If true, the generated textures must be readable (i.e DataTextures).

extent: Extent

The extent of the request area.

height: number

The pixel height of the request area.

id: string

The identifier of the node that emitted the request.

signal?: AbortSignal

The optional abort signal.

width: number

The pixel width of the request area.