首頁 >後端開發 >php教程 >在PHP中的imagecolorat()函數

在PHP中的imagecolorat()函數

PHPz
PHPz轉載
2023-09-16 14:45:021618瀏覽

在PHP中的imagecolorat()函數

##imagecolorat() 函數取得像素顏色的索引。

語法

imagecolorat( $img, $x, $y )

參數

### img###:使用imagecreatetruecolor() 函數建立影像。###############x###:點的x 座標。############################################################################################################################################# #y:### 點的y 座標。############ 傳回######imagecolorat() 函數失敗時傳回顏色索引或FALSE。######範例# #####以下是範例:###### Live Demo###
<?php
   $img = imagecreatefrompng("http://www.tutorialspoint.com/images/tp-logo-diamond.png");
   $rgb = imagecolorat($img, 15, 25);
   $colors = imagecolorsforindex($img, $rgb);
   var_dump($colors);
?>
### 輸出######以下是輸出結果:###
array(4) { ["red"]=> int(255) ["green"]=> int(255) ["blue"]=> int(255) ["alpha"]=> int(127) }
###

以上是在PHP中的imagecolorat()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除