GmagickDraw::rotate()函数是PHP中的内置函数,用于将指定的旋转应用于当前坐标空间。
用法:
GmagickDraw GmagickDraw::rotate( array $coordinates_array )
参数:该函数接受单个参数$coordinates_array,该参数用于保存旋转度值。
返回值:成功时,此函数返回GmagickDraw对象。
异常:该函数在错误时引发GmagickDrawException。
使用的图片:用于画布区域。
下面给出的程序说明了PHP中的GmagickDraw::rotate()函数:
程序1:在此示例中,我们将旋转矩形。
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Draw rectangle for background
$draw->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:在此示例中,我们将旋转文本。
<?php
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
// Create a GmagickDraw object
$draw = new GmagickDraw();
// Draw rectangle for background
$draw->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
相关用法
- PHP GmagickDraw arc()用法及代码示例
- PHP GmagickDraw polyline()用法及代码示例
- PHP GmagickDraw getstrokecolor()用法及代码示例
- PHP GmagickDraw polygon()用法及代码示例
- PHP GmagickDraw roundrectangle()用法及代码示例
- PHP GmagickDraw ellipse()用法及代码示例
- PHP GmagickDraw getfillcolor()用法及代码示例
- PHP GmagickDraw getfillopacity()用法及代码示例
- PHP GmagickDraw setfillcolor()用法及代码示例
- PHP GmagickDraw setfont()用法及代码示例
- PHP GmagickDraw settextencoding()用法及代码示例
- PHP GmagickDraw getfont()用法及代码示例
- PHP GmagickDraw getfontweight()用法及代码示例
- PHP GmagickDraw getstrokewidth()用法及代码示例
- PHP GmagickDraw getfontstyle()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | GmagickDraw rotate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。