Questions tagged [uploadcare]

Uploadcare is a service for uploading images and other files using API or HTML form widget, and storing them in CDN. The CDN provides image manipulation commands in URL.

Summary

Uploadcare is a service for uploading images and other files using API or HTML form widget, and storing them in CDN. The CDN provides image manipulation commands in URL.

Uploading Files from HTML forms

Uploadcare widget can be added to HTML form with one line:

<!-- This will render a widget. Don't forget to import JS library (see docs) -->
<input type="hidden" role="uploadcare-uploader" name="my_file" />

It will be displayed as a button. When clicking on the button, a dialog opens that allows you to upload a file from your disk, or from a number of other sources: Facebook, Instagram, Dropbox, Google Drive, Box, Flickr and others, or from a URL.

Example: http://jsbin.com/tequl/2

Image Manipulation using CDN

Once an image is uploaded and stored in CDN, the URL-based API can be used to crop, resize or apply an effect to the image. For example, originally uploaded image:

http://ucarecdn.com/5651bbb6-c599-44bd-9c63-1db5e67db6ad/kitty.jpg

Cropped and centered:

http://ucarecdn.com/5651bbb6-c599-44bd-9c63-1db5e67db6ad/-/crop/200x300/center/kitty.jpg

Image manipulations can be sequenced. For example:

http://ucarecdn.com/5651bbb6-c599-44bd-9c63-1db5e67db6ad/-/crop/200x300/center/-/resize/400x/kitty.jpg

More info

https://uploadcare.com/documentation/

84 questions
0
votes
1 answer

Rails and Uploadcare - keep original image file after edit form?

I'm using Uploadcare to manage images for my Rails app. I can upload images from my computer and from URLs without issue. BUT. I have an edit form for users to edit their entries. The user can change their entry and the image associated with it, but…
0
votes
1 answer

How to hide choose file button from Uploadcare widget

Once the image is uploaded using Uploadcare widget, how to hide the choose button and show remove button if an image is uploaded?
<%= image_tag resource.picture.present? ? resource.picture.url :…
Rathishkumar
  • 119
  • 2
  • 10
0
votes
1 answer

How to get uploadcare widget in angularjs to update with model changes

I am using this uploadcare widget in my angularjs app although when I use an angular model as the value for an attribute in the app, the uploadCare widget isn't effected. Everything works except for the "derp" value, which I suspect is changed after…
P0lska
  • 461
  • 1
  • 6
  • 17
0
votes
1 answer

Uploadcare: Having trouble using Java Library to copy files from Uploadcare storage to AWS S3 bucket

I'm very new to Uploadcare. I am trying to retrieve a file UUID from Uploadcare, then use that UUID to copy the image to my S3 storage bucket. I am using the Uploadcare API available on git-hub:here. The code is super easy to implement. Here's what…
tkp432
  • 13
  • 1
  • 3
0
votes
1 answer

tracking multiple files in uploadcare

This is uploadcare question. we have .done() .fail() .progress() in fileFrom() for single file so we can tracking the upload file. But we don't have .done() .fail() .progress() in `filesFrom() multiple files, how can we track the files?
vzhen
  • 11,137
  • 13
  • 56
  • 87
0
votes
2 answers

uploadcare how to get a listing of files like a file manager

Ive just started taking a look at the uploadcare product and its api. Ive just realized that the API only seems to allow you to upload files with no way of viewing a listing of the files once they are uploaded. Would anyone happen to know if its…
user125264
  • 1,809
  • 2
  • 27
  • 54
-1
votes
1 answer

How to turn nested jQuery Promises into flat code structure using .done() and .then()

Below's code using jQuery promises in combination with callbacks does the following: Saves Group UUID to server using storeGroupOnServer() Creates a DOM element for the group using createGroupDomNode() Creates child elements for each image, using…
bart
  • 14,958
  • 21
  • 75
  • 105
-1
votes
1 answer

Uploadcare object saving only uuid

I am using the gem "uploadcare-rails", ">= 0.1.0" https://github.com/mouseed/uploadcare-rails in my Rails application for uploading images. After file upload it assigns uuid to value of the image column. It only save the uuid in the image column…
-2
votes
2 answers

Ionic 4 Uploadcare ERR_CONNECTION_REFUSED

I'm getting this error when i try to upload some picture via Ionic 4 using Uploadcare (Cannot display the image because of the error) How could I fix that? Thanks you so much UPDATED: Now im having this error without doing anything... don't know…
M. Mariscal
  • 1,226
  • 3
  • 17
  • 46
1 2 3 4 5
6