为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用 Node.js 从 Cloudinary 检索图像 url?

如何使用 Node.js 从 Cloudinary 检索图像 url?

慕标5832272 2022-07-08 15:56:21
我使用 Cloudinary 将图像上传到 cloudinary,cloudinary.uploader.upload(image, public_id:, function(error, result){console.log(result)})然后给我上传的图像的图像 url。有没有办法只使用我的云名称、api 密钥和图像的 public_id 从 Cloudinary 检索图像 url?
查看完整描述

1 回答

?
ABOUTYOU

TA贡献1812条经验 获得超5个赞

要直接通过 Node JS 生成 Cloudinary URL,可以使用 cloudinary.url 函数。它接受以下内容:


// cloudinary.url("<public_id>.<format>", {<transformations>})  

// Example

cloudinary.url("sample.jpg", {width: 100, height: 150, crop: "fill"})

// Output: "https://res.cloudinary.com/demo/image/upload/w_100,h_150,c_fill/sample.jpg"

来源:https ://cloudinary.com/documentation/node_image_manipulation#direct_url_building


查看完整回答
反对 回复 2022-07-08
  • 1 回答
  • 0 关注
  • 111 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信