php去掉圖片顏色的方法:先建立一個PHP範例檔;然後透過「imagecolortransparent($image,imagecolorallocate(...));」方法去掉圖片裡的顏色,並讓其變成透明即可。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
PHP 怎麼去掉一張圖片裡的一些顏色,讓其變成透明?
用imagecolortransparent
兩個參數第一個是圖片,第二個是匹配的顏色
匹配顏色是ImageColorAllocate
完整的演示例如:
imagecolortransparent($image,imagecolorallocate($image,255,255,255));
這樣就是把匹配到的白色變成透明
函數介紹:
一些顏色的話用循環把匹配顏色循環變透明
imagecolortransparent
— 將某個顏色定義為透明色。
語法
int imagecolortransparent ( resource $image [, int $color ] )
imagecolortransparent() 將 image 影像中的透明色設定為 color。 image 是 imagecreatetruecolor() 傳回的圖像標識符,color 是 imagecolorallocate() 傳回的顏色標識符。
注意:透明色是影像的屬性,透明度不是顏色的屬性。一旦設定了某個顏色為透明色,圖像中先前畫為該色的任何區域都成為透明的。
傳回新透明色的標識符,如果省略 color 則傳回目前透明色的標識符。
注意:透明度只能透過 imagecopymerge() 和真彩色影像拷貝,不能用 imagecopy() 或調色盤影像。
【推薦學習:《PHP影片教學》】
以上是php怎麼去掉圖片顏色的詳細內容。更多資訊請關注PHP中文網其他相關文章!