aboutsummaryrefslogtreecommitdiffstats
path: root/src/layerdata/colorbalance.coffee
blob: 1b6251555e2f31f0a75b49cff1e7072498842040 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class PSDColorBalance
  constructor: (@layer, @length) ->
    @file = @layer.file
    @data =
      cyanRed: []
      magentaGreen: []
      yellowBlue: []

  parse: ->
    for i in [0...3]
      @data.cyanRed.push @file.getShortInt()
      @data.magentaGreen.push @file.getShortInt()
      @data.yellowBlue.push @file.getShortInt()

    @data