Created
December 22, 2014 19:15
-
-
Save cagataygurturk/cbe06116714419931e33 to your computer and use it in GitHub Desktop.
Image resize on Imagick
This file contains 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 | |
$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