I have a problem with python image processing.
- I have an image that is just a pattern.
- I have another image that will have a solid black line somewhere on it.
- I would like to replace the solid black line with the pattern.
I have looked at PIL
and I have not been able to figure out how to do this, since it seems like the only way I can get the pattern out of the first image is to copy the image, and I can't figure out how to paste over only the black pixels.
Someone also recommended pythonmagick
to me, but it doesn't have docs.