📜  PHP | imagepalettetotruecolor()函数

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

PHP | imagepalettetotruecolor()函数

imagepalettetotruecolor()函数是PHP中的一个内置函数,用于将基于调色板的图像转换为真彩色。
句法:

bool imagepalettetotruecolor( resource $src )

参数:此函数接受一个参数$src ,它保存要处理的图像。
返回值:如果转换完成,或者源图像已经是真彩色图像,则该函数返回TRUE,否则返回FALSE。
下面给出的程序说明了PHP中的imagepalettetotruecolor()函数
方案一:

php
Before conversion: 
';   // Check the image type check($image);   echo '
After conversion:

';   // Convert image to true color imagepalettetotruecolor($image);   // Check the image type check($image);   // Function for checking the image type function check($image) {     echo 'Type of image is ' . (imageistruecolor($image)              ? 'true color' : 'palette'); } ?>


php


输出:

Before conversion:
Type of image is palette
After conversion:
Type of image is true color

方案二:

PHP


输出:

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