Well, I managed to get the image2gif recognized by TD by puting it in bin/lib .
But image2gif use PIL Library to work, and I can’t get it installed…
When I launch the .exe from this link : lfd.uci.edu/~gohlke/pythonlibs/ the installer tell me that no python install were found and I can browse to chose the install folder…
So far this is what I have:
[code]from images2gif import writeGif
import sys
mypath = “C:\Program Files\Derivative\TouchDesigner088\bin\Lib\Pillow-2.5.3\PIL”
if mypath not in sys.path:
sys.path.append(mypath)
from PIL import Image
import os[/code]
I’m getting headache on it, every help would be much apreciated
We have had PIL importing easily through this method.
It also keeps your TouchDesigner installation clean.
Adding files to bin/lib causes issues between the operating system and installer we find.