n How to get image field with style in preprocess node in Drupal 8 & 9 | CodimTh

Please Disable Your Browser Adblock Extension for our site and Refresh This Page!

our ads are user friendly, we do not serve popup ads. We serve responsible ads!

Refresh Page
Skip to main content
On . By CodimTh
Category:

How to get image field with style in preprocess node in Drupal 8 & 9

 

Code snippet that can be used to get image field with style in preprocess node in Drupal 8 & 9:

use Drupal\image\Entity\ImageStyle;

function THEMENAME_preprocess_node(&$vars) { 
   if(($node->getType() == 'article') ) {
    $id = $node->field_logo->entity->getFileUri();
    $url = ImageStyle::load('partner')->buildUrl($id);
    $variables['image_url'] = $url;
  }
}

 

Then, in your node--article.html.twig:

<div style="background-image:url('{{ image_url }}'); background-size: cover"></div>

Riadh Rahmi

Senior Web Developer PHP/Drupal & Laravel

I am a senior web developer, I have experience in planning and developing large scale dynamic web solutions especially in Drupal & Laravel.

Web Posts

Search

Page Facebook