github.com/jbramsden/hugo@v0.47.1/docs/content/en/functions/imageConfig.md (about)

     1  ---
     2  linktitle: imageConfig
     3  description: Parses the image and returns the height, width, and color model.
     4  godocref:
     5  date: 2017-02-01
     6  publishdate: 2017-02-01
     7  lastmod: 2017-02-01
     8  categories: [functions]
     9  menu:
    10    docs:
    11      parent: "functions"
    12  keywords: [images]
    13  signature: ["imageConfig PATH"]
    14  workson: []
    15  hugoversion:
    16  relatedfuncs: []
    17  deprecated: false
    18  ---
    19  
    20  ```
    21  {{ with (imageConfig "favicon.ico") }}
    22  favicon.ico: {{.Width}} x {{.Height}}
    23  {{ end }}
    24  ```