当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Imagick rollImage()用法及代码示例


Imagick::rollImage()函数是PHP中的内置函数,用于滚动图像。

用法:

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

参数:该函数接受上述和以下描述的两个参数:


  • $x:此参数存储X偏移的值。
  • $y:此参数存储Y偏移的值。

返回值:成功时此函数返回True。
原始图片:

以下示例程序旨在说明PHP中的Imagick::rollImage()函数:

示例1:

<?php 
  
// Create an Imagick object   
$imagick = new \Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-19.png'); 
  
// Use rollImage function 
$imagick->rollImage(60, 50); 
      
header("Content-Type: image/jpg"); 
  
// Display the image 
echo $imagick->getImageBlob(); 
?>

输出:

示例2:

<?php  
  
$string = "Computer Science portal for Geeks!";  
  
// Creating new image of above String  
// and add color and background  
$im = new Imagick();  
$draw = new ImagickDraw();  
  
// Fill the color in image  
$draw->setFillColor(new ImagickPixel('green'));  
  
// Set the text font size  
$draw->setFontSize(50);  
  
$metrix = $im->queryFontMetrics($draw, $string);  
$draw->annotation(0, 40, $string);  
$im->newImage($metrix['textWidth'], $metrix['textHeight'],  
        new ImagickPixel('white'));  
  
// Draw the image          
$im->drawImage($draw);  
  
// Roll the Image 
$im->rollImage(70, 50); 
  
$im->setImageFormat('jpeg');  
  
header("Content-Type: image/jpg");  
  
// Display the output image  
echo $im->getImageBlob();  
?> 

输出:
rollImage

参考: http://php.net/manual/en/imagick.rollimage.php



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | Imagick rollImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。