Code: Select all
$ convert -version
Version: ImageMagick 6.8.9-0 Q8 x86_64 2014-04-30 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2014 ImageMagick Studio LLC
Features: DPC Modules OpenMP
$ convert test.psd[0] -format "width=%w height=%h transparent=%A colorspace=%[colorspace]" info:
width=1128 height=994 transparent=False colorspace=sRGB
$ identify -verbose test.psd[0]
Transparent color: black
Code: Select all
$ convert -version
Version: ImageMagick 6.7.7-10 2014-03-06 Q16 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2012 ImageMagick Studio LLC
Features: OpenMP
$ convert test.psd[0] -format "width=%w height=%h transparent=%A colorspace=%[colorspace]" info:
width=1128 height=994 transparent=True colorspace=sRGB
$ identify -verbose test.psd[0]
Transparent color: none
http://sta.sh/01u41zwkjp8e
http://sta.sh/065xxj5jjnp
(additionally you can see the issue in question in those preview png, with the background as black instead of transparent)
Is this is a known issue, or is there any workaround ?