Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~212 People Reached
Favorite Forums
Favorite Tags
Member Avatar for seamus.boyle

I'm trying trying to use the Image.composite() function with the code below: [code=python] import Image im1 = Image.open("GetGif1.png") im2 = Image.open("GetGif2.png") im3 = Image.composite('im1','im2',"L") im.save('output.png') [/code] But I get this error: [code] Traceback (most recent call last): File "composite_images.py", line 11, in <module> im3 = Image.composite('im1','im2',"L") File "/usr/lib/python2.5/site-packages/PIL/Image.py", line 1960, …

Member Avatar for seamus.boyle
0
212