Imagick::rollImage

(PECL imagick 2, PECL imagick 3)

Imagick::rollImageOffsets an image

說明

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

Offsets an image as defined by x and y.

參數(shù)

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

?>