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


PHP imagedashedline()用法及代碼示例


imagedashedline()函數是PHP中的內置函數,用於繪製虛線。成功時此函數返回TRUE,否則返回FALSE。

用法:

bool imagedashedline( $image , $x1 , $y1 , $x2 , $y2 , $color )

參數:該函數接受上述和以下所述的六個參數:


  • $image:imagecreatetruecolor()函數用於創建給定尺寸的空白圖像。
  • $x1:此參數用於保留左上角的x坐標。
  • $y1:此參數用於保留左上y坐標。 (0,0)是圖像的左上角。
  • $x2:此參數用於保存右下角的x坐標。
  • $y2:此參數用於保留右下角的y坐標。
  • $color:此變量包含填充的顏色標識符。使用imagecolorallocate()函數創建的顏色標識符。

返回值:如果成功,則此函數返回TRUE;如果失敗,則返回FALSE。

以下示例程序旨在說明PHP中的imagedashedline()函數。

程序1:

<?php 
  
// Create the size of image or blank image 
$image = imagecreatetruecolor(400, 300); 
  
// Set the background color of image 
$background_color = imagecolorallocate($image,  0, 153, 0); 
   
// Fill background with above selected color 
imagefill($image, 0, 0, $background_color); 
  
// Set the color of dotted line in image 
$color = imagecolorallocate($image,  255, 255, 255); 
  
// Draw a dashed line 
imagedashedline($image, 0, 0, 100, 150, $color); 
   
// Output the image 
header("Content-type: image/png"); 
imagepng($image); 
   
?>

輸出:
dotted image

程序2:

<?php 
  
// Create the size of image or blank image 
$image = imagecreatetruecolor(400, 300); 
  
// Set the background color of image 
$background_color = imagecolorallocate($image,  0, 153, 0); 
   
// Fill background with above selected color 
imagefill($image, 0, 0, $background_color); 
  
// Set the color of dotted line in image 
$white = imagecolorallocate($image, 255, 255, 255); 
   
// $value is an array variable stored color 
// code of dotted image 
$values = Array( 
                $white,  
                $white,  
                $white,  
                $white,  
                IMG_COLOR_TRANSPARENT,  
                IMG_COLOR_TRANSPARENT,  
                IMG_COLOR_TRANSPARENT,  
                IMG_COLOR_TRANSPARENT 
                ); 
   
imagesetstyle($image, $values); 
   
// Draw the dashed line 
imageline($image, 50, 150, 300, 150, IMG_COLOR_STYLED); 
   
// Save the image 
header("Content-type: image/png"); 
imagepng($image); 
  
?>

輸出:
dotted image

相關文章:

參考: http://php.net/manual/en/function.imagedashedline.php



相關用法


注:本文由純淨天空篩選整理自Vishal_Khoda大神的英文原創作品 PHP | imagedashedline() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。