Tagged Questions

12
votes
1answer
4k views

Django Imagefield not working properly via ModelForm

I'm certain I'm doing something really obviously stupid, but I've been trying to figure it out for a few hours now and nothing is jumping out at me. I'm using a ModelForm so I can expose a few fields ...
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
242 views

Django Form and Image Upload on same page

I'm trying to figure out how to upload an image and get user input on a single form. My models: class Image(models.Model): artist = models.ForeignKey('Artist') image = ...
1
vote
1answer
61 views

Django ImageField: how to make upload_to parameter dependent on self.id?

Supose there is a site with 1 million users, and they all have at least one profile image (maybe more). I'm not sure, but I think that storing all that images in one folder is not very smart (in ...
1
vote
2answers
117 views

How to resize the new uploaded images using PIL before saving?

I want to resize the new images in a height and width of 800px and save them. And the app mustn't store the real image. Any help? This is my code, it saves the original image and don't the resized ...
1
vote
2answers
451 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
1answer
782 views

Optional ImageField (Django)

I'm having a problem with an ImageField in one of my models. It is set to blank=True, null=True (it is optional.) When I loop through a list of objects and use object.thumbnail.url, I get "Caught an ...
0
votes
2answers
31 views

How can i take image_width and image_height from resized image, and save them?

If i want image_width and image_height for instances of Original to be taken from ResizedImageField, how can i do that? class Original(models.Model): image = ResizedImageField( ...
0
votes
1answer
74 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
0answers
28 views

Django. How to stop ImageField from appending upload_to path to image field in database?

I have been looking for a solution on this website and many others but could not find exactly what I was looking for, including django documentation. My model is: class Product(models.Model): ...
0
votes
1answer
163 views

Getting username in ImageField upload_to path

I would like to include the username in my upload_to directory path for when a user uploads an image. Here is what I currently have -- #model class Avatar(models.Model): avatar = ...
0
votes
1answer
125 views

Pathname to the image field in Django

I have this model which has Image field to be uploaded. It has a foreign key reference to another class. from django.template.defaultfilters import slugify def upload_to(path, attribute): def ...
0
votes
2answers
214 views

TemplateSyntaxError while uploading image using Django Admin

I tried the example enter link description here but unfortunately I am failing all the time. The model is: from django.db import models from django.contrib import admin class ...
0
votes
1answer
173 views

django - update images with ImageKit

On my project I'm using the ImageKit example provided at github: click here I would like to be able to update the picture files if a picture for a specific user already exists (like the avatar) and ...