我可以在 Hugo 中使用来自 URL 的图像处理吗?
Hugo 文档允许使用页面和全局资源来获取图像。我想知道是否可以通过 url 获取图像?像这样的事情:
{{- $image := resources.Get "https://i.imgur.com/gZxmnyn.jpeg" -}}
The hugo documentation allows to use page and global resources to get an image. I was wondering if it's possible to get an image by an url? Something like this:
{{- $image := resources.Get "https://i.imgur.com/gZxmnyn.jpeg" -}}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从hugo
v0.91.0
++开始,您可以使用resources.GetRemote
源:https://github.com/gohugoio/hugo/releases/tag/v0.91.0
示例:
From hugo
v0.91.0
++ you can useresources.GetRemote
source : https://github.com/gohugoio/hugo/releases/tag/v0.91.0
example: