- Install libpng
sudo apt-get install libpng12-dev
- Install nodejs from source by downloading from nodejs website (http://nodejs.org/download/)
- Install npm
curl -k https://npmjs.org/install.sh | bash
- Install coffeescript
curl -k https://npmjs.org/install.sh | bash
- Do a npm install (npm install = bundle install, package.json = Gemfile)
npm install
- Do a cake build in the psd.js folder
cake build
- Done!
A Photoshop file format (PSD) parser written in Coffeescript/Javascript for both browsers and NodeJS implementations.
This implementation is inspired by, and in some parts directly ported, from:
Please note!
The PSD file format is complex, buggy, hacky, and poorly documented. Because of this, psd.js may or may not be able to correctly parse every PSD you throw at it. Use with caution.
If you would like to contribute to psd.js, you can refer to the official PSD file format specifications for basic help.
These dependencies are only required if you are making changes to the psd.js source. If you are simply using psd.js, there is no need to install them.
In the psd.js folder, run:
npm install -d
And all of the dependencies will be installed for you automatically using npm.
psd.js comes with a handy Cakefile to build the library for you. It first searches for all dependencies in the deps/
folder, then adds the core library afterwards in the order speciifed in the Cakefile.
To build, simply run cake build
. If you would like the library to automatically build after any source files are saved, you can run cake watch
.
Please run all of the tests before committing any code as well using cake test
.
There are two main things you can do with psd.js: parse information and export images.
psd.js is available in npm. Simply run:
npm install psd
Alternatively, download and use the lib/psd.js
file from this repository.
In order to load a PSD into psd.js, you have to give it the byte data in a Uint8Array buffer. psd.js has some helper methods for you to make your life easier.
# If you're in NodeJS, use this:
psd = PSD.fromFile 'path/to/file.psd'
# or if you're in the browser, you can do:
psd = PSD.fromURL 'path/to/file.psd', (psd) ->
console.log 'PSD loaded!'
# If you already have the byte data from other means, simply do:
psd = new PSD(bytes)
You can parse the PSD file for valuable information such as: image size, color channels, layer and mask information, etc.
{PSD} = require 'psd'
psd = PSD.fromFile __dirname + '/test.psd'
psd.parse()
# Extract info to a friendly JSON format
info = psd.toJSON()
console.log "Header", info.header
console.log "Resources", info.resources
console.log "Layers", info.layerMask.layers
By default, psd.js will not parse/format individual layer image data. If you're working with large files, you will probably want to leave this disabled this for the time being as you may find your node.js process running out of memory for allocation.
To enable layer image parsing, do:
psd = PSD.fromFile __dirname + '/test.psd'
psd.setOptions
layerImages: true # Should we parse layer image data?
onlyVisibleLayers: true # Should we only parse layer images that are visible?
psd.parse()
You can easily export a merged/flattened version of the PSD image either to file (NodeJS) or canvas (browser).
{PSD} = require 'psd'
psd = PSD.fromFile __dirname + '/test.psd'
# In node (async)
psd.toFile __dirname + '/output.png', ->
console.log "PSD flattened to output.png"
# In node (sync)
psd.toFileSync __dirname + '/output.png'
# In browser...
canvas = document.getElementById('psd-output')
psd.toCanvas(canvas)
# Get raw pixel data
pixels = canvas.image.toCanvasPixels()
To export individual layers, access the image object for each layer:
{PSD} = require 'psd'
psd = PSD.fromFile __dirname + '/test.psd'
psd.setOptions layerImages: true
psd.parse()
for layer in psd.layers
continue if layer.isFolder
do (layer) ->
layer.image.toFile __dirname + "/output/#{layer.name}.png", ->
console.log "Layer #{layer.name} output to file."
See the examples/
folder and the wiki for some handy code snippets.