I'm Using rails and the cloudinary's gem with carrierwave. I would like make a URL from the controller:
url = myModel.url_field
options = { width: 200 }
Cloudinary::Utils.cloudinary_url(url, options)
But I only get the URL without the crop options
(The urls are only examples)
http://res.cloudinary.com/cloud/image/upload/v1458860591/logos/20160324170310.jpg
There is one way to get the url? like:
http://res.cloudinary.com/cloud/image/upload/w_200/v1458860591/logos/20160324170310.jpg
img
tag. Did you find a solution? – gdvalderrama