Skip to content

Instantly share code, notes, and snippets.

@mimalef70
Last active February 24, 2018 13:28
Show Gist options
  • Save mimalef70/b8c8c30e957ae5c3951ea9fa7784c1b4 to your computer and use it in GitHub Desktop.
Save mimalef70/b8c8c30e957ae5c3951ea9fa7784c1b4 to your computer and use it in GitHub Desktop.
<?php
$image_uri = $node->field_image['und'][0]['uri']; // or any public://my_image
$style = '360x500';
$derivative_uri = image_style_path($style, $image_uri);
$success = file_exists($derivative_uri) || image_style_create_derivative(image_style_load($style), $image_uri, $derivative_uri);
$image_url = file_create_url($derivative_uri);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment