imageWidth

Usage

The | imageWidth filter attempts to identify the width, in pixels, of the provided image source.

{% set resizedImage = 'banner.jpg' | media | resize(1920, 1080) %}
<img src="{{ resizedImage }}" width="{{ resizedImage | imageWidth }}" />

NOTE: This filter does not support thumbnail (already resized) versions of FileModels being passed as the image source.

See the image resizing docs for more information on what image sources are supported.

NOTE: The image resizing functionality requires a cache driver that persists cache data between requests in order to function, array is not a supported cache driver if you wish to use this functionality.

Copyright © 2024 Winter CMS
Edit on GitHub