Tagged Questions

11
votes
3answers
5k views

Django: add image in an ImageField from image url

please excuse me for my ugly english ;-) Imagine this very simple model : class Photo(models.Model): image = models.ImageField('Label', upload_to='path/') I would like to create a Photo from ...
2
votes
1answer
87 views

CharField filenames into ImageFields in Django

I have a model: class Photo(models.Model): filename = models.CharField(max_length=240) And a corresponding MySQL table, filled with filenames (copied from an existing table). In the future I ...
2
votes
3answers
111 views

Best app for avatar / profile images on Django

In my application I have a model called Product. Every time a user adds new product should be upload a profile image for that product. On the web there's a lot of django app for managing ...
2
votes
1answer
680 views

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

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 ...
1
vote
2answers
450 views

Django ImageField upload from URL

I have a question, i've got an ImageField in my model, i wanna upload this image from url example http://www.google.com/images/logos/ps_logo2.png, how can I do that ? Thanks !
1
vote
2answers
748 views

Django admin: Add a “remove file” field for Image- or FileFields

I was hunting around the Internet for a way to easily allow users to blank out imagefield/filefields they have set in the admin. I found this: http://www.djangosnippets.org/snippets/894/. What was ...
1
vote
2answers
2k views

Getting invalid image error in Django, but PIL is installed and passes all tests

So I've finally successfully installed PIL (after many difficulties) on RHEL5 with Django (development version) and Python 2.6 installed at /opt/python2.6. Running selftest.py shows that everything ...
0
votes
2answers
67 views

How to get content of Django ImageField before it is saved?

I'm trying to resize an image while saving an instance of my model. class Picture(models.Model): image_file = models.ImageField(upload_to="pictures") thumb_file = ...
0
votes
1answer
35 views

How can I filter the imagefield by filename in django

I add a ImageField in my model like class UserImage(models.Model): photo = models.ImageField(upload_to='target_path') .... after I save an image, let's say 'a.jpg', then I want user the ...
0
votes
3answers
91 views

Django - Upload a valid image

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. ...
0
votes
1answer
73 views

Copy the contents of an ImageField to a new file path in Django

I have a Django model object that has a few normal attributes, and it has a ImageField for the logo. I want to write a method that'll copy this object to a new object. It's easy enough to instanciate ...
0
votes
2answers
100 views

Serializing an ImageField in Django

I'm trying to serialize one of my models which has an ImageField. The inbuilt serializer can't seem to serialize this and therefore I thought of writing a custom serializer. Could you tell me how I ...
0
votes
1answer
57 views

Creating a dynamic path when I upload images

I'm trying to create a dynamic path for when my users upload images. It works something like this: View: photo = Photo(...) photo.save() photo.original.save(filename, content) Model: album = ...
0
votes
1answer
170 views

Django easy-thumbnails MAX SIZE

is there a way to set a max size for the images uploaded in my django app using easy-thumbnails app? In the settings list I don't see anything about it.
0
votes
1answer
101 views

loading a typical image to Django 1.3?

I have a very basic question about adding images to Django 1.3. I've almost read the whole documents on adding Static files , searched for relevant results and still have a problem with my case. ...
0
votes
3answers
48 views

How to implement image upload while creating a user directory if he doesn't have one in django?

I have two model in my profile that request image upload. One is just a market place where all the images can be together, i don't care, but the other is a photo gallery. I ready many ways to upload ...
0
votes
2answers
181 views

Can't seem to load images in Django?

This ought to be quite straight forward but I have a feeling one of the pathnames is screwing the whole thing up. Basically, my images are displaying as 404. Here are the relevant parts to my Django ...
0
votes
2answers
751 views

How can I created a PIL Image from an in-memory file?

More specifically, I want to change the filetype of an image uploaded through a Django ImageField. My current thinking is to created a custom ImageField and overwrite the save method to manipulate ...
0
votes
1answer
110 views

Images are not being stored?? - Django

These are my following settings: MEDIA_ROOT = '/home/webapps/test_project/media/' MEDIA_URL = 'http://192.168.0.2:8090/site_media/' ADMIN_MEDIA_PREFIX = '/media/' These are my model fields: large ...