Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

Twig: Get image derivatives

Solved by pamtbaau View solution

Started by Jan Krötenstuhl 4 years ago · 2 replies · 636 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 FrViPofm, 13 hours ago
1 25 35 minutes ago
Themes & Styling · by stuart young, 1 month ago
3 480 1 month ago
Themes & Styling · by Sebadamus, 2 months ago
5 481 2 months ago
Themes & Styling · by martynfoster735, 2 months ago
1 460 2 months ago
Themes & Styling · by Justin Young, 2 months ago
1 490 2 months ago