imagecreatetruecolor
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
imagecreatetruecolor — 新建一個真彩色影象
說明
imagecreatetruecolor(int
$width
, int $height
): resource
imagecreatetruecolor() 返回一個影象識別符號,代表了一幅大小為
x_size
和 y_size
的黑色影象。
是否定義了本函式取決於 PHP 和 GD 的版本。從 PHP 4.0.6 到 4.1.x 只要載入了 GD 模組本函式一直存在,但是在沒有安裝 GD2 的時候呼叫,PHP 將發出致命錯誤並退出。在 PHP 4.2.x 中此行為改為發出警告而不是錯誤。其它版本只在安裝了正確的 GD 版本時定義了本函式。
參數
-
width
-
影象寬度。
-
height
-
影象高度。
返回值
成功后返回圖像對像,失敗后返回 false
。
範例
示例 #1 新建一個新的 GD 影象流並輸出影象
<?php
header ('Content-Type: image/png');
$im = @imagecreatetruecolor(120, 20)
or die('Cannot Initialize new GD image stream');
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
imagepng($im);
imagedestroy($im);
?>
以上例程的輸出類似於: