Skip to content
Grav 2.0 is officially stable. Read the announcement →
Themes & Styling

Twig: Get image derivatives

Solved by pamtbaau View solution

Started by Jan Krötenstuhl 4 years ago · 2 replies · 605 views
4 years ago

Hello.

I'm relatively new to Grav and currently trying to work out the twig function .derivatives().

Is there a way to not "print" out the result but only use it for further processing?

I wanted to use the function inside a html <picture> element for it's <source>.

Thank you in advance!

4 years ago Solution

@kroetenstuhl,

You can call the Grav API in Twig to suit your needs. Eg.

TWIG
{% set derivatives = (page.media|first).derivatives(100, 1000, 100) %}

# The image with generated derivatives (listed in field 'alternatives')
{{ dump(derivatives)}}

# The final srcset string
{{ dump(derivatives.srcset)}}
👍 2
4 years ago

Thank you so much, @pamtbaau !

Now I feel a bit dumb, of course this is the way. 😅

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by stuart young, 2 weeks ago
3 251 2 weeks ago
Themes & Styling · by Sebadamus, 3 weeks ago
5 317 3 weeks ago
Themes & Styling · by martynfoster735, 4 weeks ago
1 310 4 weeks ago
Themes & Styling · by Justin Young, 1 month ago
1 348 1 month ago
Themes & Styling · by Slebeig, 2 months ago
4 474 2 months ago