ImagickPixelIterator::setIteratorLastRow()函數是PHP中的內置函數,用於將像素迭代器設置為最後一個像素行。
用法:
bool ImagickPixelIterator::setIteratorLastRow( void )
參數:此函數不接受任何參數。
返回值:成功時此函數返回TRUE。
以下示例程序旨在說明PHP中的ImagickPixelIterator::setIteratorLastRow()函數:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Get the pixel iterator
$pixelIterator = $imagick->getPixelIterator();
// Get the current iterator row
echo "Current row is " . $pixelIterator->getIteratorRow();
// Set the iterator to last row
$pixelIterator->setIteratorLastRow();
// Get the current iterator row
echo "<br>Current row is " . $pixelIterator->getIteratorRow();
?>
輸出:
Current row is 0 Current row is 183
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'black');
// Get the pixel iterator
$pixelIterator = $imagick->getPixelIterator();
// Set the iterator to last row
$pixelIterator->setIteratorLastRow();
$row = $pixelIterator->getIteratorRow() + 1;
echo "<br>Total number of rows in image is " . $row;
?>
輸出:
Total number of rows in image is 250
參考: https://www.php.net/manual/en/imagickpixeliterator.setiteratorlastrow.php
相關用法
- PHP ImagickPixelIterator getIteratorRow()用法及代碼示例
- PHP ImagickPixelIterator syncIterator()用法及代碼示例
- PHP ImagickPixelIterator newPixelIterator()用法及代碼示例
- PHP ImagickPixelIterator setIteratorFirstRow()用法及代碼示例
- PHP ImagickPixelIterator resetIterator()用法及代碼示例
- PHP ImagickPixelIterator resetIterator()用法及代碼示例
- PHP ImagickPixelIterator newPixelRegionIterator()用法及代碼示例
- PHP ImagickPixelIterator getPreviousIteratorRow()用法及代碼示例
- PHP ImagickPixelIterator __construct()用法及代碼示例
- PHP ImagickPixelIterator setIteratorRow()用法及代碼示例
- PHP ImagickPixelIterator getCurrentIteratorRow()用法及代碼示例
- PHP ImagickPixelIterator getNextIteratorRow()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickPixelIterator setIteratorLastRow() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。