I have a model that has an ImageField. How can I manually assign an imagefile to it? I want it to treat it like any other uploaded file...

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

See the django docs for django.core.files.File

Where fd is an open file object:

model_instance.image_field.save('filename.jpeg', fd.read(), True)
link|improve this answer
It works! Thanks – Jack Ha May 9 '09 at 12:44
feedback

Your Answer

 
or
required, but never shown

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