Skip to content

Instantly share code, notes, and snippets.

@woutersf
Created December 30, 2016 10:25
Show Gist options
  • Select an option

  • Save woutersf/a498300921fe2b70ff34f62336f94226 to your computer and use it in GitHub Desktop.

Select an option

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

landsman commented Feb 7, 2017

Copy link
Copy Markdown

Thank you buddy!

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