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

Unable to upload seed data with Attachinary gem "Undefined method `photos_urls=' for object"

I'm trying to upload seed data for my Photoshoot model which consists of multiple for urls like so: 10.times { urls = [ 'http://lorempixel.com/400/400/', 'http://lorempixel.com/400/400/', 'http://lorempixel.com/400/400/', …
Hugo Hyz
  • 41
  • 2
  • 10
0
votes
1 answer

How to detect if CloudinaryField in django model is empty in template

picture = CloudinaryField('image', blank = True, null = True) I have the above line in my django models file. And I am rendering the picture in my template with the cloudinary tag {% cloudinary "filename" %} But in cases where the model objects…
user4822631
0
votes
2 answers

How to upload an image to cloudinary

I want to upload an image to cloudinary form my NodeJS api, i have my model, in this model i have a field called image, this field is type string and here I want to save the url that a receive as response of cloudinary. Here is my model.js 'use…
SupineDread89
  • 580
  • 2
  • 7
  • 17
0
votes
1 answer

image upload with external url in node.js

var uploadPAN = app.post('/upload', multipartMiddleware, function(req, res) { cloudinary.v2.uploader.upload(req.files.image.path, { ocr: "adv_ocr" }, function(error, result) { if( result.info.ocr.adv_ocr.status ===…
Shitija
  • 5
  • 4
0
votes
0 answers

Attachinary Error on Heroku while it's working in local

I am trying to make a simple_form with an input for attachment so that when users are done with completing the forms, it sends me a mail through Postmark. I have been setting up attachinary and everything works fine in localhost but as soon as I…
0
votes
1 answer

Cloudinary responsive images only displaying on window size change in React using Webpack

I am serving cloudinary images responsively following this documentation: http://cloudinary.com/blog/how_to_automatically_create_images_for_responsive_design#implementing_responsive_design_with_cloudinary_s_javascript_library My index.hjs looks like…
Nolan Davis
  • 125
  • 1
  • 1
  • 7
0
votes
1 answer

How to perform a two callback functionality?

I am using the cloudinary api with REACT/AXIOS and was wondering how I could pull data before the axios call and also after. My problem I am having is that if I use one callback I can only put the one or the other data. So is it possible to use two…
user7366497
0
votes
1 answer

Is it possible to avoid ADK uses in Xamarin?

I need to implement few features, however, they do not seem to be possible, and I don't have a lot of implementation time. I have a solution PCL (.NET 4.5, Profile=111) and for some reasons (that I don't understand from hours now), I can't install…
Emixam23
  • 3,854
  • 8
  • 50
  • 107
0
votes
1 answer

ActiveRecord::RecordNotFound in UsersController#update

enter image description hereI have added a page to complete his profile after creating an account indicating only the e-mail address and password, so we find ourselves on the page that completes his profile, add photos to His account ... everything…
eth3rnit3
  • 687
  • 1
  • 5
  • 23
0
votes
1 answer

Cloudinary: Class cloudder not found in production, works fine locally

I am using this cloudinary package https://github.com/jrm2k6/cloudder on my laravel 5.4 project, it works fine on the local machine but throws an error called class cloudder not found in production.
Nicholas Francis
  • 3,623
  • 2
  • 19
  • 22
0
votes
1 answer

Ajax upload of images to cloudinary rails 5 fails without error

I am using carrierwave and cloudinary on my rails app (backend) with the following update with PATCH action on covers_controller: def update @book = Book.friendly.find(params[:slug]) unless @book.nil? @cover = @book.cover end …
Marvin Danig
  • 3,738
  • 6
  • 39
  • 71
0
votes
0 answers

Product image in gmap4rails infowindow with cloudinary

I want to display my product image in a marker infowindow, but I get a broken link error: qmxjai8cmuuve5mnpf4y.jpg:1 GET localhost:3000/v1503135294/qmxjai8cmuuve5mnpf4y.jpg 404 (Not Found) I don't know how to include a cloudinary link in my…
Wako
  • 140
  • 1
  • 15
0
votes
1 answer

How to retreive image captions from cloudinary and rails?

I'm trying to add a caption below my cloudinary image. On the cloudinary website, I've added my caption under the "edit metadata" field, but I can't figure out how to retrieve it. My controller: require 'cloudinary' results =…
Ben
  • 367
  • 1
  • 5
  • 19
0
votes
2 answers

How to set a specific json response object as a js var - Cloudinary

I am using Cloudinary to host my profile images that are set by users. I'm mostly using PHP for my web application -> Here are the instructions as provided by Cloudinary http://cloudinary.com/documentation/php_image_upload#overview The problem that…
francoiscx
  • 327
  • 2
  • 17
0
votes
1 answer

Cloudinary.url is not working as expected

I'm wanting to convert an image url so it can include the transformation properties (I want to change the width and height). Here is an example of what I store in my database (the url Cloudinary gives us when we upload an…
James111
  • 15,378
  • 15
  • 78
  • 121