当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imageline()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | imageline() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。