HDRImageData contains all decompressed image data.

interface HDRImageData {
    width: number;
    height: number;
    exposure: number;
    gamma: number;
    data: Float32Array;
}

Properties

width: number

Width of the HDR image

height: number

Height of the HDR image

exposure: number

Exposure of the HDR image

gamma: number

Gamma of the HDR image

data: Float32Array

Float32Array holding the HDR image data