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

Perfect Image-Sizes for iPhone (Retina) using Cloudinary

What would be the correct image size to display in an UIImageView on a retina display, when the image is loaded from Cloudinary (or another Picture-CDN)? On the one hand, i have a Table and each TableCell has its own UIImageView with both 70px in…
delete
  • 18,144
  • 15
  • 48
  • 79
0
votes
1 answer

Uploading images/videos also uses net bandwidth limit in Cloudinary?

I am looking forward to using Cloudinary for my present project. And cloudinary recently added proper support for videos, which is god-send. I am a little confused about the bandwidth limit: Will the net bandwidth limit imposed by Cloudinary be…
ketanbhatt
  • 898
  • 7
  • 19
0
votes
1 answer

Config cloudinary for development and production

In my app on rails I use carrierwave and cloudinary for upload images. I set config file cloudinary.yml and all work well. development: cloud_name: _my_app_name_ api_key: '_my_cloudinary-key_' api_secret: _my_cloudinary_secret_ …
Kostya Kokosko
  • 45
  • 1
  • 11
0
votes
1 answer

Rails / Attachinary / Jcrop - save only the cropped image

I am working on a Rails project that involves images, for which I use Cloudinary with Attachinary. It is a very standard situation, where a user selects a picture, can preview it (I am using jQuery fileupload as well), crop it (using Jcrop), and…
Alexandre
  • 59
  • 1
  • 6
0
votes
0 answers

Angular Cloudinary Rails

I am trying to use cloudinary with angular as per given example When page is loaded then I can see both console.log() printed, but when I am uploading a file then nothing happens. I am not getting any console error and no console.log() is printed…
Swapnil Chincholkar
  • 2,869
  • 3
  • 22
  • 22
0
votes
1 answer

Attachinary : can I keep the original filename?

I use Attachinray with Cloudinary, for direct upload. Everything works very well, except the fact that when I try to save files in my controller, I do not have the original filenames. Here is a sample of my code: class User has_attachments…
0
votes
1 answer

Save and resize image to Cloudinary without saving image on disk

How can I resize multiple images and send stream to Cloudinary directly by using mutiparty: router.post('/', function(req, res){ var form = new multiparty.Form(); form.on('part', function(part) { // Stream it to Cloudinary without…
Alvin
  • 8,219
  • 25
  • 96
  • 177
0
votes
2 answers

Can't get image_id from Cloudinary in NodeJS

I'm using Node.js and Express. I just implement Cloudinary to upload image from user, and store the image id to my MySQL database. I tried this tutorial from Cloudinary's documentation: http://cloudinary.com/documentation/node_image_upload.…
0
votes
2 answers

Genearate Cloudinary image url without using the libs

First of all I am totaly new to Cloudinary and I pretty like the way it makes the image management way easier. That's why I decided to get more info about this service. I would like to know if it is possible to generate my images url on my own with…
Marc Delalonde
  • 335
  • 4
  • 17
0
votes
1 answer

Angular forEach wait until all promises are complete?

I'm doing a forEach loop and that makes an API call to Cloudinary, and I'm building an array with the response data. Once the data is collected, I need to send it to some other API. How do I wait on the promises getting resolved and the data…
Nathan
  • 7,627
  • 11
  • 46
  • 80
0
votes
1 answer

Rails cloudinare not uploading image

I've just integrated cloudinary into my rails project and created a view to allow the user to upload an image file. In my controller I have: def update @painting = Painting.find(params[:id]) if params[:image].present? preloaded =…
user1686342
  • 1,265
  • 1
  • 18
  • 24
0
votes
1 answer

Is there any way to use cloudinarydotnet or Cloudinary for .net nuget package in Windows Phone 8

I want to Upload Images Captured by CameraCaptureService(Cimalino.Phone.Toolkit.Camera) in windows Phone 8 to Cloudinary , I tried to use CloudinaryDotNet Nuget package but it doesn't Support windows Phone 8 . So i tried to use the Cloudinary…
Joel Joseph
  • 5,889
  • 4
  • 31
  • 36
0
votes
1 answer

How to delete a zip file on Cloudinary?

My code creates a zip file by calling, Cloudinary.Multi() Now I've to delete images.zip on cloudinary. Cloudinary.DeleteResourcesByTag() //don't work because images.zip has no tag to it. Cloudinary.DeleteAllResources() // Deletes all images. Zip…
Abdullah Leghari
  • 2,332
  • 3
  • 24
  • 40
0
votes
1 answer

How to initialize Cloudinary through Secrets.yml?

I'm using Cloudinary to host and manage images of my rails 4+ app. Its api_secret, api_keys and other config is put into the production environment using a cloudinary.yml file inside the config folder. Instead of a separate cloudinary.yml file I…
Marvin Danig
  • 3,738
  • 6
  • 39
  • 71
0
votes
1 answer

Image upload after client resize: cloudinary

I'm able to resize images (client side) using this neat library. I'm also able to upload images directly from the browser to Cloudinary, using this code: $cors_location)); ?> This…
binoculars
  • 2,226
  • 5
  • 33
  • 61