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
2 answers

How to handle errors with Cloudinary Javascript API?

As per cloudinary JS API, an upload call looks like: https://www.npmjs.com/package/cloudinary cloudinary.uploader.upload(fileLocation, function(result) { ..something }); There is no error returned in the callback. How do I capture the error?
runtimeZero
  • 26,466
  • 27
  • 73
  • 126
0
votes
1 answer

Converting SVG using svg2png (phantomjs) failing to load cloundinary images on live server

I'm using the lastest version of svg2png to covert svgs like the one below into png's https://s3.eu-central-1.amazonaws.com/boxxer/uploads/items/57c46a04f1dc422b002ff291.svg Locally this works without any issues, but when I deploy my app to Flynn it…
dottodot
  • 1,479
  • 1
  • 16
  • 24
0
votes
1 answer

Overlay Cloudinary Upload Widget on Image

I have an image and a Cloudinary upload widget. The widget shows on screen as a button, with one href and a few lines of javascript. I would like to put the widget button directly on top of the image, but I'm having difficulty getting the formatting…
Emily.SageMaker.AWS
  • 302
  • 1
  • 4
  • 13
0
votes
1 answer

JS - Display either image or video with instanceof?

I'm getting the cloudinary image/video ID like this: getPublicId()); ?> which gives a URL like: http://res.cloudinary.com/dviiu412p/image/upload/v1/campaigns/1/jfle7ilxkyfmj9mjggwa And then rendering it out as…
NoDachi
  • 874
  • 4
  • 10
  • 20
0
votes
2 answers

PhotoSwipe - Serving images of unknown size

I was reading the faq area about this (serving images of unknown size), but i'm in trouble to implement the solution as follow bellow: You can store size of an image directly in its filename and parse it on frontend during PhotoSwipe initialization…
user1301037
  • 523
  • 1
  • 7
  • 19
0
votes
1 answer

Cloudinary and Angular2

I am trying to upload to cloudinary with Angular2. I am using this file dropper to do this. https://github.com/ptkach/fileDroppa I am constantly getting 400 bad requests, with missing parameter - file errors. Has anyone worked with either before or…
johntzan
  • 323
  • 2
  • 13
0
votes
1 answer

Unable to upload audio to the server

I am able to upload audio locally. But uploading audio to the server is not working. My code is: module.exports.uploadAudio = function (req, res) { var form = new multiparty.Form(); form.parse(req, function (err, fields, files) { …
0
votes
1 answer

Can not upload image from MAC or ubuntu from server in nodejs

I am trying to upload image using multiparty in nodejs. It is working fine in local host but having problem when uploading from server. Here is the code module.exports.uploadimg = function (req, res) { var form = new multiparty.Form(); …
Vardan
  • 454
  • 1
  • 5
  • 18
0
votes
1 answer

How to find image uploaded status from url or file name?

I have used cloudinary. I have uploaded an image to cloudinary and I want to get that image status from cloudinary that it is uploaded or not using cloudinary URL or from image name. I am using jQuery and I want to display a list of images with…
Hitesh S
  • 460
  • 1
  • 5
  • 20
0
votes
1 answer

Overlay a fetched image over itself (with transformations) with Cloudinary

I would like to generate an image with to versions of the same fetch image, like this one: Here are the two versions: The background:…
Nicolas Hoizey
  • 1,954
  • 1
  • 17
  • 24
0
votes
1 answer

Windows phone UWP apps - Image Cloud Storage

I'm currently looking for a free Cloud storage Image service like Cloudinary to upload pictures from my app and to have access to them without authentification like a public folder. The issue that I'm facing is that no one of those I have tried have…
dabbu
  • 7
  • 7
0
votes
0 answers

Cloudinary uninitialized constant Cloudinary::Uploader::Base

I'm having trouble getting Cloudinary with Carrierwave to work in my app. I've found both Cloudinary and Heroku's documentation on this to be vague and unsatisfactory, after much searching I found this which has been very helpful but now my app…
tfantina
  • 788
  • 11
  • 37
0
votes
1 answer

Rails 4, Cloudinary, Carrierwave not uploading

I've been wracking my brain for hours pouring over documentation and I can not for the life of me figure out what's wrong. The form is accepting an image, but does not trigger a direct upload. My files below. Gemfile source 'https://rubygems.org' #…
Eric Norcross
  • 4,177
  • 4
  • 28
  • 53
0
votes
1 answer

Rails + Cloudinary Gem - How to add rounding step to cl_image_tag?

I'm using the cloudinary gem and cl_image_tag helper method to display my images. <%= cl_image_tag(picture.image, :width => :auto, :dpr => :auto, :responsive_placeholder => "blank") %> As you can see, I'm adding the :width => :auto option in the…
sjbuysse
  • 3,872
  • 7
  • 25
  • 37
0
votes
1 answer

Cloudinary direct unsigned upload with django

I am using the cloudinary sample django project: https://github.com/cloudinary/cloudinary-django-sample I made the following changes: - using django 1.8.6 - using cloudinary 1.4.0 - added CLOUDINARY_URL environment variable - added…