Perform image transformations on uploadcare URLs
npm install uploadcare-cdnPerform image transformations on uploadcare URLs.
``js
var UploadcareUrl = require('uploadcare-cdn')
var url = 'http://www.ucarecdn.com/cca76eb6-1d25-4fee-a7a9-9516cc161b73/foo.jpg'
UploadcareUrl(url).resize('200x200').invert().toString()
// http://www.ucarecdn.com/cca76eb6-1d25-4fee-a7a9-9516cc161b73/-/resize/200x200/-/invert/foo.jpg
// You can also call the API as static methods on the constructor e.g.
// NOTE: Pass the URL as the first param, returns a STRING
UploadcareUrl.resize(url, '200x200')
`
* format(<'jpeg','png'>)quality(<'normal','better','best','lighter','lightest'>)
* progressive(<'yes','no'>)
* preview(<'200x200'>)
* resize(<'200x200','x200','200x'>)
* crop(<'200x200'>, ['1400,1800', 'center'])
* scaleCrop(<'200x200'>, ['center'])
* stretch(<'on','off','fill'>)
* setFill(<'ece3d2'>)
* autoRotate(<'yes','no'>)
* sharp(<0..20>)
* blur(<0..5000>)
* rotate(<90,180,270>)
* flip()
* mirror()
* greyscale()
* invert()
* nthImage([<'index'>])
* gallery([<'opts'>])
*
For any newer or unsupported operations you can call:
* appendOp(<'-/op/args'>)`
The gallery method will transform a group URL into a gallery URL, which can be embedded as an iframe.
For a list of available options, see the Uploadcare docs.
See https://uploadcare.com/documentation/cdn/ for more info.