首頁 > 後端開發 > php教程 > 如何使用imagecreatetruecolor()在PHP中建立新的真彩色影像?

如何使用imagecreatetruecolor()在PHP中建立新的真彩色影像?

WBOY
發布: 2023-09-06 17:26:02
轉載
1743 人瀏覽過

imagecreatetruecolor( )是PHP中的內建函數,用於建立新的真彩色影像。它傳回一個給定大小的空白圖像。

語法

resource imagecreatetruecolor($width, $height)
登入後複製

參數

imagecreatetruecolor() 採用兩個參數,$width$< /span>高度

  • $寬度 - $< /span>width 參數用於設定影像寬度。

  • $height - $< /span>height 參數用於設定影像高度。

傳回值

imagecreatetruecolor() 傳回影像成功時傳回資源標識符,錯誤時傳回 false。

範例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(700, 350);

   // Set the background color of image
   $background_color = imagecolorallocate($image, 122, 122, 122);

   // Fill background with above selected color
   imagefill($image, 0, 0, $background_color);

   // Allocate a color for the polygon
   $image_color = imagecolorallocate($image, 0, 255, 255);

   // Draw the polygon
   imagepolygon($image, $values, 3, $image_color);

   // Output the picture to the browser
   header(&#39;Content-type: image/png&#39;);

   imagepng($image);
?>
登入後複製

輸出

如何使用imagecreatetruecolor()在PHP中建立新的真彩色影像?

#範例2 - 下面的PHP程式碼將建立一個新的GD圖像流

<?php
   header (&#39;Content-Type: image/gif&#39;);
   $img = @imagecreatetruecolor(550, 220)
   or die(&#39;Cannot Initialize new GD image stream&#39;);
   $text_color = imagecolorallocate($img, 255, 255, 0);
   
   imagestring($img, 10, 50, 50, &#39;A Simple PHP Example&#39;, $text_color);
   imagepng($img);
   imagedestroy($img);
?>
登入後複製

輸出

如何使用imagecreatetruecolor()在PHP中建立新的真彩色影像?

#

以上是如何使用imagecreatetruecolor()在PHP中建立新的真彩色影像?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板