IM 6->7 Transparency changes??
Posted: 2016-12-18T15:16:03-07:00
Hello,
I've updated my IM to the lastest 7.04 from an earlier 6.9.x (Q16-x64 Win10)
I use a IM script to resize my pictures, as following:
where $file is my source file, $resize is the target resolution, $s is the target filename, $signatureFile and headline.png are generated pictures from the metadata. These 2 picts are transparent (using alpha channel) and thus attached with transparency to my target file.
This line used to work perfectly with IM 6.x, but with the recent 7.0.4, the signature and headline are not transparent anymore in the target.
Did some of these options changed in v7? Or it is a bug?
I've updated my IM to the lastest 7.04 from an earlier 6.9.x (Q16-x64 Win10)
I use a IM script to resize my pictures, as following:
Code: Select all
convert $file -filter Lanczos -resize $resize -format JPEG -quality 85 -gravity SouthEast $signatureFile -compose atop -geometry +0+0 -channel A -evaluate Divide 2 -composite -gravity NorthWest headline.png -compose atop -geometry +0+0 -composite $s
This line used to work perfectly with IM 6.x, but with the recent 7.0.4, the signature and headline are not transparent anymore in the target.
Did some of these options changed in v7? Or it is a bug?