Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
I have images of all countries in the world. They have exactly the same size and are transparent except for the area with the country. I colorize the countries and then merge the images together to get one image that retains the transparency.
We assume you're running under Linux. Do you have the latest release of ImageMagick, 6.9.1-10? Does it still reproduce the problem? If so, it may be a problem with libgomp, the OpenMP implementation. Try building ImageMagick without OpenMP support:
cd ImageMagick-6.9.1-10
./configure --disable-openmp
make install
Rerun your merge. Does the line appear anymore? If so, it could be that some of your images are not fully transparent. If you blend two images that are not fully transparent, a line could appear.
Thanks for the quick answer! Yes, I'm running Ubuntu Server 14.04 and ImageMagick version 6.9.1-6. I tried the merge command several times with the same images and the black line was only in some of the output files, so I can rule out the images as error source.
I'll try installing the latest version with the configuration you suggested.
Before we could comment further, we would need to reproduce the problem so we can trace it. Post a URL to your images and the command set needed to reproduce the problem. Its likely a data driven problem rather than a bug but unless we can reproduce the problem, we can't say for sure.
I was also using memory and map limits and set them lower than the defaults. It seems that was the cause of this. I removed the limits and haven't seen this problem again.