imageline()函数是PHP中的内置函数,用于设置在两个给定点之间绘制线。
用法:
bool imageline( resource $image, int $x1, int $y1, int $x2, int $y2, int $color )
参数:该函数接受上述和以下所述的六个参数:
- $image:它指定要处理的图像资源。
- $x1:它指定起始的x坐标。
- $y1:它指定起始y坐标。
- $x2:它指定结束的x坐标。
- $y2:它指定结束的y坐标。
- $color:它指定线条颜色。
返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。
以下示例说明了PHP中的imageline()函数:
范例1:在此示例中,在图像上添加一行。
<?php
// Create an image instance
$im = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Prepare the line color
$text_color = imagecolorallocate($im, 255, 0, 0);
// Add a line
imageline($im, 40, 100, 640, 100, $text_color);
// Output the image
header('Content-type:image/png');
imagepng($im);
imagedestroy($im);
?>
输出:
范例2:在此示例中,我们将在图纸上添加一条线。
<?php
// Create an image instance
$im = imagecreate(700, 200);
// Initialize the colors
$yellow = imagecolorallocate($im, 255, 255, 0);
$blue = imagecolorallocate($im, 0, 0, 255);
// Add a yellow background
imageline($im, 0, 0, 700, 200, $yellow);
// Add a blue line
imageline($im, 0, 0, 840, 250, $blue);
// Output the image
header('Content-type:image/png');
imagepng($im);
imagedestroy($im);
?>
输出:
参考: https://www.php.net/manual/en/function.imageline.php
相关用法
- PHP next()用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- p5.js pow()用法及代码示例
- PHP each()用法及代码示例
- p5.js second()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP pow( )用法及代码示例
- CSS var()用法及代码示例
- p5.js day()用法及代码示例
- CSS url()用法及代码示例
- p5.js hue()用法及代码示例
- d3.js d3.set.has()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imageline() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。