parse-cube-lut

1.0.1 • Public • Published

parse-cube-lut

Cube LUT (IRIDAS/Adobe) parser

Parses Cube LUT files as defined in the Adobe specification.

LUT files are useful for color grading, encapsulating complex color-space transforms or emulating film stock for photography and video.

Install

$ npm install parse-cube-lut

Usage

var parseCubeLUT = require('parse-cube-lut');
var fs = require('fs');
 
var buf = fs.readFileSync('fuji400h.cube');
var lut = parseCubeLUT(buf);
 
console.log(lut);
/*
{ title: 'Fuji 400H LUT',
  type: '3D',
  size: 25,
  domain: [ [ 0, 0, 0 ], [ 1, 1, 1 ] ],
  data: [
    [0, 0, 0],
    ...
  ]
}
*/

Package Sidebar

Install

npm i parse-cube-lut

Weekly Downloads

16

Version

1.0.1

License

MIT

Last publish

Collaborators

  • thibauts