Imagick::rollImage

(PECL imagick 2.0.0)

Imagick::rollImageOffsets an image

Beschreibung

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

Offsets an image as defined by x and y.

Parameter-Liste

x

The X offset.

y

The Y offset.

Rückgabewerte

Liefert TRUE bei Erfolg.

Beispiele

Beispiel #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();
}

?>