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

keystonejs cloudinary invalid signature error

I have implemented a Cloudinary type in one of my models, but get this error back when I try and save it to Cloudinary: Image upload failed - Invalid Signature ea4401c2ebf292208d28f9dc88c5ff1c4e73761d. String to sign -…
Jim Bob
  • 1
  • 1
0
votes
2 answers

cloudinary django database error

I am developing app that uses Cloudinary, using Django 1.8. I downloaded the sample project from https://github.com/cloudinary/cloudinary-django-sample. This line: image = CloudinaryField('image') causes an error when runnig "manage.py migrate"…
0
votes
1 answer

How can a create a "progressive jpg" image using cloudinary and nodejs?

I need to create a image, which is resized + watermaked + should be progressive jpg image. function getProcessImageFromCloudinary(imgUrl, name, format,wid,hei,cb){ cloudinary.uploader.upload(imgUrl, function(result) { cb(result); }, { …
Nishant
  • 3,614
  • 1
  • 20
  • 26
0
votes
2 answers

Cloudinary give max size error for upload using android

Exception: java.lang.RuntimeException: File size too large. Got 25365853. Maximum is 10485760. But the actual size is 1873795 bytes. Any leads will be appreciated.
nishant pathak
  • 342
  • 1
  • 4
  • 17
0
votes
1 answer

Cloudinary Upload 'overwrite' option not working on Node.js

the docs here indicate an overwrite option: overwrite (Boolean) - Whether to overwrite existing resources with the same public ID. When set to false, return immediately if a resource with the same public ID was found. Default: true. When I set it…
Michael Cole
  • 15,473
  • 7
  • 79
  • 96
0
votes
1 answer

Cloudinary Change Public ID

I have been using Cloudinary to store images, and I want to change the public ID scheme I've been using. Is there any way to update the current public IDs to new ones using the admin API? For example, if I have an image with a public ID of 1, can I…
Eliezer
  • 7,209
  • 12
  • 56
  • 103
0
votes
1 answer

Upload image to Cloudinary and generate a low-res version as a different URL at the same time

I am using Cloudinary to upload pictures from Android, but since they are usually a bit large I would like to generate a thumbnail for it that has a different URL. This will allow me to have a full-resolution and a low-resolution version but only…
Acapulco
  • 3,373
  • 8
  • 38
  • 51
0
votes
1 answer

Keystone and Cloudinary

I am working with keystone and am trying to upload images to the website generated by running yo keystone I have set up a cloudinary account and updated the keystone.js file by adding keystone.set('cloudinary config', { cloud_name: 'my-cloud',…
Angie
  • 103
  • 1
  • 9
0
votes
2 answers

How can I make 2 uploader to point to 1 cloudinary file when using carrierwave?

I have Image model: class Image < ActiveRecord::Base mount_uploader :file, ModuleImageUploader end To upload image I use carrierwave + cloudinary: class ModuleImageUploader < CarrierWave::Uploader::Base include Cloudinary::CarrierWave …
ExiRe
  • 4,727
  • 7
  • 47
  • 92
0
votes
1 answer

Rails: Cloudinary gem - default image not loading

I'm working on a pinterest-like app, using Cloudinary gem with Attachinary. I have added a line into my index.html.erb file which was supposed to display a default image if a created Pin didn't have one or the image didn't load properly. <% if…
LeJaques
  • 25
  • 2
0
votes
2 answers

Cloudinary with rails won't show my picture

I am developing a Rails application and I want to upload a picture directly from my browser using Cloudinary. I followed all steps from the Cloudinary page and ended up with a box and a question mark after I "uploaded" it, no picture at all. Any…
0
votes
1 answer

What is the best way to delete an image in Cloudinary Using PHP?

I'm fairly new to Cloudinary and programming in general. I'm integrating Cloudinary Image CDN to an app I am creating and would like to know what is the difference in using "\Cloudinary\Uploader::destroy('zombie');" vs…
lcp2000
  • 19
  • 7
0
votes
0 answers

Heroku Application Error: can't migrate the database properly?

After installing CarrierWave and Cloudinary, my Heroku app won't start. Based on the logs, Heroku doesn't recognize one of the CarrierWave methods even though it works in development. ("Unable to load application: NameError: uninitialized constant…
0
votes
1 answer

How to access cloudinary attributes in rails?

Given the following output from f.object.filename.inspect from a form. And I am using carrierwave. $>
Chris Yeung
  • 2,613
  • 6
  • 34
  • 57
0
votes
1 answer

Open URI Wrong Output

I am trying to download images from the web and upload them back to Cloudinary. The code I have works for some images, but not for others. I have isolated the problem down to this line (it requires open-uri): image =…
Ryan K
  • 3,985
  • 4
  • 39
  • 42