gone
gone

Reputation: 4502

Convert psd to png giving via imagemagick giving garbage output

I'm trying to run convert over a psd to create a png per layer. Running

$ convert psdname.psd output.png 

creates the right number of pngs, but the content is totally garbled - like horizontal lines running across the screen

https://i.sstatic.net/xuQc7.jpg

I thought it might be a colorspace issue (the psd is in CMYK) but adding -colorspace doesn't do anything. I'm totally at a loss

Upvotes: 4

Views: 1514

Answers (1)

Janos Pasztor
Janos Pasztor

Reputation: 1275

Unfortunately PSD support in open source software has been marginal at best. Gimp can handle PSD files with layers pretty well, it can't work with nested layers though. You still might want to take a look at it since it's highly scriptable and may work for you.

Upvotes: 1

Related Questions