Skip to content

hughsk/lut

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lut

Lookup Table

Renders RGB lookup tables to a canvas element.

Installation

npm install lut

Usage

lut(red, green, blue, canvas)

var lut = require('lut')
  , canvas = document.createElement('canvas')

// Defaults to 32x32x32, creating a new canvas element:
document.body.appendChild(lut())

// But you can render on top of an existing canvas,
// and specify the resolution (number of shades) for
// each colour too:
document.body.appendChild(canvas)
lut(64, 8, 128, canvas)

About

Render RGB lookup tables to a canvas element

Resources

License

Stars

Watchers

Forks

Packages

No packages published