can I get an image url instead of an img tag from the cloudinary.image function?
rather than getting the full image tag, I'd like to just get the image_url from the cloudinary.image transformation function. Is this possible?
0
-
You can indeed get a URL rather than an img tag.
For example, in Node.js:
cloudinary.url("my_image.jpg", { width: 50, height: 50, crop: 'fit' } )
For more information:
http://cloudinary.com/documentation/node_image_manipulation#direct_url_building0
Post is closed for comments.
Comments
1 comment