英文:
Can I use image processing from an URL in Hugo?
问题
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" -}}
答案1
得分: 2
从hugo v0.91.0
版本开始,你可以使用resources.GetRemote
函数。
源代码:https://github.com/gohugoio/hugo/releases/tag/v0.91.0
示例:
{{ $image := resources.GetRemote "https://i.imgur.com/gZxmnyn.jpeg" }}
英文:
From hugo v0.91.0
++ you can use resources.GetRemote
source : https://github.com/gohugoio/hugo/releases/tag/v0.91.0
example:
{{ $image := resources.GetRemote "https://i.imgur.com/gZxmnyn.jpeg" }}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论