PHP imagecolorat - 取得某像素的顏色索引值
imagecolorat — 取得某像素的顏色索引值。
語法
int imagecolorat ( resource $image , int $x , int $y )
返回 image 所指定的圖形中指定位置像素的顏色索引值。
如果 PHP 編譯時加上了 GD 庫 2.0 或更高的版本并且圖像是真彩色圖像,則本函數以整數返回該點的 RGB 值。用移位加掩碼來取得紅,綠,藍各自成分的值。
實例
取得各自的 RGB 值。
<?php $im = ImageCreateFromPng("youj-logo.png"); $rgb = ImageColorAt($im, 100, 25); $r = ($rgb >> 16) & 0xFF; $g = ($rgb >> 8) & 0xFF; $b = $rgb & 0xFF; ?>
相關文章
- imagecolorset() 給指定調色板索引設定顏色。
- imagecolorsforindex() 取得某索引的顏色。
更多建議: