(PECL imagick 2.0.0)
Offsets an image
bool Imagick::rollImage ( int $x, int $y )
Offsets an image as defined by x and y.
Parameters:
x
The X offset.
y
The Y offset.
Returns:
Returns TRUE
on success.
Examples:
Imagick::rollImage()
1 2 3 4 5 6 7 8 9 | <?php function rollImage( $imagePath , $rollX , $rollY ) { $imagick = new \Imagick( realpath ( $imagePath )); $imagick ->rollimage( $rollX , $rollY ); header( "Content-Type: image/jpg" ); echo $imagick ->getImageBlob(); } ?> |
Please login to continue.