imagekit

Core Animation image change in IKImageView?

Is there any way to animate (using one of the supplied Core Animations) an image change in IKImageView without resorting to using two independent IKImageViews upon a new image load? ...

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 appears to happen. None of the images get resized or stored and cannot be accessed. main.models.py: class ProductImage(models.Model): pr...

django django-imagekit django-cumulus random syntax errors

Hi. 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 basis. Anyone experiencing the same issue? The error seems to appear on {% for gun in guns %} <div style="margin-top: 20px;"> {%...

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. ...

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: Photo matching query does not exist. Here is my class: class AdminImageWidget(forms.FileInput): """ A ImageField Widget for admin t...

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 users being able to update the images easily for the vehicles without having to edit each respective vehicle record. How they'll do thi...