Cropping images
Not stable 255: Test results not checked
crops an image
Code:
$phMagick = new \phMagick\Core\Runner();
$action = new \phMagick\Action\SimpleCrop($this->originalFile, $this->newFile);
$action->setWidth(70);
$action->setHeight(100);
$action->setTop(0);
$action->setLeft(0);
$action->setGravity('center');
$phMagick->run($action);