aboutsummaryrefslogtreecommitdiffstats
path: root/src/layerdata/exposure.coffee
blob: 9516742027e0607cd75bd1fe3994ad4b5655eb3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class PSDExposure
  constructor: (@layer, @length) ->
    @file = @layer.file

  parse: ->
    version = @file.parseInt()
    assert version is 1

    exposure: @file.parseInt()
    offset: @file.parseInt()
    gamma: @file.parseInt()