PHP 8.3.4 Released!

Imagick::rollImage

(PECL imagick 2, PECL imagick 3)

Imagick::rollImageGörüntünün başlangıç noktasını tanımlar

Açıklama

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

Görüntünün başlangıç noktasını tanımlar.

Bağımsız Değişkenler

x

Noktanın X konumu.

y

Noktanın Y konumu.

Dönen Değerler

Başarı durumunda true döner.

Örnekler

Örnek 1 - Imagick::rollImage() örneği

<?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
3 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