aboutsummaryrefslogtreecommitdiffstats
path: root/src/layerdata/solidcolor.coffee
blob: d1144fd146b5b8abe8e3cf02f342f4bdadc09402 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# Photoshop 6.0
class PSDSolidColor
  constructor: (@layer, @length) ->
    @file = @layer.file

  parse: ->
    version = @file.readInt()
    assert version is 16

    # Just return the descriptor data
    (new PSDDescriptor(@file)).parse()