Questions tagged [django-imagekit]

Automated image processing for Django models.

ImageKit is a Django app that helps you to add variations of uploaded images to your models. These variations are called “specs” and can include things like different sizes (e.g. thumbnails) and black and white versions.

Documentation is available at https://django-imagekit.readthedocs.io/

140 questions
0
votes
1 answer

How to copy a ImageField without reupload and resave it?

I have a ImageField, when user create the first post, it put a image to S3, when another user redo on it(just like Pinterest's repin), I need copy the image.name to the new, but do not need upload an resave the image, how can I do it?
Nyssance
  • 341
  • 4
  • 8
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
1 answer

Tastypie with ImageKit relationship

Consider these pseudo models: class Product: name = charfield class ProductImage: image = foreignKey(Product) And this resource class ProductResource(ModelResource): images =…
Hedde van der Heide
  • 21,841
  • 13
  • 71
  • 100
-1
votes
1 answer

how to view image in Django application

I need to view only the image in HTML page. Like : http://localhost:8000/media/project_name/imagenav.jpg Example page : https://s3-media3.fl.yelpcdn.com/bphoto/c7ed05m9lC2EmA3Aruue7A/o.jpg Thanks & Regards, Mohamed Naveen
user2536023
  • 165
  • 1
  • 4
  • 14
-1
votes
1 answer

django send image filed oher rest api

I am using Django. [My web application structure] I have implemented the structure shown in the picture above But I have a problem. There is no problem with images send between clients and bridge hosts. However, I am not sure how to send an image…
1 2 3
9
10