Re: Image Field Issue

2011-10-23 Thread Swaroop Shankar V
Thanks Kurtis, I figured out that was the issue. I downloaded a copy of PIL from their official site. Installed the devel libraries for libjpeg and then did a setup.py install and now its fixed :) Regards, Swaroop Shankar V On Mon, Oct 24, 2011 at 11:32 AM, Kurtis Mullins wrote: > Django relie

Re: Image Field Issue

2011-10-23 Thread Kurtis Mullins
Django relies on Python Imagine Library to check if an image is valid or not. Make sure that PIL was compiled w/ the libjpeg. I'm not sure on exact directions on how to do that, but you can find them available online. When you compile PIL, it will tell you what extensions are supported or missing d

Re: Image Field Issue

2011-10-23 Thread Swaroop Shankar V
Hello All, An update to my previous question. The error occurs only if I try to upload jpeg images, other formats like gif, png do not have this issue. Please let me know if there is any extension that i need to install to support jpeg. Please note that mine is a linux machine (Opensuse 11.3). Than