Function compressRGBColors

  • Compresses a flat array of floating-point RGB or RGBA colors into a Uint16Array.

    This function scales floating-point color values (0.0 to 1.0) to an 8-bit range (0-255), storing them in a Uint16Array for reduced memory usage.

    Parameters

    • colors: FloatArrayParam

      A flat array of floating-point color values (RGB or RGBA). Each color component should be in the range [0, 1].

    Returns Uint16Array<any>

    A compressed Uint16Array where each value represents a color channel (0-255).

    If input contains values outside the expected [0,1] range.

    const colors = new Float32Array([0.5, 0.2, 0.8, 1.0, 0.3, 0.6, 0.1, 1.0]);
    const compressed = compressRGBColors(colors);
    console.log(compressed); // Uint16Array([127, 51, 204, 255, 76, 153, 25, 255])