Search found 4 matches

by pepelaz
2018-08-08T21:33:40-07:00
Forum: Magick.NET
Topic: Convert PSD with 2 alpha channels to TIFF
Replies: 8
Views: 10769

Re: Convert PSD with 2 alpha channels to TIFF

Thanks a lot, this seems to be working!

Actually I'm using Magick.NET library (https://github.com/dlemstra/Magick.NET) to perform such conversion within .NET application. How can I translate with script to .NET code?
by pepelaz
2018-08-08T18:28:58-07:00
Forum: Magick.NET
Topic: Convert PSD with 2 alpha channels to TIFF
Replies: 8
Views: 10769

Re: Convert PSD with 2 alpha channels to TIFF

Well, thanks, indeed it is. After executing this command output tiff contains 2 images, like you describe. But that's not what I need. I don't need multipage tiff, but instead I need one page tiff with alpha as separate channel in open in Photoshop. Can I achieve this using ImageMagick?
by pepelaz
2018-08-08T08:05:33-07:00
Forum: Magick.NET
Topic: Convert PSD with 2 alpha channels to TIFF
Replies: 8
Views: 10769

Re: Convert PSD with 2 alpha channels to TIFF

snibgo wrote: 2018-08-08T06:30:48-07:00 Currently, IM can recognise and process only one alpha channel.
Thanks for response. But is there a way to make this one alpha channel to look in Photoshop as separated channel, not merged into CMYK channels?
And will multiple alpha channels will be supported in the future?
by pepelaz
2018-08-08T03:10:38-07:00
Forum: Magick.NET
Topic: Convert PSD with 2 alpha channels to TIFF
Replies: 8
Views: 10769

Convert PSD with 2 alpha channels to TIFF

Hi All, I have some input.psd file containing 2 alpha channels within it. This is how it looks when open in Photoshop https://www.dropbox.com/s/8f2bwcwvwn6jxer/1.png?dl=0 It has 2 alpha channels - Spot1 and Spot2 I use the following command to covert it to tiff: magick convert input.psd output.tiff ...