Skip to content

Instantly share code, notes, and snippets.

@woutersf
Created December 30, 2016 10:25
Show Gist options
  • Save woutersf/a498300921fe2b70ff34f62336f94226 to your computer and use it in GitHub Desktop.
Save woutersf/a498300921fe2b70ff34f62336f94226 to your computer and use it in GitHub Desktop.
Drupal 8 image-Style an image
<?php
use Drupal\image\Entity\ImageStyle;
use \Drupal\file\Entity\File;
//Load the file
$file_id = 2;
$file = file_load($file_id);
//Render the IMage style "large"
$image_large_url = ImageStyle::load('large')->buildUrl($file->getFileUri());
@landsman
Copy link

landsman commented Feb 7, 2017

Thank you buddy!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment