Questions tagged [imagekit]
102 questions
1
vote
2 answers
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)
{% for p in photos %}
Stephen
1
vote
1 answer
Django-ImageKit issue with ImageSpecField original image
ImageKit has given me quite the headache over the last few days. I had an internal server error on my site because I followed the example ImageSpecField on the GitHub page:
avatar_thumbnail = ImageSpecField(source='avatar',
…

Joshua
- 709
- 2
- 10
- 23
1
vote
1 answer
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 isn't very good, so my question is
How to intend a…

vikingosegundo
- 52,040
- 14
- 137
- 178
1
vote
1 answer
Imagekit SpecFields to Scale down images, but not scale up
Imagekit will scale down uploaded images larger than 800x500, however it will also scale up images smaller than 800x500.
How can a ImageSpecField be created so that images which fit well within the defined size are not scaled up?
post_embed_image =…

mmartin
- 91
- 1
- 8
1
vote
1 answer
Incompatible type for NSStringFromSize([self intercellSpacing])?
Something quite strange is happening in my IKImageBrowserView subclass:
I'm trying to print the size of intercellSpacing and cellSize respectively.
CBDebug(@"intercellSpacing %@", NSStringFromSize([self intercellSpacing]));
CBDebug(@"cellSize %@",…

aneuryzm
- 63,052
- 100
- 273
- 488
1
vote
1 answer
IKDeviceBrowserView displays no contents on OSX Mountain Lion
I can't get rid of a bug with IKDeviceBrowserView in 10.8 with Xcode 4.4.
I've created new test project, put an IKDeviceBrowserView into my window, added Quartz.framework to link with. After building, I see a blank window. There are no…

Dmitry
- 7,300
- 6
- 32
- 55
0
votes
0 answers
Firebase Emulator, Ngrok and imageKit not connecting
i'm working locally on my firebase project so i've set up the firebase emulator.
What i'm working working on has many images and videos so i want to connect it to imageKit so that i can play around with it locally. Imagekit can't access it because…

Coolkid
- 407
- 1
- 4
- 13
0
votes
0 answers
Can not upload image in library imagekitio-react version 2.0.0 in NextJs
my project is using library imagekitio-react version 1.1.1 and it's work correctly. But now i want to limit image uploads to less than 5mb and version 1.1.1 IkUpLoad cannot support this.
I see version 2.0.0 have onUploadStart in component.
So, if i…

duc nguyendinh trung
- 73
- 1
- 9
0
votes
1 answer
Django Imagekit I/O operation on closed file
I'm using Imagekit to resize pictures on a website i'm developing with Django, I've used Imagekit before without any issues but I have a strange problem.
I am using S3 for Media/Static files. When I upload an image in admin and refresh the template…

Rob
- 46
- 3
0
votes
1 answer
Format to POST a file to the ImageKit server?
I've successfully built a React UI to select and upload N files. The key part of it is this:
The selected files are stored in this state variable:
const…

RobertW
- 226
- 1
- 2
- 10
0
votes
1 answer
imagekit used with external storage - how to disable some random number (t=xxxxxxx) at the end of the url
I have linked my serve with imagekit as CDN, fetching imageing from Digitalocean storage space: as per the blog -
Optimize and resize images in DigitalOcean Spaces in real-time with ImageKit - This all works fine.
Now when I open html page: imagekit…

Mandar
- 57
- 5
0
votes
1 answer
How to store response data into an array out of the current function in node js?
How do i store all result data into pImages array i am getting the result but in that case i think async function will work but i dont know how to apply it. please help, my code is
exports.addImage = (req, res, next) => {
let imageArray =…

Kamalesh Maity
- 119
- 7
0
votes
1 answer
Upload multiple images to ImageKit through the provided React SDK
We use the React SDK, which is provided by ImageKit, to upload images directly to ImageKit from the frontend. (The details are not important for this problem.)
It looks like this:
and all…

wallzry
- 115
- 9
0
votes
1 answer
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 uploaded photos. has someone done something simmilar ?…

zzart
- 11,207
- 5
- 52
- 47
0
votes
1 answer
NuxtJS: How to run NodejS code in a universal Nuxt app ? Trying to generate signature needed for imagekit upload request
I am a beginner to NuxtJS and backend development. I am trying to use the imagekit.io upload API so I can let my users publish images to a cloud storage service (Imagekit). In order to do so, I need to do "signature-based authentication" and…

redshift
- 4,815
- 13
- 75
- 138