Tagged Questions

3
votes
2answers
2k views

Integrating Photologue

I want to integrate photologue with my Django app and use it to display photos in a vehicle inventory...kinda like what is offered by Boost Motor Group Inc. I've already integrated the app so the ...
2
votes
2answers
721 views

Caught DoesNotExist while rendering: Photo matching query does not exist

When I do the following inside an admin file: photo = Photo.objects.get(original_image__exact=file_name) val = photo.admin_thumbnail.url I get this error: Caught DoesNotExist while rendering: ...
2
votes
1answer
279 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.
2
votes
1answer
605 views

DJANGO ImageKit Functionality

I'm putting together a very basic time-lapse sequence of images (about 120 images total). I've installed imagekit, adjusted the specs.py file to my needs, populated the database with "pointers", ...
1
vote
1answer
56 views

Django imagekit and dynamic paths

I'm using imagekit provided at: imagekit So, I've defined two class model: class Photo(models.Model): #photo_wrapper = models.ForeignKey(PhotoWrapper, blank=True, null=True) original_image = ...
1
vote
1answer
199 views

Django: How to update Photo model that uses Imagekit without re-uploading photo on save()

I have a Photo model that I want to update. When I try to save I get errors from my s3 bucket as well as validation errors about certain fields cannot be null. I think I understand why it is doing ...
1
vote
1answer
182 views

Automatically update images

I'd like to implement a functionality in an app of mine, but I don't know how to go about it. What I want is this: I have a model class that uses imagekit to save its images, and I'd like to have the ...
1
vote
0answers
141 views

django django-imagekit django-cumulus random syntax errors

I have been using django-imagekit and django-cumulus now for a while in my app with Rackspace and I seem to be getting random errors, these do not occur on a regular basis, but more on an irregular ...
1
vote
2answers
578 views

ImageKit in Django

I am implementing ImageKit in a Django app and I have everything set up properly to my knowledge. When I run the command $python manage.py ikflush main the command seems to run fine but nothing ...
1
vote
1answer
604 views

Resizing image on upload with django-imagekit

I am using imagekit to handle custom size of uploaded images. While it works fine for creating custom size images with this, I'd like to use imagekit to resize the original image on upload. Is this ...
1
vote
0answers
189 views

onmouseover with django / imagekit

I'm using Imagekit. View.py includes: def pics(request): p = Photo.objects.all() return render_to_response('Shots.html', {'p': p}) The following simple code in the template ...
1
vote
1answer
143 views

Output location of images for django-imagekit

I'm trying to output a list of images that belong to each record in my app as below: pri_photo = vehicle.images.all()[:1] sec_photos = vehicle.images.all()[1:] This first part is OK. The part I'm ...
1
vote
1answer
83 views

How to generate a choicelist from all ImageSpecs

I want to generate a choicelist for all specs that inherit from imagekit.specs.ImageSpec. The idea is to allow users of the admin interface to select an ImageSpec to add to a picture. i.e: class ...
1
vote
2answers
308 views

Using thickbox with imagekit

I want to use jQuery Thickbox for displaying my images but so far when I click on a thumbnail all I get is the loading progress bar. I've set up my display as below (maybe this will help) <div ...
1
vote
1answer
282 views

How to iterate over columns of an image?

I want to transform images like this to add an effect to pictures in django as described here. I decided to implement it as a process for the great django-imagekit/photologue My knowledge of PIL ...
0
votes
2answers
64 views

Django Imagekit processing the original image

With version 1.1 I don't understand how I can preprocess the original image (by JUST using imagekit) https://github.com/jdriscoll/django-imagekit/blob/develop/README.rst Having a model like this: ...
0
votes
1answer
97 views

django-Imagekit adding custom watermarks

How would i go about adding custom watermarks to pictures using imagekit .. or maybe some other package? In my django admin i need to have a choice of several watermarks that can be applied on ...
0
votes
0answers
190 views

Migrate Django Photologue to ImageKit

I'm moving the media for a website to Amazon S3, and I'm running into errors using django-photologue and django-storages. Most of the solutions I've seen recommend using ImageKit as Photologue's ...
0
votes
1answer
714 views

django - any image upload and display method using Ajax?

On my django application I'm using ImageKit to resize a image loaded to the server. models.py class Pictures(ImageModel): user = models.ForeignKey(User) original_image = ...
0
votes
1answer
495 views

Serializing a model to json with a nested class doesn't expose the nested class

Summary: The problem is that I cannot access the thumbnail image from a nested class in the serialized model and I don't know how to expose it in the JSON response. Description: I am trying to ...
0
votes
2answers
270 views

django / ImageKit - showing absolute path to images

I'm using the ImageKit and for some reason it's displaying the absolute path to images. Any idea how to make it to display the path I have set in the MEDIA_URL ?
0
votes
2answers
315 views

Display thumbnails in an object list using Django and django-imagekit

How do I display thumbnails for my item list....also is it possible to display just a specific thumbnail or a random thumbnail? So far I have this in my template: {% for p in item.images.all %} ...