Tagged Questions
The django-imagefield tag has no wiki summary.
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 ...
10
votes
5answers
4k views
Django: When saving, how can you check if a field has changed?
In my model I have :
class Alias(MyBaseModel):
remote_image = models.URLField(max_length=500, null=True, help_text="A URL that is downloaded and cached for the image. Only
used when the alias is ...
4
votes
2answers
217 views
How to bind an image to an edit form in Django?
I have the following Model:
class Listing(models.Model):
name = models.CharField(max_length=50, verbose_name="Title")
images = models.ManyToManyField('Image')
, with the ManyToManyField ...
3
votes
4answers
1k views
Dynamic File Path in Django
I'm trying to generate dynamic file paths in django. I want to make a file system like this:
-- user_12
--- photo_1
--- photo_2
--- user_ 13
---- photo_1
I found a related question ...
3
votes
1answer
89 views
Django: Lowercasing filename of the input Image File
I have a model:
class Foo(models.Model):
poster = models.ImageField(u"Poster", upload_to='img')
I'm using the admin to upload posters and save Foo objects. I now need to find a way to lowercase ...
3
votes
3answers
567 views
Django: Password protect photo url's?
From my Django application I want to serve up secure photos. The photos are not for public consumption, I only want logged in users to have the ability to view them. I don't want to rely on ...
2
votes
4answers
59 views
Django store user image in model
I'm trying to create a field in a model, that should store an image for a registered user.
This image should be renamed and stored in a separate user directory like media/users/10/photo.jpeg.
I've ...
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
113 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
243 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 = ...
2
votes
1answer
971 views
Django ImageField issue with JPEG's
I am having a major issue with PIL (Python Image Library) in Django and have jumpped through a lot of hoops and have thus far not been able to figure out what the root of the issue is.
The problem ...
2
votes
1answer
684 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 ...
2
votes
1answer
274 views
How do i migrate a model containing an ImageField from django-imagekit using django-south?
I find this documentation extremely confusing:
http://south.aeracode.org/docs/customfields.html
If someone could walk me through this or at least give a full example, I would be very grateful.
1
vote
1answer
46 views
Django ModelForm not handling files correctly
I have a very basic model with an ImageField on it, and a ModelForm for uploading that image. My form is failing, saying that my image is not valid, but if I instantiate the model's image directly ...
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
31 views
Django admin - importing images to the text
I've pasted below small part of my models class. It's a class for publishing entries (articles, blog posts etc.). On most websites news images are pasted below the text of message.
Is it possible to ...
1
vote
1answer
95 views
Django cropper - getting additional resized images from cropped image
I have problem with getting additional resized images from croped image. I am using django-cropper 0.1.
Originally model for Cropped Image have part of code like this:
class Cropped(models.Model):
...
1
vote
2answers
332 views
Django ImageField validation (is it sufficient)?
I have a lot of user uploaded content and I want to validate that uploaded image files are not, in fact, malicious scripts. In the Django documentation, it states that ImageField:
"Inherits all ...
1
vote
2answers
754 views
How do I get Django Admin to delete files when I remove an object from the database/model?
I am using 1.2.5 with a standard ImageField and using the built-in storage backend. Files upload fine but when I remove an entry from admin the actual file on the server does not delete.
1
vote
2answers
886 views
django ImageField - how to customise name + remove old file
I have a model with an ImageField in it. I've already set the upload_to and created my own FileSystemStorage class to deal with saving the file with a unique name... however...
This setup allows me ...
1
vote
2answers
452 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
751 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 ...
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
68 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
Django Forms uploading image - form data works except for image
I'm trying to get uploading working with Django. I don't get an error when I try to upload it, and the new Item is saved, but there is no image. The other form data is all there. I've been googling ...
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
92 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
2answers
47 views
Django - Changing file name on ImageField
I have read other questions on this topic but none that actually answers my question.
I let users upload pictures when they submit a certain item to the site. Every user can submit multiple items, ...
0
votes
0answers
59 views
Modify FileField's upload_to path based on model inheritance
I have a generic 'annotation' model that looks similar to this:
class ObjectAnnotation(models.Model):
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
...
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
79 views
django imagefield.save NoneType is not subscriptable
I'm making a model called Image that has a method to save another version of itself with a different size. But i cant get the ImageField in the new version to accept the saved image file. it fails on ...
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
2answers
103 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
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
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
0answers
38 views
Django form enctype append in view
Is there any way to append enctype=multipart/form-data to form in view? Reason is that i massive import documents from xml file, which contains link to image. In view I have such code
post_data = ...
0
votes
1answer
171 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
0answers
97 views
django - data not validating after image field added to model form
I'm new to django and I've run into a bit of a problem. I just added am image field to a model form but when I try to upload an image using the form, it gives me the following error saying that the ...
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
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
240 views
Relative url mapping for images in django imagefield
I am using imagefield to render images. These are the urls;
(r'^site_media/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': site_media}),
(r'^$', ...
0
votes
2answers
45 views
Djangothumbnails app issue
I an using this plugin to generate thumbnails. But somhow I couldn't make it work. The models work well, as images can be uploaded from the admin interface, even thumbnails get generated. I uploaded ...
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
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
2answers
81 views
Trying to filter image by category in Django
I am trying to filter an image through a category. It works but not the way I want it to. Here are how my models are setup:
class Image(models.Model):
CATEGORY_CHOICES = (
('Cover', 'Cover'), ...
0
votes
2answers
182 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 ...