PSD from multiple files
Posted: 2018-11-02T16:14:22-07:00
Hi Everyone,
I am new to Magick.NET. I am trying to create a layered PSD file but not sure what level of control is available for PSD creation.
The code below creates a layered PSD, but I am wondering and what I need is a way to control more detail of the PSD file like layer names, creating layer groups, layer properties etc.
collection = ImageMagick.MagickImageCollection()
collection.Add (r"E:\\A.jpg")
collection.Add (r"E:\B.jpg")
collection.Write(r"E:\\AB.psd")
With the above, layers are just named L1,L2...
Any hints would be much appreciated!
thanks
I am new to Magick.NET. I am trying to create a layered PSD file but not sure what level of control is available for PSD creation.
The code below creates a layered PSD, but I am wondering and what I need is a way to control more detail of the PSD file like layer names, creating layer groups, layer properties etc.
collection = ImageMagick.MagickImageCollection()
collection.Add (r"E:\\A.jpg")
collection.Add (r"E:\B.jpg")
collection.Write(r"E:\\AB.psd")
With the above, layers are just named L1,L2...
Any hints would be much appreciated!
thanks