mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
1.1 KiB
1.1 KiB
title | description | categories | keywords | action | aliases | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
images.Config | Returns an image.Config structure from the image at the specified path, relative to the working directory. |
|
|
See image processing for an overview of Hugo's image pipeline.
{{ $ic := images.Config "/static/images/a.jpg" }}
{{ $ic.Width }} → 600 (int)
{{ $ic.Height }} → 400 (int)
Supported image formats include GIF, JPEG, PNG, TIFF, and WebP.
{{% note %}}
This is a legacy function, superseded by the Width
and Height
methods for global, page, and remote resources. See the image processing section for details.
{{% /note %}}