Skip to content

Instantly share code, notes, and snippets.

@stormsson
Last active May 19, 2020 12:55
Show Gist options
  • Save stormsson/28559cf08e4dcca5c6ba to your computer and use it in GitHub Desktop.
Save stormsson/28559cf08e4dcca5c6ba to your computer and use it in GitHub Desktop.
PHP - Imagick resize/crop gif
$imagick = new \Imagine\Imagick\Imagine();
$image = $imagick->open($image_path);
$image = $image->getImagick()->coalesceImages();
foreach ($image as $frame)
{
$frame->cropImage($crop_w,$crop_h,0,0);
$frame->thumbnailImage($resize_w,$resize_h);
$frame->setImagePage($resize_w,$resize_h, 0, 0);
}
$image = $image->deconstructImages();
$image->writeImages($image_path, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment