Questions tagged [cloudinary]

Cloudinary is a cloud-based service offering features and APIs for uploading, storing, managing, and delivering media assets. When delivering assets, optimizations and other transformations can be applied to those assets based on options added to the delivery URLs

About Cloudinary

Cloudinary streamlines your entire image management pipeline. You can upload all your static and dynamic resources to the cloud. We provide a secure API for easily uploading images to Cloudinary. You can either use our HTTP API directly or through our client libraries. While uploading images you can transform them by changing their dimensions and format and you can also assign tags to them. Each uploaded resource is assigned a unique Public ID. You can manage all uploaded resources using Cloudinary Management Console and API.

Some of basic features :

  1. Upload images to a cloud-based storage.
  2. Tons of image manipulations & effects.
  3. PDFs, sprites, watermarks, social profile pictures.
  4. Fast CDN delivery for better user experience.
  5. Powerful dashboard, media library and reports.
  6. Comprehensive image management APIs.

Cloudinary's client libraries Available for following languages.

  1. PHP
  2. JAVA
  3. .NET
  4. Python
  5. Ruby
  6. Node-js
  7. jQuery
  8. Angular
  9. Android
  10. IOS
1596 questions
0
votes
0 answers

Why images doesn't save in cloudinary using Cloudinary/Carrierwave?

I'm uploading multiples photos and multiple logos in my model Cover. They are both correctly saved in DB but NOT in cloudinary. As the configuration is the same for logos and photos I'll show you just once. I've followed this to configurate multiple…
Orsay
  • 1,080
  • 2
  • 12
  • 32
0
votes
1 answer

How to download image/s from cloudinary using node.js

Hi I'm working with cloudinary in my node.js project, and I have search a lot about how to download image/s from cloudinary to my server. Is there anyone who knows how to do that ? I didn't find this far a solution someone know how to do that ?
noam aghai
  • 1,364
  • 3
  • 18
  • 30
0
votes
1 answer

Using Carrierwave, Cloudinary, Jcrop - Versions aren't recreated with custom crop coordinates

I have an uploader, Avatar that I'd like to allow users to crop via custom coordinates their images from. I'm using a combination of Jcrop, Carrierwave and Cloudinary following the revised Railscast 182 episode. On submit, the coordinates are stored…
0
votes
1 answer

How can I send an error image if the image can't be found in cloudinary (default image?)

I want to send an image that might say something like "Image coming soon". In gridFS I can find out if an image exists and if it exist send the image if not I could tell it to send an error image. Is there a place in cloudinary that has a sort of…
jack blank
  • 5,073
  • 7
  • 41
  • 73
0
votes
1 answer

Saving a Cloudinary object to a Django Model

I have a model: from cloudinary.models import CloudinaryField class Image(models.Model): image = CloudinaryField('image') And an object that I received from Cloudinary. It was given to me by Cloudinary after I uploaded an image, and I passed…
Adam Starrh
  • 6,428
  • 8
  • 50
  • 89
0
votes
0 answers

cloudinary jquery image upload

I am trying to use cloudinary to upload images directly to cloud server using jQuery. I have followed this example. Here is my code : jQueries included :…
Einstein_AB
  • 396
  • 5
  • 22
0
votes
1 answer

How do you pass a generated PDF to an API as an IO stream without writing it to disk?

I am using PyPDF2 to generate a PDF, and I would like to upload this PDF to Cloudinary, which accepts images as IO objects. The example from their docs: cloudinary.uploader.upload(open('/tmp/image1.jpg', 'rb')) In my application, I instantiate a…
James Riley
  • 127
  • 9
0
votes
1 answer

Convert PDF from Cloudinary to mail attachment Convert MemoryStream to Stream

I am trying to convert a PDF that is stored on Cloudinary to a System.Net.Mail Attachment : private static Attachment CreateAttachementFromMessage(Stream stream) { var memoryStream = new MemoryStream(); …
user4546142
0
votes
2 answers

Keystone errors on forked repo

I'm working on a Keystone based project with a friend of mine. He has done all of the initializing on his end and pushed everything to GitHub. I have forked and cloned down the repo to my machine (macOS 10.13). When attempting to run node keystone I…
Joe
  • 177
  • 3
  • 16
0
votes
1 answer

Cannot upload Cloudinary image Node.js

I am trying to upload image to cloudinary through url. I have tried the following code: var new_url = $.cloudinary.url(currentPostId+"_front_image.jpg"); console.log(new_url); console.log("check_first"); …
wjy4528
  • 5
  • 2
0
votes
0 answers

Retrieve a Cloudinary image as a file object in Meteor javascript

I would like to get the image file from cloudinary through a public_id (currentPostId) var currentPostId = this._id; var file = $('#userimage')[0].files[0]; if ("undefined" === typeof file) { var photo =…
wjy4528
  • 5
  • 2
0
votes
1 answer

attachinary validates size upload

I want to add a validation for attachinary upload (:photo_presentation) it should be more than 0.5 megabytes, less than 2 megabytes, any idea please? Here is my model : class User < ApplicationRecord has_attachment :photo_presentation …
Tana
  • 31
  • 6
0
votes
0 answers

angular and Cloudinary direct upload 400 (Bad Request)

i'm getting a 400 bad request error when trying to upload to cloudinary with the following code: var file = /* your file */; var cloud_name = 'your cloud_name'; var fd = new FormData(); fd.append('upload_preset', 'seller'); fd.append('file',…
Franj
  • 117
  • 2
  • 10
0
votes
2 answers

Upload Image from expo Imagepicker to Cloudinary

I am trying to upload image direct to cloudinary from react-native application. I am using Expo Imagepicker on react-native side and doing POST request using axios. I get a "400 Bad Request" from Cloudinary with error message - Unsupported source…
sriram
  • 407
  • 2
  • 8
  • 19
0
votes
0 answers

How we can upload multiple images on cloudinairy in slots with rails

My requirement is to upload multiple images on cloud in slots. For example i have 100 images in array then images goes in 3 - 3 slots on cloudinairy and and at the time of upload i have any error like time out then it handle exception and goes to…