imagecolortransparent,將某個顏色定義為透明色,PHP 3, PHP 4, PHP 5,
基本介紹
- 外文名:imagecolortransparent
- 性質:將某個顏色定義為透明色
- 版本要求:PHP 3, PHP 4, PHP 5
- 函式說明:resource image
簡介,php版本要求,函式說明,
簡介
imagecolortransparent -- 將某個顏色定義為透明色
php版本要求
(PHP 3, PHP 4, PHP 5)
函式說明
int imagecolortransparent ( resource image [, int color] )
imagecolortransparent() 將 image 圖像中的透明色設定為 color。image 是 imagecreatetruecolor() 返回的圖像標識符,color 是 imagecolorallocate() 返回的顏色標識符。
注: 透明色是圖像的一種屬性,透明度不是顏色的屬性。一旦設定了某個顏色為透明色,圖像中之前畫為該色的任何區域都成為透明的。
返回新透明色的標識符,如果省略 color 則返回當前透明色的標識符。