----------
Running IM 7.0.5-5 HDRI on Windows 10 64. The "-combine" example found at THIS link has always worked for me until this most recent release 7.0.5-5. If I start with this image as input...
Then I run it through these two commands from the example page...
Code: Select all
magick input.png -channel RGB -separate input-%d.png
magick input-0.png input-1.png input-2.png -channel RGB -combine output.png
I've found that I can make the separated images reassemble properly by adding a "-colorspace sRGB" before "-combine" like this...
Code: Select all
magick input-0.png input-1.png input-2.png -channel RGB -colorspace sRGB -combine output.png