imagecolorstotal()函数是PHP中的内置函数,可用于查找图像调色板中的颜色数量。此函数返回调色板中的颜色数。
用法:
int imagecolorstotal ( $image )
参数:此函数接受单个参数$image,该参数是必需的。 imagecreatetruecolor()函数用于创建给定尺寸的图像。此函数创建给定尺寸的空白图像。
返回值:此函数返回给定图像调色板中的颜色数,对于真彩色图像,返回0。
以下示例程序旨在说明PHP中的imagecolorstotal()函数:
程序1:
<?php
// store the image in variable.
$image = imagecreatefrompng(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
echo 'Colors in image: ' . imagecolorstotal($image);
// Free image
imagedestroy($image);
?>
输出:
Colors in image: 0
程序2:
<?php
// store the image in variable.
$image = imagecreatefromgif(
'https://media.geeksforgeeks.org/wp-content/uploads/animateImages.gif');
echo 'Colors in image: ' . imagecolorstotal($image);
// Free image
imagedestroy($image);
?>
输出:
Colors in image: 187
相关文章:
参考: http://php.net/manual/en/function.imagecolorstotal.php
相关用法
- p5.js second()用法及代码示例
- PHP pow( )用法及代码示例
- p5.js sq()用法及代码示例
- PHP next()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- p5.js pow()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js day()用法及代码示例
- CSS var()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Map put()用法及代码示例
注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | imagecolorstotal() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。