imagerotate()函数是PHP中的内置函数,用于以给定角度(度)旋转图像。图像的旋转中心为中心。
用法:
resource imagerotate( $image, $angle, $bgd_color, $ignore_transparent = 0 )
参数:该函数接受上述和以下所述的四个参数:
- $image:它由图像创建函数之一(例如imagecreatetruecolor())返回。它用于创建图像的尺寸。
- $angle:此参数以度为单位保存旋转角度。旋转角度用于沿逆时针方向旋转图像。
- $bgd_color:该参数保留旋转后未覆盖区域的背景色。
- $ignore_transparent:如果此参数设置为非零,则将忽略透明颜色。
返回值:如果成功,此函数返回旋转图像的图像资源;如果失败,则返回False。
以下示例程序旨在说明PHP中的imagerotate()函数:
程序1:
<?php
// Assign image file to variable
$image_name =
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png';
// Load image file
$image = imagecreatefrompng($image_name);
// Use imagerotate() function to rotate the image
$img = imagerotate($image, 180, 0);
// Output image in the browser
header("Content-type: image/png");
imagepng($img);
?>
输出:
程序2:
<?php
// It create the size of image or blank image.
$image = imagecreatetruecolor(500, 300);
// Set the background color of image.
$bg = imagecolorallocate($image, 205, 220, 200);
// Fill background with above selected color.
imagefill($image, 0, 0, $bg);
// Set the color of an ellipse.
$col_ellipse = imagecolorallocate($image, 0, 102, 0);
// Function to draw the filled ellipse.
imagefilledellipse($image, 250, 150, 400, 250, $col_ellipse);
// Use imagerotate() function to rotate the image
$img = imagerotate($image, 90, 0);
// Output image in the browser
header("Content-type: image/png");
imagepng($img);
?>
输出:
参考: https://www.php.net/manual/en/function.imagerotate.php
相关用法
- p5.js nf()用法及代码示例
- p5.js nfc()用法及代码示例
- p5.js nfs()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- p5.js nfp()用法及代码示例
- PHP pi( )用法及代码示例
- PHP cos( )用法及代码示例
- PHP sin( )用法及代码示例
- PHP tan( )用法及代码示例
- d3.js d3.rgb()用法及代码示例
- PHP Ds\Set get()用法及代码示例
- PHP pow( )用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | imagerotate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。