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