Tagged Questions
The imagekit tag has no wiki summary.
6
votes
1answer
300 views
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?
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
1answer
132 views
ImageKit errors and warnings when compiling with ARC
I'm trying to convert my project to ARC, but I'm using ImageKit in my project. Both the ARC refactoring tool and my own manual refactoring produce errors and warnings with ARC in the ImageKit header ...
2
votes
2answers
677 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
273 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
589 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", ...
2
votes
2answers
1k views
How to interpret trackpad pinch gestures to zoom IKImageBrowserView
I have an IKImageBrowserView that I want to be able to pinch-zoom using a multi-touch trackpad on a recent Mac laptop.
The Cocoa Event Handling Guide, in the section Handling Gesture Events says:
...
1
vote
0answers
11 views
IKImageBrowserView lazy loading?
In order to work with the IKImageBrowserView, one must implement a datasource with the following methods
– numberOfItemsInImageBrowser:
– imageBrowser:itemAtIndex:
This is not dissimilar to ...
1
vote
0answers
31 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
38 views
IKImageBrowserItem cannot find protocol declaration
Everything else in XCode4 works correctly, except the ImageKit classes.
Following Apple's tutorials, all classes and protocols starting "IKImage" are "not found" - it will compile against some of ...
1
vote
1answer
108 views
Selecting iPhoto images within a cocoa application
I was wondering what the best way of selecting photos from iPhoto within a cocoa application? Right now, the open file dialogue doesn't allow me to go into the iPhoto library. How can I allow the user ...
1
vote
1answer
180 views
Add background to IKImageView
I want to add a checkerboard background to an IKImageView for viewing transparent images.
I am trying to set CALayer with checkboard image to IKImageView with message setOverlay:forType
CFURLRef ...
1
vote
1answer
195 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
181 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
137 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
531 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
587 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
113 views
Is there a way to initialize ImageKit's IKSaveOptions to default to TIFF with LZW compression?
I'm using Mac OS X 10.6 SDK ImageKit's IKSaveOptions to add the file format accessory to an NSSavePanel using:
- (id)initWithImageProperties:(NSDictionary *)imageProperties imageUTType:(NSString ...
1
vote
1answer
314 views
IKImageView resize is blocky
I am putting an image into an IKImageView, and immediately sizing it to fit. Whenever I do this, the image originally appears at 1-1 size (huge) and then resizes down, which would be fine if the ...
1
vote
0answers
184 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
108 views
adding options to IKSaveOptions?
I have an ImageKit program that needs to be able to save images, so I'm using the IKSaveOptions accessory view, to allow the user to choose a file type, etc.
However, I want to remove some of the ...
1
vote
3answers
601 views
Observing NSUserDefaultsController not working when bound properties are set
Here's the setup: I have a subclass of IKImageBrowserView whose zoomValue property is bound to a key VFBrowserZoomValue in the shared NSUserDefaultsController. I have an NSSlider whose value binding ...
1
vote
1answer
142 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
82 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
300 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
275 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 ...
1
vote
1answer
295 views
Telling IKImageBrowserView not to schedule preloading
For our rewrite of the open-source iMedia framework project (in use currently by dozens of developers), we are switching to IKImageBrowserView, and having a troubling time with caching.
It appears ...
0
votes
1answer
26 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
30 views
IKImageBrowserView: how to display tooltip for every item?
I digged in documentation but didn't find how to do. How can I add tooltip for every item in IKImageBrowserView?
0
votes
0answers
36 views
Xcode: ImageKit Error in OpenPanel
I've created empty "Cocoa Application" project in Xcode 4.2 (Mac 10.7). Add simple push button, and implement this simple code.
-(IBAction)openDir:(id)sender {
NSOpenPanel* op = [[NSOpenPanel ...
0
votes
1answer
79 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
164 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
60 views
How to enable dragging on specific items of an IKImageBrowserView?
I'm using an IKImageBrowserView for a mac application I'm currently developing and wants to enable dragging inside the IKImageBrowserView so I've used – setAllowsDroppingOnItems: but unfortunately ...
0
votes
0answers
58 views
IKImageBrowserView doesn't remember expanded state of groups
This is perhaps a silly question...
Should IKImageBrowserView remember the expanded state of my groups across calls to reloadData or is that something I should be keeping track of myself in my ...
0
votes
1answer
112 views
How To Add A Folder Of Images To IKImageBrowserView
How do I add a folder of images to be displayed in an IKImageBrowserView?
Thanks
0
votes
0answers
29 views
IKImageBrowserView does not respect the view hierarchy
I have a hierarchy of views (NSView's) and one of the views contains a IKImageBrowserView.
It does not matter what I do but the Image browser (IKImageBrowserView) always stay on top ignoring the views ...
0
votes
1answer
663 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
476 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
244 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
1answer
225 views
IKImageBrowserView “--ImageKit Error: reloadData called in non main thread”
I am writing a Cocoa Mac app which uses an IKImageBrowserView.
When I call the following:
[imageBrowserView reloadData];
The Debugger Console prints this:
--ImageKit Error: reloadData called in ...
0
votes
2answers
640 views
Another IKImageView Question: copying a region
I'm trying to use the select and copy feature of the IKImageView. If all you want to do is have an app with an image, select a portion and copy it to the clipboard, it's easy. You set the copy menu ...
0
votes
1answer
227 views
Changing how IKImageBrowserView indicates the drop position
I can make a single row IKImageBrowserView by setting the
[imageBrowser setContentResizingMask:NSViewWidthSizable];
but in this case while i drag an image inside image browser to rearrange it, the ...
0
votes
2answers
310 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 %}
...