[RESOLVED] possible bug -compose copy_opacity IM 6.9.3.3 Q16 Mac OSX
Posted: 2016-02-08T20:50:20-07:00
.
I seem to get different results from the following two command lines. I do not understand why the second shows any transparency (faint checkerboard pattern). Perhaps I misunderstand what it should produce. But I expected the two results to be the same. Is this a bug or have I made some error in the command line or my understanding of what to expect?
I seem to get different results from the following two command lines. I do not understand why the second shows any transparency (faint checkerboard pattern). Perhaps I misunderstand what it should produce. But I expected the two results to be the same. Is this a bug or have I made some error in the command line or my understanding of what to expect?
Code: Select all
convert \( logo: -channel a -evaluate set 50% +channel \) +duplicate -compose over -composite logo_blend1.png
display logo_blend1.png
Code: Select all
convert logo: \( -clone 0 -fill "gray(50%)" -colorize 100% \) \
-alpha off -compose copy_opacity -composite +duplicate -compose over -composite logo_blend2.png
display logo_blend2.png