Error When Creating Gif Using Images2gif.py
I'm trying to create a GIF file using images2fig.py from the visvis package With this very simple code: import glob from PIL import Image from visvis.vvmovie.images2gif import writ
Solution 1:
@korylprince I fixed the problem with the following two changes:
I uninstalled Python(x,y), installed Anaconda (32-bit), then installed visvis via pip.
Instead of PIL Image, now I use
imread(image)
, which load image into a numpy array.
On another computer I did not uninstall Python(x,y), instead I uninstalled Pillow 2.1.0
and installed PIL 1.1.7
, and also replaced the code same as step 2 above. In that way it worked with Python(x,y). So the problem is Pillow 2.1.0
.
Post a Comment for "Error When Creating Gif Using Images2gif.py"