Questions tagged [imagekit]
102 questions
0
votes
1 answer
ImageKit does not show thumbnail on Django Admin
I have deployed an ubuntu server running Django. For image thumbnailing am using PILLOW and ImageKit. When I try to save an entry the main ImageFile is saved and the thumbnail is created aswell but once I save I get a server error 500. Once I reload…

AndroidKrayze
- 349
- 2
- 5
- 21
0
votes
0 answers
Can't change image using imagekit ModelForm
I'm currently using:
Python 3.3
Django 1.6.5
django-imagekit 3.2.1
django-guardian (I don't think it's related, I can confirm the row-level permissions are correct on the Profile model)
I can't seem to change the profile image through a ModelForm.…

mpalen
- 1
- 1
0
votes
1 answer
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 drop place highlights with horizontal line(vertical…

Remizorrr
- 2,322
- 1
- 17
- 25
0
votes
1 answer
IKScannerDeviceView always uses a file based transfer mode
I'm making a Mac application to scan multiple page pdf documents.
I'm using an IKScannerDeviceView and I set it's transferMode property to memory based so in the delegate I can get the scanned page as NSData and then add the page to a…

levidhuyvetter
- 401
- 5
- 16
0
votes
1 answer
Error about use IKImageBrowserView
I use 4 IKImageBrowserView in my App. Every time I go to a view which contain a IKImageBrowserView, console will show these three line error:
invalid share context
invalid context
--ImageKit Error: IKVRamMAnager::unable to create a shared context
I…

Crazy Catcher
- 110
- 10
0
votes
2 answers
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 %}
{{ p.get_thumbnail.url }}
{% endfor %}

Stephen
- 5,959
- 10
- 33
- 43
0
votes
1 answer
How to browse network camera in OSX ?
I'm writing a an Objective C software that will use some network camera (IP based ). I've checked many api but i'm able to detect my TP-Link TL-SC3171 camera.
I'm using an Mac Book Pro.
Here are the api i've seen:
1-AV foundation: With…

Yemey
- 31
- 4
0
votes
1 answer
load images into ikimagebrowser from a folder?
I'm new to cocoa and I have an IKImageBrowserView and that's how I load images to it:
- (IBAction)loadImages:(id)sender
{
NSMutableArray *urls = [[NSMutableArray alloc]init];
int i = 1;
for (i=1; i<55; i++) {
NSString *photoNumber = [NSString…

Rokas
- 57
- 1
- 5
0
votes
0 answers
Django-imagekit is crashing system when used in API
I am utilizing Imagekit to resize some images and export 3 different variations in a JSON format for an api call:
'image': k.thumbnail_large.url if k.image else '', …

Brandon Lorenz
- 211
- 2
- 13
0
votes
2 answers
many object libraries do not work
I just started learning cocoa programming. I tried to build a simple imageviewer. I created a new project then added a image viewer from the object library. The problem is that I get an error that I can't even find by googling.
2012-04-21…

Moon
- 22,195
- 68
- 188
- 269
0
votes
0 answers
Populating an IKImageBrowserView
I am currently working on building up a view which shows icons, and text labels to the right of the icons. After some searching, I've decided that an IKImageBrowserView is most suitable. As such, I've gone ahead and created my IKImageBrowserView and…

Julio
- 2,261
- 4
- 30
- 56
-1
votes
1 answer
Is there a way to transform a picture to B&W in imagekit
Is there a way to transform an image a have on imagekit to black and white via the API?
Something like this https://ik.imagekit.io/demo/tr:oi-logo-white_SJwqB4Nfe.png/medium_cafe_B1iTdD0C.jpg but for black and white.

Shmili Breuer
- 3,927
- 2
- 17
- 26