blob: 4e6abc7148581a241cb962eef08cb0f5359dcb94 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class PSDBrightnessContrast
constructor: (@layer, @length) ->
@file = @layer.file
@data = {}
parse: ->
@data.brightness = @file.getShortInt()
@data.contrast = @file.getShortInt()
@data.meanValue = @file.getShortInt()
@data.labColor = @file.getShortInt()
@data
|