PHP imagecolorallocate – 為一幅圖像分配顏色
PHP imagecolorallocate - 為一幅圖像分配顏色
imagecolorallocate — 為一幅圖像分配顏色。
語法
int imagecolorallocate ( resource $image , int $red , int $green , int $blue )
imagecolorallocate() 返回一個標識符,代表了由給定的 RGB 成分組成的顏色。red,green 和 blue 分別是所需要的顏色的紅,綠,藍成分。這些參數是 0 到 255 的整數或者十六進制的 0x00 到 0xFF。imagecolorallocate() 必須被調用以創建每一種用在 image 所代表的圖像中的顏色。
如果分配失敗則返回 -1。
注意:第一次對 imagecolorallocate() 的調用會給基于調色板的圖像填充背景色,即用 imagecreate() 建立的圖像。
實例
<?php header("Content-type: image/png"); $im = @imagecreate(100, 50) or die("不能初始化新的 GD 圖像流"); $background_color = imagecolorallocate($im, 255, 255, 255); $text_color = imagecolorallocate($im, 233, 14, 91); imagestring($im, 1, 5, 5, "A Simple Text String", $text_color); imagepng($im); imagedestroy($im); ?>
以上實例輸出結果的圖片如下:

相關文章
- imagecolorallocatealpha() 為一幅圖像分配顏色和透明度。
- imagecolordeallocate() 取消圖像顏色的分配。
相關文章
- PHP 教程
- PHP echo 和 print 語句
- PHP EOF(heredoc) 使用說明
- PHP 運算符
- PHP 數組
- PHP 文件上傳
- PHP Cookie
- PHP 高級過濾器
- PHP array_flip() 函數
- PHP array_intersect_assoc() 函數
- PHP array_push() 函數
- PHP array_reverse() 函數
- PHP array_udiff_uassoc() 函數
- PHP array_unique() 函數
- PHP extract() 函數
- PHP prev() 函數
- PHP uksort() 函數
- PHP 5 Array 函數
- PHP FTP 函數
- PHP 5 Math 函數