Imagick::rollImage

(PECL imagick 2, PECL imagick 3)

Imagick::rollImage β€” DΓ©cale une image

Description

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

DΓ©cale une image, d'un vecteur x, y.

Liste de paramètres

x

Le dΓ©calage en abscisse.

y

Le dΓ©calage en ordonnΓ©e.

Valeurs de retour

Retourne true en cas de succès.

Exemples

Exemple #1 Exemple avec 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

User Contributed Notes 1 note

up
2
simonjjarrett at gmail dot com ΒΆ
5 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