PHP | Gmagick rotateimage()函数
Gmagick::rotateimage()函数是PHP中的一个内置函数,用于将图像旋转指定的度数。用背景颜色填充的背景空三角形。
句法:
Gmagick Gmagick::rotateimage ( $color, $degrees )
参数:该函数接受上面提到的两个参数,如下所述:
- $color:此参数用于设置背景颜色像素。
- $degrees:这个参数用来设置旋转的度数。
返回值:此函数在成功时返回 Gmagick 对象。
错误/异常:此函数在错误时抛出 GmagickException。
下面的程序说明了PHP中的Gmagick::rotateimage()函数:
方案一:
输入图像:
php
rotateimage('red', 35);
header('Content-type: image/png');
// Output the image
echo $gmagick;
?>
php
setStrokeOpacity(1);
$draw->setStrokeColor('Red');
$draw->setFillColor('Green');
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
// Function to draw circle
$draw->circle(250, 250, 100, 150);
// Create a GmagickDraw object
$gmagick = new Gmagick();
// Function to create new image of given size
$gmagick->newImage(500, 500, 'White');
// Function to set image format
$gmagick->setImageFormat("png");
// Function to draw image
$gmagick->drawImage($draw);
// Rotate the image
$gmagick->rotateimage('yellow', 35);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
方案二:
PHP
setStrokeOpacity(1);
$draw->setStrokeColor('Red');
$draw->setFillColor('Green');
// Set the width and height of image
$draw->setStrokeWidth(7);
$draw->setFontSize(72);
// Function to draw circle
$draw->circle(250, 250, 100, 150);
// Create a GmagickDraw object
$gmagick = new Gmagick();
// Function to create new image of given size
$gmagick->newImage(500, 500, 'White');
// Function to set image format
$gmagick->setImageFormat("png");
// Function to draw image
$gmagick->drawImage($draw);
// Rotate the image
$gmagick->rotateimage('yellow', 35);
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: http: PHP。 PHP