Created
December 30, 2016 10:25
-
-
Save woutersf/a498300921fe2b70ff34f62336f94226 to your computer and use it in GitHub Desktop.
Drupal 8 image-Style an image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you buddy!