©
本文档使用
php.cn手册 发布
(PECL imagick 2.0.0)
Imagick::rollImage — Offsets an image
$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 ();
}
?>