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


PHP imagecreatetruecolor()用法及代碼示例


imagecreatetruecolor()函數是PHP中的內置函數,用於創建新的true-color圖像。此函數返回給定尺寸的空白圖像。

用法:

resource imagecreatetruecolor( $width, $height )

參數:該函數接受上述和以下描述的兩個參數:


  • $width:此參數用於設置圖像的寬度。
  • $height:此參數用於設置圖像的高度。

返回值:如果成功,則此函數返回圖像資源標識符;如果錯誤,則返回False。

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

程序1:

<?php 
    
// Set the vertices of polygon 
$values = array( 
            150,  50, // Point 1 (x, y) 
            50, 250,  // Point 2 (x, y) 
            250,  250 // Point 3 (x, y) 
        ); 
      
// Create the size of image or blank image 
$image = imagecreatetruecolor(300, 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); 
   
// Allocate a color for the polygon 
$image_color = imagecolorallocate($image, 255, 255, 255); 
     
// Draw the polygon 
imagepolygon($image, $values, 3, $image_color); 
     
// Output the picture to the browser 
header('Content-type: image/png'); 
     
imagepng($image); 
?>

輸出:
image

程序2:

<?php 
   
// Create the size of image or blank image. 
$image = imagecreatetruecolor(500, 300); 
   
// Display the height of image. 
echo imagesy($image); 
   
?>

輸出:

300

相關文章:

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



相關用法


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