當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。