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

Where do I install a package with npm in Meteor 1.3 so that other npm libraries can require it

I’m trying to get set up with cloudinary in Meteor 1.3 beta, and I’m going for an NPM package right now. I’ve run in to a larger problem where in one of the package libraries there is a declaration crypto = require('crypto'); Which is fine. I just…
Robin Newhouse
  • 2,158
  • 2
  • 19
  • 17
6
votes
0 answers

Response 302 when directly uploading image to Cloudinary from the browser

I follow the Node.js sample project (https://github.com/cloudinary/cloudinary_npm/tree/master/samples) to develop a simple web application that allows users to upload their profile picture. When I try to upload an image directly from the browser, I…
tom1199
  • 61
  • 3
6
votes
0 answers

upload captured image to Cloudinary directly in Android

I want to capture a picture and upload it to Cloudinary directly. How can I know the name of the pic to set it at the upload statement cloudinary.uploader().upload("nameofthepic", Cloudinary.emptyMap());. Here is my code: public class Camera extends…
Aya Radwan
  • 181
  • 5
  • 17
6
votes
2 answers

How do I get a list of my images from cloudinary from client-side JavaScript?

Using the cloudinary API I can get a list of images by GETting the following URL: https://API_KEY:API_SECRET@api.cloudinary.com/v1_1/CLOUD_NAME/resources/image/upload However, using this from client-side JavaScript would expose my account's API key…
drs
  • 5,679
  • 4
  • 42
  • 67
6
votes
2 answers

How to avoid CORS preflight request on file upload?

I am using jquery-fileupload to allow users to upload files to an external service (Cloudinary to be more specific):
andreas
  • 75
  • 1
  • 4
6
votes
3 answers

How to use Cloudinary jQuery plugin to upload images directly from a page?

Beginner's question here. I'm trying to upload the photo from a webpage directly to cloudinary. Here is the jQuery plugin that Cloudinary recommends to use. Unfortunately the plugin is not documented yet, and doesn't have a clear "example.html"…
George Strakhov
  • 616
  • 2
  • 7
  • 10
5
votes
0 answers

How to add a picture to a model (User) in Rails using ActiveStorage and the Cloudinary Upload Widget?

world! After implementing Cloudinary's Active Storage Integration, it's easy to make it work in a form. We just need to add to our simple_form_for a <%= f.input :photo, as: :file %> BUT, if we want to use the Cloudinary Upload Widget, there's…
5
votes
1 answer

adding cloudinary to strapi

Can someone tell me how to install Cloudinary to my Strapi app, I installed the plugin like the documentation said but the plugin doesn't show up at all in my project. Can someone tell me what im doing wrong
GentiJ
  • 51
  • 1
  • 3
5
votes
1 answer

store images locally vs cloudinary vs s3

The settings: Blog with posts, buily with Laravel, where: Every post can have max of 1 image (nullable). Max posts in the blog is 1000. Let's assume there are 1000 posts for the discussion. Every post has a comment section. Where registered users…
nscode
  • 147
  • 1
  • 9
5
votes
1 answer

How to fix image upload in Axios

I'm having trouble in uploading image in react. I use axios for the api request and multer & cloudinary for the file upload. Update: In my dependency: "axios": "^0.19.0" Required dependencies in my .js file: import axios from 'axios'; The image…
CJ Cruz
  • 98
  • 1
  • 2
  • 7
5
votes
3 answers

Cloudinary image upload from React: am including Cloudinary unsigned preset but get "Upload preset must be specified when using unsigned upload"

I'm trying to construct a simple Cloudinary image upload based on this codepen example: https://codepen.io/team/Cloudinary/pen/QgpyOK -- I've converted it to work with fetch but even though I've gone to my Cloudinary settings and created an…
Cerulean
  • 5,543
  • 9
  • 59
  • 111
5
votes
2 answers

Cloudinary python uploader not working

import cloudinary cloudinary.uploader.upload("my_picture.jpg") Gives error AttributeError: module 'cloudinary' has no attribute 'uploader'
Rahul
  • 10,830
  • 4
  • 53
  • 88
5
votes
1 answer

upload image blob to Cloudinary

Im using react and react-router on the frontend, node+express as my backend and cloudinary to store my image files. The issue Im having is that the cloudinary api method cant seems to open/parse the data blob where the image is stored { images: {…
KornholioBeavis
  • 2,402
  • 2
  • 19
  • 26
5
votes
3 answers

How to pass options to CloudinaryField in Django Model?

I am currently using Cloudinary with Django to store user profile pictures and would like to pass parameters to it store it in a folder and and overwrite the existing image instead of creating a new one. In my user model: picture =…
Alex Atwater
  • 151
  • 1
  • 15
5
votes
2 answers

Get Cloudinary image URL

I have a model called Tile, and it has attachment: has_attachment :image_attachment I can use cl_image_tag @tile.image_attachment.path to display img tag but I want to get only full URL to embed is an background image in inline style, is there a way…
szromek
  • 153
  • 10