Questions tagged [imagekit]
102 questions
1
vote
1 answer
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…

Stephen
- 5,959
- 10
- 33
- 43
1
vote
0 answers
IKImageBrowserView example?
Are there any examples how to use IKImageBrowserView in Swift? So far I think it works a bit like the implementation of an UITableView on iOS. It needs a method to tell it how much items it should display and another method returning those items at…

aliks123
- 11
- 5
1
vote
0 answers
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 basis.
Anyone experiencing the same issue?
The…

ApPeL
- 4,801
- 9
- 47
- 84
1
vote
2 answers
django-imagekit minimal setup not working
I want to upload image with width 400px and get two other images - 200px and 100px. I googled and django-imagekit looks like it can do this.
So I added imagekit to INSTALLED_APPS and added this to my model:
from imagekit.models import…

Lucas03
- 2,267
- 2
- 32
- 60
1
vote
1 answer
Image management on Django
I'm trying to figure out which image management library to use on django. What is the difference between photologue, image-kit, and pil(python imaging library)?

prostock
- 9,327
- 19
- 70
- 118
1
vote
2 answers
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…

thomallen
- 1,926
- 1
- 18
- 32
1
vote
1 answer
Cocoa Image Picker Popover
Several places in OS X (in this example, the Users & Groups pane in System Preferences) have circular image views that allow the user to either drag in an image, like in an editable NSImageView but also allow them to click to show a popover that…

Tristan
- 3,058
- 6
- 40
- 68
1
vote
1 answer
ScannerBrowser depreciated ImageKit OSX Yosemite
I found an example on the website of Apple developers about the library looking ImageKit in which scanners connected but there is a problem because when I connect my scanner is not detected, I ran the program and tells me there is a function…

Colours123
- 606
- 1
- 5
- 14
1
vote
1 answer
How to get IKImageEditPanel to work in swift
I know that I can double-click an IKImageView and bring up the edit panel. And in Objective C I can do this
- (IBAction)editPanel:(id)sender {
IKImageEditPanel *editor = [IKImageEditPanel sharedImageEditPanel];
[editor…

Bill Johnson
- 380
- 2
- 10
1
vote
2 answers
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 pick to the first responder's copy:(id) method and…

Brian Postow
- 11,709
- 17
- 81
- 125
1
vote
0 answers
For which file types does IKImageBrowserView create thumbnails by default?
IKImageBrowserView does create thumbnails (show images in the browser view as opposed to an empty rectangle) for certain image formats, but also for PDFs and certain movie formats.
For which file types does IKImageBrowserView create thumbnails by…

MartinW
- 4,966
- 2
- 24
- 60
1
vote
1 answer
Paperclip don't generate styles and original image appears as broken
I having a big issue here. I really tried, but I can't solve this problem by myself, so I hope people can help me here.
Before talk about my problem, I must say I'm using Paperclip and IMGKit in my Project, but I think the problem is with…

Paladini
- 4,522
- 15
- 53
- 96
1
vote
1 answer
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 having issues with is when I…

Stephen
- 5,959
- 10
- 33
- 43
1
vote
2 answers
Django Imagekit - how to get the url not in the template?
I have been using django imagekit without any problems in the templates but now I need to get the url in the view not the template, following this example in the imagekit docs:
source_file = open('/path/to/myimage.jpg')
image_generator =…

Leunam
- 21
- 5
1
vote
1 answer
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 Display(ImageSpec):
pre_cache = True
…

vikingosegundo
- 52,040
- 14
- 137
- 178