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를 반환합니다.

예제

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

?>

add a note add a note

User Contributed Notes 1 note

up
1
simonjjarrett at gmail dot com
4 years ago
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.
To Top