我可以在 Hugo 中使用来自 URL 的图像处理吗?

Can I use image processing from an URL in Hugo?

hugo documentation 允许使用页面和全局资源来获取图像。我想知道是否可以通过 url 获取图像?像这样:

{{- $image := resources.Get "https://i.imgur.com/gZxmnyn.jpeg" -}}

来自 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" }}