Skip to content

Instantly share code, notes, and snippets.

@jmather
Created October 15, 2012 19:22
Show Gist options
  • Select an option

  • Save jmather/3894587 to your computer and use it in GitHub Desktop.

Select an option

Save jmather/3894587 to your computer and use it in GitHub Desktop.
Making thumbnails with Imagine
$transformation = new Imagine\Filter\Transformation();
$size = new Imagine\Image\Box($image_size['width'], $image_size['height']);
$transformation->thumbnail($size, $image_size['style']);
$image = $transformation->apply($image);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment