Skip to content

Instantly share code, notes, and snippets.

@cagataygurturk
Created December 22, 2014 19:15
Show Gist options
  • Save cagataygurturk/cbe06116714419931e33 to your computer and use it in GitHub Desktop.
Save cagataygurturk/cbe06116714419931e33 to your computer and use it in GitHub Desktop.
Image resize on Imagick
<?php
$thumb = new \Imagick();
$thumb->readimageblob($imagedata['data']);
$thumb->cropThumbnailImage($d->getWidth(), $d->getHeight());
$output = $thumb->getimageblob();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment