How to create a multi layered psd file from a set of jpg image?
Thanx!
How to create multilayed psd file..................? ♣Urgent
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: How to create multilayed psd file..................? ♣Urgent
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.
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.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
Re: How to create multilayed psd file..................? ♣Urgent
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!
*It can be using either command line or any kind of programming.
Thanx!
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How to create multilayed psd file..................? ♣Urgent
try
convert image1.jpg image2.jpg image3.jpg ... imageN.jpg image.tiff
convert image1.jpg image2.jpg image3.jpg ... imageN.jpg image.tiff
Re: How to create multilayed psd file..................? ♣Urgent
I know that but it makes a tiff of single layer.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: How to create multilayed psd file..................? ♣Urgent
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/
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/