vote up 0 vote down star

Hi, i am trying to do something with the PIL Image library in django, but i experience some problems.

I do like this:

import Image

And then I do like this

images = map(Image.open, glob.glob(os.path.join(dirpath, '*.thumb.jpg')))

But when i try to run this i get an error and it leeds me to think that its not imported correctly, anybody know?

type object 'Image' has no attribute 'open'

flag

70% accept rate

2 Answers

vote up 1 vote down check

The error above happens because your file is called Image.py and you're trying to import yourself. As Manual pointed out, you should import Image from the PIL module, but you'd also need to rename your file so it's not called Image.py.

link|flag
Aha, my file isnt called Image.py but Ive got a django Model in the file wich is called Image, that is proporbly the reason, i'll have to try that thanks. – Espen Christensen Dec 5 '08 at 20:02
Works great, I just put my function in an external file and imported it in. Thanks. – Espen Christensen Dec 5 '08 at 20:06
vote up 0 vote down

Your example works fine in my machine. I don't know why you're getting that error. PIL documentation say you have to import the library in this way:

from PIL import Image

You should try that way. As I said, for me works in both ways.

link|flag

Your Answer

Get an OpenID
or

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