I'm using Ubuntu, Django 1.3, Python 2.7.
When I try to upload certain types of image, I get this message:

Upload a valid image. The file you uploaded was either not an image or a corrupted image.

It's happening with PNG and JPG (the formats that I need).
tiff and gif (that I don't and will never care about) are working.

What can I do ?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

And don't forget about jpeg-lib! Without it PIL willn't understand with what format it can works.

link|improve this answer
Thank you, actually I simply installed PIL and it apparently installed all the needed libraries. – Pierre de LESPINAY Dec 20 '11 at 12:40
@Glide this applies only if you use apt/aptitude try with pip and you get no support for jpg/png/... :) – Tommaso Barbugli Dec 20 '11 at 12:44
1  
Did you install it from OS repos or from pyPi? Be careful. If you will try to install PIL from pypi you will get format-error. :) – SkyFox Dec 20 '11 at 12:47
Good point, I did it from the OS repo. – Pierre de LESPINAY Dec 20 '11 at 12:51
feedback

Install PIL for heaven's sake !

$ sudo apt-get install python-imaging

(for Ubuntu or other Debian distrib)

link|improve this answer
feedback

If you get this error and you've PIL installed on Ubuntu check that you've jpeg, freetype, zlib libraries installed.

I suggest you also to use apt/aptitude rather than pip/easy_install.

If you really want to install PIL with pip please notice that the PIL setup will not find your installed libraries (libjpg ...) because Ubuntu installs those libs

here -> /usr/lib/x86_64-linux-gnu for 64bit or here -> /usr/lib/x86_32-linux-gnu for 32bit

to fix this you can add this to the setup.py (of course you need to download a copy of PIL from here -> http://www.pythonware.com/products/pil/)

around line 200 (you should see other paths around there)

add_directory(library_dirs, "/usr/lib/x86_64-linux-gnu")
link|improve this answer
+1 This option can help others too – Pierre de LESPINAY Dec 23 '11 at 8:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.