Code: Select all
$imagickPostBlock = new Imagick($imagePath);
$imagickPostBlock = $imagickPostBlock->coalesceImages();
foreach($imagickPostBlock as $frame){
$frame->thumbnailImage($postblockWidth, $postblockHeight);
$frame->setImagePage($postblockWidth, $postblockHeight, 0, 0);
}
$imagickPostBlock->writeImages($postPath.'/postblock'.$filename,true);
Thanks