Decoded Radiance file as linear-space Float32 RGBA pixels.

interface HDRImage {
    data: Float32Array<any>;
    height: number;
    width: number;
}

Properties

Properties

data: Float32Array<any>

Row-major RGBA, top-down, alpha pinned to 1.0.

height: number
width: number