1
0
Fork 0
hugo/docs/content/en/methods/resource/Height.md

623 B

title description categories keywords params
Height Applicable to images, returns the height of the given resource.
functions_and_methods
returnType signatures
int
RESOURCE.Height

{{% include "/_common/methods/resource/global-page-remote-resources.md" %}}

{{ with resources.Get "images/a.jpg" }}
  {{ .Height }} → 400
{{ end }}

Use the Width and Height methods together when rendering an img element:

{{ with resources.Get "images/a.jpg" }}
  <img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}">
{{ end }}