Page 1 of 1
How to create multilayed psd file..................? ♣Urgent
Posted: 2008-06-05T05:55:45-07:00
by shamsh
How to create a multi layered psd file from a set of jpg image?
Thanx!
Re: How to create multilayed psd file..................? ♣Urgent
Posted: 2008-06-05T16:46:00-07:00
by anthony
Image Magick as enough problems just reading multi-layered psd images, let alone creating them. All I can suggest is try, starting simply, and report bugs and things as you find them.
Or better still try and submit patches to the coder.
IM is only as good as the effort people decide to put into it and patches and improvements are always welcome.
Re: How to create multilayed psd file..................? ♣Urgent
Posted: 2008-06-05T21:03:21-07:00
by shamsh
Is it possible to create a multi layer tiff file from a set of jpg images.
*It can be using either command line or any kind of programming.
Thanx!
Re: How to create multilayed psd file..................? ♣Urgent
Posted: 2008-06-05T21:10:38-07:00
by fmw42
try
convert image1.jpg image2.jpg image3.jpg ... imageN.jpg image.tiff
Re: How to create multilayed psd file..................? ♣Urgent
Posted: 2008-06-05T21:15:07-07:00
by shamsh
I know that but it makes a tiff of single layer.
Re: How to create multilayed psd file..................? ♣Urgent
Posted: 2008-06-05T21:51:03-07:00
by fmw42
It makes a multi-frame tiff.
convert rose: rose: rose: rose.tiff
identify rose.tiff
rose.tiff[0] TIFF 70x46 70x46+0+0 8-bit TrueColor DirectClass 29.3086kb
rose.tiff[1] TIFF 70x46 70x46+0+0 8-bit TrueColor DirectClass 29.3086kb
rose.tiff[2] TIFF 70x46 70x46+0+0 8-bit TrueColor DirectClass 29.3086kb
What do you mean by multi-layer? IM does not make layers as in Photoshop to my knowledge.
To overlays image you need to use the composite or the convert -compose ... -composite commands. But then they get flattened together into one frame. You can use transparency in doing the composites.
See
http://www.imagemagick.org/Usage/compose/