Running IM 7.0.5-5 HDRI on Windows 10 64. I've been using the "
-combine" operation almost daily for years. The 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
The output should be an exact reproduction of the original input. Instead what I get is this semi-transparent grayscale image...
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
And that is even mentioned in the usage discussion
at THIS link. But I've generated literally tens of thousands of images using "-combine" without ever needing a colorspace specifier, and suddenly the behavior has changed. Does anyone know if this is a recent bug, or if it's going to be what we should expect from the default use of "-combine"?