Output format selection not obeyed
Posted: 2015-04-30T19:46:59-07:00
In RHEL6 ImageMagick version 6.5.4 this works:
convert -transparent black image.png png32:image.png
In RHEL7 ImageMagick version 6.7.8 the same no longer works, and you have to do two steps to accomplish the same effect:
convert -transparent black image.png image.png
convert image.png png32:image.png
In the RHEL7 version convert in our case convert produced a palette PNG despite the png32 selection.
convert -transparent black image.png png32:image.png
In RHEL7 ImageMagick version 6.7.8 the same no longer works, and you have to do two steps to accomplish the same effect:
convert -transparent black image.png image.png
convert image.png png32:image.png
In the RHEL7 version convert in our case convert produced a palette PNG despite the png32 selection.