ImagickPixel::setIndex()函數是PHP中的內置函數,用於設置像素的顏色圖索引。
用法:
bool ImagickPixel::setIndex( int $index )
參數:該函數接受單個參數$index,該參數保存要設置的索引。
返回值:成功時此函數返回TRUE。
以下示例程序旨在說明PHP中的ImagickPixel::setIndex()函數:
程序1:該程序設置並返回單個像素的索引。
<?php
// Create a new imagickPixel object
$imagickPixel = new ImagickPixel();
// Set the index
$imagickPixel->setIndex(15);
// Get the index
$index = $imagickPixel->getIndex();
echo $index;
?>
輸出:
15
程序2:該程序返回圖像的索引值。
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Get the pixel iterator to iterate through each pixel
$imageIterator = $imagick->getPixelIterator();
$i = 0;
// Loop through pixel rows
foreach ($imageIterator as $row => $pixels) {
foreach ($pixels as $column => $pixel) {
// Set the index
$pixel->setIndex($i);
echo $pixel->getIndex() . '<br>';
$i++;
}
// Sync the iterator after each iteration
$imageIterator->syncIterator();
}
?>
輸出:
0 1 2 3 . . .
參考: https://www.php.net/manual/en/imagickpixel.setindex.php
相關用法
- PHP ImagickPixel isPixelSimilar()用法及代碼示例
- PHP ImagickPixel getColorAsString()用法及代碼示例
- PHP ImagickPixel getColor()用法及代碼示例
- PHP ImagickPixel getHSL()用法及代碼示例
- PHP ImagickPixel setHSL()用法及代碼示例
- PHP ImagickPixel getColorValue()用法及代碼示例
- PHP ImagickPixel getColorValueQuantum()用法及代碼示例
- PHP ImagickPixel __construct()用法及代碼示例
- PHP ImagickPixel getColorQuantum()用法及代碼示例
- PHP ImagickPixel isPixelSimilarQuantum()用法及代碼示例
- PHP ImagickPixel setColorValue()用法及代碼示例
- PHP ImagickPixel setColor()用法及代碼示例
- PHP ImagickPixel getColorCount()用法及代碼示例
- PHP ImagickPixel isSimilar()用法及代碼示例
- PHP ImagickPixel setColorValueQuantum()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickPixel setIndex() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。