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

display a PDF from cloudinary

I can load a pdf in cloudinary but i can't display it. I tried with : <%= cl_image_tag worker.cv.path, width: 1000, height: 1000,crop: :fill, format: :jpg %> Renders in
Tana
  • 31
  • 6
0
votes
1 answer

"Unrecognized FormData part." error on React native (android) Video upload with XMLHttpRequest

I am trying to upload a video to cloudinary and the below code works on ios but getting an error on Android almost instantly when the upload starts, the error being Unrecognized FormData part. let {api_key, api_secret, cloud_name, url} =…
B K
  • 1,554
  • 3
  • 19
  • 40
0
votes
1 answer

I want to deleted an image from Cloudinary, but not working this code

I want to delete an existing image from Cloudinary. I have fetched public id of that image but not working delete code. \Cloudinary::config(array( "cloud_name" => $cloud_name,//"demo", "api_key" => $api_key,//"286877943699458", "api_secret"…
Avijit
  • 17
  • 8
0
votes
1 answer

Swift 3 upload video to Cloudinary fails

I am tryin to upload a video to Cloudinary (unsigned upload) using Swift 3, from a video url that I know for sure is there. I am trying to take the content of the local URL and turn it into Data, and then upload the data. I get a message: Error…
Eyzuky
  • 1,843
  • 2
  • 22
  • 45
0
votes
2 answers

Cannot upload files to Cloudinary

Cloudinary won't let me upload XLS files when it says they support it. I'm using the Heroku add-on. C:\Users\Chloe\workspace\fortuneempire>rails console Loading development environment (Rails 5.0.2) irb(main):001:0>…
Chloe
  • 25,162
  • 40
  • 190
  • 357
0
votes
1 answer

Paperclip, Cloudinary, Development, Production

What is an elegant solution to having image files on your local disk in development and on Cloudinary in production? I have %td= image_tag investor.image.file.url(cloudinary: {:width => 100, :height => 100, :crop => 'thumb', :gravity =>…
Chloe
  • 25,162
  • 40
  • 190
  • 357
0
votes
1 answer

What is the difference between Cloudinary and Carrierwave?

What is the difference between Cloudinary and Carrierwave, and if they're different, how does one complement the other? (I am planning to use these in a Rails 5.0.2 application.)
himanish.k
  • 105
  • 1
  • 11
0
votes
0 answers

use curl to upload to a site using cloudinary

I'm making a tool to upload picture automatically to site X. This site use Cloudinary to upload and store there picture. Can I use CURL or something else to upload to site X (I have an account on site X of course, and I was allowed to upload too).…
Phong Nhat
  • 11
  • 3
0
votes
1 answer

Optimal image transformation using cloudinary

I am new to android and developing an online food delivery application. I want to use cloudinary to store images so that I can transform them to different sizes easily and can display it on app for better look and feel. So my question is- in which…
0
votes
1 answer

How to build Android Bindings Library for Cloudinary?

I am attempting to build an Android Bindings Library for Cloudinary, and have comes across build errors stating "no suitable method found to override". I am on the hunt for a resolve. Meanwhile... While I follow this tutorial about building Jar…
Adam Cox
  • 3,341
  • 1
  • 36
  • 46
0
votes
3 answers

Basic authentication with retrofit2 for cloudinary

Im trying to authenticate to Cloudinary API service using the below code but i get 401 unauthorized error, it expects credentials in this format https://API_KEY:API_SECRET@..., when i substitute with actual values it works great with browser/postman…
0
votes
1 answer

POST request shows no visible value

I have recently been working on a project that uses a bit of PHP. I don't know whether my question is obvious to those who have loads of experience, but here goes. I don't know how to get a response from an upload PHP I created. If I have a form,…
v3ryn3rdy
  • 21
  • 1
  • 5
0
votes
0 answers

Django Cloudinary Options

Is there a way to upload images with a specific size like width: 300, height:320 Using this in my model: image = CloudinaryField('image') I think is important to say I am working with the default admin site. image upload is working…
Du_
  • 915
  • 1
  • 9
  • 16
0
votes
2 answers

Javascript: Array of objects, changing value in each object asynchronously

So, I know this has been asked before and I have tried other answers like .map, (function(post){ async })(value), and I am still stuck... so, I have an array of objects and a for loop: var postsData = [{thumbnail: www.website.com/image.jpg},…
Daltron
  • 1,729
  • 3
  • 20
  • 37
0
votes
1 answer

Upload image to cloudinary and to my own server using jquery file upload

I use jQuery File Upload to upload images to my server. Now I want to test out Cloudinary, but during testing I still want to upload all images to my own server as well. The code I use for uploading images to my server is: $(function () { …
Marcel Vogel
  • 149
  • 3
  • 11