[Image-SIG] New to PIL routines

Fredrik Lundh fredrik@pythonware.com
Thu, 14 Jun 2001 13:35:12 +0200


larry wrote:
> file1="c:\\temp\\DollarBill.jpg"
> file2="c:\\temp\\revenue001.jpg"
> im=Image.blend(file1,file2,0.5)
> im.save("c:\\temp\\blend.jpg")

blend expects image objects, not strings.  use Image.open
to open the images, and it will work as expected.

hope this helps!

Cheers /F