blob: 23d7abad16581aa3e8465125cd0a81a79758894e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
class PSDSelectiveColor
constructor: (@layer, @length) ->
@file = @layer.file
@data =
cyanCorrection: []
magentaCorrection: []
yellowCorrection: []
blackCorrection: []
parse: ->
version = @file.getShortInt()
assert version is 1
# 0 = relative mode, 1 = absolute mode
@data.correctionMethod = @file.getShortInt()
# Ten 8 byte plate correction records
# First record is ignored and reserved for future use
# Rest of the records apply to specific areas of color or lightness
# values in the image, in the order: reds, yellows, greens, cyans,
# blues, magentas, whites, neutrals, blacks.
for i in [0...10]
@data.cyanCorrection.push @file.getShortInt()
@data.magentaCorrection.push @file.getShortInt()
@data.yellowCorrection.push @file.getShortInt()
@data.blackCorrection.push @file.getShortInt()
@data
|