I am creating a node-webkit application. There is a module for it that allows executing imagemagick commands. So I am using the convert command to convert a PSD into PNG layers.
Problem is that a PSD with a large canvas (like 4000x4000) takes a very long time to convert and export each layer.
What ...
Search found 7 matches
- 2014-07-21T01:28:19-07:00
- Forum: Users
- Topic: Resize PSD first, then convert to PNG layers
- Replies: 1
- Views: 1944
- 2014-07-06T17:19:39-07:00
- Forum: Users
- Topic: PSD layers to PNG but same size for all layers
- Replies: 9
- Views: 9166
Re: PSD layers to PNG but same size for all layers
This method worked fine, thanks snibgo.
- 2014-07-06T15:20:24-07:00
- Forum: Users
- Topic: PSD layers to PNG but same size for all layers
- Replies: 9
- Views: 9166
Re: PSD layers to PNG but same size for all layers
Yeah, I do need the images in the relative positions. The result would be if I manually saved the layers from the PSD file as PNGS without any trim/crop.
- 2014-07-06T14:29:05-07:00
- Forum: Users
- Topic: PSD layers to PNG but same size for all layers
- Replies: 9
- Views: 9166
- 2014-07-06T14:13:23-07:00
- Forum: Users
- Topic: PSD layers to PNG but same size for all layers
- Replies: 9
- Views: 9166
Re: PSD layers to PNG but same size for all layers
Actually -gravity seems to bug certain images. I had a 600x600 animation through the layers and it seems that it just placed the entire animation at the corner.
I used,
convert.exe anim.psd -gravity NorthWest -dispose Background -extent 600x600 frame.png
No matter if I remove -gravity or not ...
I used,
convert.exe anim.psd -gravity NorthWest -dispose Background -extent 600x600 frame.png
No matter if I remove -gravity or not ...
- 2014-07-05T10:30:42-07:00
- Forum: Users
- Topic: PSD layers to PNG but same size for all layers
- Replies: 9
- Views: 9166
Re: PSD layers to PNG but same size for all layers
Thanks, this seems to work fine.
- 2014-07-05T09:06:38-07:00
- Forum: Users
- Topic: PSD layers to PNG but same size for all layers
- Replies: 9
- Views: 9166
PSD layers to PNG but same size for all layers
I am using ImageMagick via command line and I have a PSD file with 3 layers that I need to export each layer as a PNG file.
So I use,
convert.exe test.psd dispose Background test.png
This exports the layers but the problem is that the layers are not the same size . I need a way for all the ...
So I use,
convert.exe test.psd dispose Background test.png
This exports the layers but the problem is that the layers are not the same size . I need a way for all the ...