Is there a way to do the same to just colorize an image (so that 0% in the B/W image becomes 0% and 100% Black become just the color (without black). This would be the same effect as "Screen" in Adobe Photoshop.
There's a screen implementation in the ImageChops module. Something like ImageChops.screen(im, Image.new(im.mode, im.size, color)) might do what you want (where im is the source image, and color is a RGB tuple or specifier).
Is there a way to do the same to just colorize an image (so that 0% in the B/W image becomes 0% and 100% Black become just the color (without black). This would be the same effect as "Screen" in Adobe Photoshop.
There's a screen implementation in the ImageChops module. Something like ImageChops.screen(im, Image.new(im.mode, im.size, color)) might do what you want (where im is the source image, and color is a RGB tuple or specifier).