Imagick::rollImage

(PECL imagick 2.0.0)

Imagick::rollImageOffsets an image

Описание

bool Imagick::rollImage ( int $x , int $y )

Offsets an image as defined by x and y.

Список параметров

x

The X offset.

y

The Y offset.

Возвращаемые значения

В случае успешной работы возвращает 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.
2020-03-24 16:12:25
http://php5.kiev.ua/manual/ru/imagick.rollimage.html

    Поддержать сайт на родительском проекте КГБ