0

is there an option to do some image cropping in cloudinary and save it in local project folder. transformations like detect face and save as profile image. is there any other plugins for the same?

Rahul
  • 141
  • 3
  • 16

2 Answers2

0

Have you checked out official cloudinary documentation regarding django integration.

Also there is python library on which this is based upon ( pycloudinary)

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
iklinac
  • 14,944
  • 4
  • 28
  • 30
  • this allows to be saved on the cloud only, not to local folder. Note i am on offline development. – Rahul Apr 05 '17 at 14:27
0

All images (originals and derived) are saved in your Cloudinary cloud storage. If you want to tell the browser to download a specific image instead of showing it, you can use the attachment flag (fl_attachment in URLs). For example, resizing the image to a width of 300 (w_300 in URLs) before downloading it - http://res.cloudinary.com/demo/image/upload/w_300/fl_attachment/sample.jpg

Maor.G
  • 440
  • 2
  • 5