phMagick code samples

These are the code examples available for phMagick

Browse them, read the code, see the result of each code block, and have fun

If you have questions ot suggestions just drop us a line

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);