php教程

Imagick::rollImage

(PECL imagick 2.0.0)

Imagick::rollImageOffsets an image

说明

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

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

?>

User Contributed Notes

There are no user contributed notes for this page.

CopyRight © 2008-2022 verySource.Com All Rights reserved. 京ICP备17048824号-1 京公网安备:11010502034788