📜  PHP |想象一下 rollImage()函数

📅  最后修改于: 2022-05-13 01:56:39.480000             🧑  作者: Mango

PHP |想象一下 rollImage()函数

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

句法:

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

参数:该函数接受上面提到的两个参数,如下所述:

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

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

下面的程序说明了PHP中的Imagick::rollImage()函数:

方案一:

rollImage(60, 50);
      
header("Content-Type: image/jpg");
  
// Display the image
echo $imagick->getImageBlob();
?>

输出:

方案二:

setFillColor(new ImagickPixel('green')); 
  
// Set the text font size 
$draw->setFontSize(50); 
  
$matrix = $im->queryFontMetrics($draw, $string); 
$draw->annotation(0, 40, $string); 
$im->newImage($matrix['textWidth'], $matrix['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(); 
?> 

输出:
滚动图像

参考: http: PHP。 PHP