I'm trying to use web2py slice to make images thumbnails:
The script worked fine with web2py 2.4.7. When upgraded to 2.7.4, I get this on image upload:
File "[path]/PIL/Image.py", line 37, in __getattr__
raise ImportError("The _imaging C module is not installed")
ImportError: The _imaging C module is not installed
I have PIL in my modules folder. I tried both import Image and from PIL import Image.
Both import Image and import _imaging commands work fine in python interpreter (no errors at all). So if the interpreter does not see an issue, why I'm having problems with the newest web2py?
Any suggestions are more than welcome.