possible bug IM 7.0.8.46 -alpha deactivate/activate
Posted: 2019-05-23T07:48:16-07:00
From the porting guide:
Input:
IM 7.0.8.46
IM 6.9.10.46
But that does not work in IM 7.-alpha activate/deactivate
enables and disables the alpha channel, respectively, with persistence. This is like on/off in Imagemagick 6. In Imagemagick 7, -alpha off will remove the alpha channel permanently such that -alpha on will not re-enable it.
Input:
IM 7.0.8.46
Code: Select all
magick text.png -alpha deactivate -blur 0x6 -shade 135x5 -alpha activate -normalize +level 30% shaded7.png
IM 6.9.10.46
Code: Select all
convert text.png -alpha off -blur 0x6 -shade 135x5 -alpha on -normalize +level 30% shaded6.png