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
1 answer

cloudinary django responsive image template tags

It doesn't look like this exists, but does Cloudinary Django template tag library include Cloudinary.responsive image features? Cloudinary has 'response jquery' library that is used as follows:
curtisp
  • 2,227
  • 3
  • 30
  • 62
0
votes
1 answer

Retrieving object model is blank?

I have a foreach loop which cycles through a bunch of images, and uploads them using this code: foreach(var image in fetchimages) { string fileName = "https://www.mywebsite.co.uk" + image.ImageOriginalURL; var uploadParams = new…
Gavin5511
  • 791
  • 5
  • 31
0
votes
1 answer

Cordova-Cloudinadinary plugin command

I was try to add plugin for cordova-cloudinary through following command and not support.Kindly update the command for add cloudinary plugin in cordova web site. cordova plugin add cordova.plugins.cloudinary but it shows the error. 404not found.
0
votes
1 answer

Cloudinary Images Not Working via Ionic Framework

I'm using Cloudinary images with the Ionic framework via the cloudinary-angular library and I'm having some issues with the images loading. When I test via the ionic serve method, things seem to work fine. However, when I install the app to the…
Rob Sawyer
  • 2,163
  • 1
  • 24
  • 25
0
votes
0 answers

The request was aborted: The request was canceled. C# with Cloudinary upload

I am having an issue with uploading a file larger than 4 megs to cloudinary, I am using C# to upload the file. I have set up my app under configs to allow for a larger number for uploads as follows:
Scripta55
  • 49
  • 7
0
votes
0 answers

Cloudinary image goes 401 unauthorized on firefox when using modifiers in url

I have this image uploaded on cloudinary: http://res.cloudinary.com/sylvain-bigonneau/image/upload/v1441562225/fvlmjerhn7vcli4hkbvx.jpg It loads fine on every browser. But if I want to use modifiers in the url, such…
SylvainB
  • 4,765
  • 2
  • 26
  • 39
0
votes
2 answers

public_id doesn't match between cloudinary and carrierwave

I'm using CarrierWave and Cloudinary to upload multiple pictures to my blogposts. I upload them from my browser. This happens with the use of a file field in the post form. <%=file_field_tag "images[]", type: :file, multiple: true %> When the form…
sjbuysse
  • 3,872
  • 7
  • 25
  • 37
0
votes
2 answers

How to upload multiple files with cloudinary and carrierwave

I've been looking for a while at the Cloudinary documentation but can't figure out how to upload multiple files to it using Rails and a html form. I added Cloudinary support to my Carrierwave ImageUploader include Cloudinary::CarrierWave and I…
sjbuysse
  • 3,872
  • 7
  • 25
  • 37
0
votes
1 answer

Cloudinary missing cloud_name in development

I am using the cloudinary with my application to upload images but I seem to get this error on development. I have the site launched and it gives this error when I try to upload an image. Uncaught Missing required option: cloud_name When I run it in…
Jeff
  • 650
  • 5
  • 16
0
votes
1 answer

How to see the speedup when using Cloudinary "direct upload" method?

I have a RoR web app that allow users upload images and use Cloudinary as cloud storage. I read their document and find a cool way called "direct uploading" which reduce my server's loading. To my knowledge, the spirit is changing workflow image ->…
Eric Tsai
  • 66
  • 1
  • 5
0
votes
2 answers

How to retrieve Cloudinary photoid?

Cloudinary has a photo_id that is assigned once the photo is uploaded, but I don't know how to retrieve it. I'm using Meteor. Below is the code for users to upload a photo. Template.userProfile.events({ 'submit form': function(e, t) { …
anon
  • 2,143
  • 3
  • 25
  • 37
0
votes
1 answer

Meteor Lepozepo cloudinary $ is not defined

I am trying to use the lepozepo:cloudinary package, but I receive an error regarding this code. $.cloudinary.config({ cloud_name: "dx8pjibvk" }); The error states: ReferenceError: $ is not defined Jquery is installed. What can I do to fix this?
lilmessi42
  • 313
  • 2
  • 3
  • 13
0
votes
2 answers

Upload file to Cloudinary Meteor

I am using the following html to allow the user to upload images: I have the following method to upload to Cloudinary: cloud : function (source) { cloudinary.uploader.upload(source,…
lilmessi42
  • 313
  • 2
  • 3
  • 13
0
votes
2 answers

Meteor Cloudinary and lepozepo:cloudinary

I have setup a barbone meteor app in order to test lepozepo:cloudinary package. if (Meteor.isClient) { $.cloudinary.config({cloud_name:"name"}) Template.hello.events({ 'click button': function () { // increment the counter when…
gpasse
  • 4,380
  • 7
  • 44
  • 75
0
votes
1 answer

Cloudinary responsive image with auto height instead of auto width

So I read the recent Cloudinary blog post about responsive image tags. In particular, I use this line right now (for Ruby on Rails 2.1): cl_image_tag("example.jpg", :width => :auto, :responsive_placeholder => "blank") and then