This function will make the image wrap around from bottom to top or side to side, hence "roll". If you want to just offset an image without the wrap-around, use Imagick::extentImage instead.(PECL imagick 2, PECL imagick 3)
Imagick::rollImage — Смещает изображение
Смещает изображение в соответствии с определением x и y.
xСмещение по оси X.
yСмещение по оси Y.
   Функция в случае успешной работы возвращает true.
  
Пример #1 Пример использования Imagick::rollImage()
<?php
function rollImage($imagePath, $rollX, $rollY) {
    $imagick = new \Imagick(realpath($imagePath));
    $imagick->rollimage($rollX, $rollY);
    header("Content-Type: image/jpg");
    echo $imagick->getImageBlob();
}
?>This function will make the image wrap around from bottom to top or side to side, hence "roll". If you want to just offset an image without the wrap-around, use Imagick::extentImage instead.