Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
The following fails using 2.tif as input because it is bilevel and forces the output to be bilevel including where the color overlay image, label1.gif, is placed. I have tried adding -set colorspace sRGB, -colorspace sRGB and -type truecolor right after the input images. (The latter makes the resulting image totally black)
Add -depth 8 -compress zip to your command line. The TIFF image has a depth of 1 and a compression of Group4Compression. That is carried forward to the output image. The depth and compress options override these settings to produce the image you expect.
Hi there - This solution doesn't work for multi-page TIFFs as it just layers all the pages on top of each other and seems to not add the label. Any ideas? I've tried adding +adjoin but didn't make any difference..
-composite only works with two images. Your tiff has several layers which are considered by IM as separate input images. So you need to use -layers composite as follows setting the alpha channel of the overlay (gif) image to 80% or whatever you want.