Django: manually create imagefield in model from existing file on server

Timmy O'Mahony picture Timmy O'Mahony · Nov 23, 2010 · Viewed 20.7k times · Source

This is killing me!

I'm using django-filebrowser, and I want to create a gallery app that leverages it's upload capabilities to manage images.

I have a Gallery model that allows the user to select or create a directory on the server, and upload files to that folder to appear in the gallery. I want to automatically trawl the directory that the user has uploaded images to and selected, and then automatically create Image instances for each image in the folder.

class Gallery(model.Models):
    gallerydirectory = FileBrowserField(...)
    title = ...
    description ...

class Image(model.Models):
    image_field = models.ImageField()

The problem is that FileBrowser represents images differently to Django, but I want to use DJango ImageFields as I can then use other apps (sorl thumbnails) on the template end.

I have all the data necessary for the file i.e. filename, path etc, I just can't get Django to create an instance of an ImageField, without actually uploading the image again. I simply want to populate it.

I have seen another thread here which suggests the following:

for image in filebrowser_image_objects_list:
    f = File(open('path-to-file-on-server','r'))
    i = Image()
    i.image_field('filename.png',f.read())

but this is giving me a:

SuspiciousOperation error
Attempted access to '/filename.png' denied 

which suggests that the path isn't being read correctly. I've printed the attributes of the File Object, and it is opening the correct image, it just isn't getting passed on to the ImageField

Help would be greately appreciated!

UPDATE

I've given up trying to get this work as it's just too messy. The problem I had above was that I had set the upload_field of the ImageField to '/' and it had gone unnoticed meaning that the file was being written to '/something.png'.

I've modified it so that the Image is now using a FileBrowserField as well instead of an ImageField.

Answer

Timmy O'Mahony picture Timmy O'Mahony · Nov 1, 2011

I'm marking this as answered, as this is the correct way to do this:

from django.core.files import File

image_model.image_field('path', File().read())

Programmatically saving image to Django ImageField