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

发布于 2025-01-12 12:21:46 字数 285 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灯角 2025-01-19 12:21:46

从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" }}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文