I am using imagemagick to overlay one image over another with a blending option. I'd like to adjust the overlaying image opacity to about 60%. I would only like to adjust the foreground image, not the merged group. I Currently have:
exec("convert $img_in test_images/test_opacity.jpg -compose screen -composite $img_out");
And I'd like something like this:
exec("convert $img_in (test_images/test_opacity.jpg -opacity 0.6) -compose screen -composite $img_out");
Any help here would be much appreciated.