📜  PHP | GmagickDraw rotate()函数

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

PHP | GmagickDraw rotate()函数

GmagickDraw::rotate()函数是PHP中的一个内置函数,用于将指定的旋转应用于当前坐标空间。

句法:

GmagickDraw GmagickDraw::rotate( array $coordinates_array )

参数:此函数接受单个参数$coordinates_array用于保存旋转度数的值。

返回值:此函数在成功时返回 GmagickDraw 对象。

异常:此函数在出错时抛出 GmagickDrawException。

使用的图像:用于画布区域。

下面给出的程序说明了PHP中的GmagickDraw::rotate()函数

程序 1:在本例中,我们将旋转矩形。

rectangle(-100, -1000, 800, 400);
  
// Set the fill color
$draw->setFillColor('white');
  
// Set the stroke color
$draw->setstrokecolor('blue');
  
// Rotate by 4 degrees
$draw->rotate(4);
  
// Set the stroke width
$draw->setStrokeWidth(5);
  
// Create a rectangle
$draw->rectangle(100, 20, 400, 100); 
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

程序 2:在本例中,我们将旋转文本。

rectangle(-100, -1000, 800, 400);
  
// Set the font size
$draw->setfontsize(25);
  
// Set the stroke color
$draw->setstrokecolor('blue');
  
// Rotate by 40
$draw->rotate(40);
  
// Annotate a text
$draw->annotate(20, -50, 'GeeksforGeeks');
  
// Use of drawimage function
$gmagick->drawImage($draw);
  
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/gmagickdraw.rotate。 PHP