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

huangapple go评论74阅读模式
英文:

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

huangapple
  • 本文由 发表于 2022年3月8日 06:02:58
  • 转载请务必保留本文链接:https://go.coder-hub.com/71387777.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定