Reliability of psd to tiff conversation

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
DanielDD
Posts: 17
Joined: 2013-10-28T01:57:10-07:00
Authentication code: 6789

Reliability of psd to tiff conversation

Post by DanielDD »

Hallo,

how reliable is a converation like

Code: Select all

convert m.psd -layers merge -compress zip m.tif
Usually, m.psd is a complex document using several layers and smart filters.
Is the result m.tif the same as whether I export m.psd in Photoshop
to a single layer tif?

Daniel
Last edited by DanielDD on 2017-06-08T07:45:42-07:00, edited 1 time in total.
DanielDD
Posts: 17
Joined: 2013-10-28T01:57:10-07:00
Authentication code: 6789

Re: Reliability of psd to tiff conversation

Post by DanielDD »

I made some experiments and the answer is NO!
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Reliability of psd to tiff conversation

Post by fmw42 »

Generally the first psd layer is the flattened layer. So try

Code: Select all

convert image.psd[0] image.tif
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Reliability of psd to tiff conversation

Post by snibgo »

DanielDD wrote:... and smart filters.
I don't know what these are, but I expect IM ignores them.
snibgo's IM pages: im.snibgo.com
DanielDD
Posts: 17
Joined: 2013-10-28T01:57:10-07:00
Authentication code: 6789

Re: Reliability of psd to tiff conversation

Post by DanielDD »

fmw42's idea did not work.

As snibgo wrote, IM seems to ignore these filters.

Daniel
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Reliability of psd to tiff conversation

Post by fmw42 »

ImageMagick cannot handle smart filters or adjustment layers or group layers at this time. It is very limited in its handling of PSD files. There are some defines that can be used. See http://www.imagemagick.org/script/comma ... php#define. But I do not think they will help you in this case where you want to save to Tif.
Post Reply