📜  PHP | imageistruecolor()函数

📅  最后修改于: 2022-05-13 01:56:20.720000             🧑  作者: Mango

PHP | imageistruecolor()函数

imageistruecolor()函数是PHP中的一个内置函数,用于判断图像是否为真彩色图像。真彩色图像是其中每个像素由三个值即RGB指定的图像。

句法:

bool imageistruecolor( resource $image )

参数:此函数接受保存图像的单个参数$ image。

返回值:如果图像是真彩色,则此函数返回 TRUE,否则返回 FALSE。

下面给出的程序说明了PHP中的imageistruecolor()函数

方案一:


输出:

The image is true color

方案二:


输出:

The image is not true color

参考: https://www. PHP.net/manual/en/函数.imageistruecolor。 PHP