PHP Conference Japan 2024

imageistruecolor

(PHP 4 >= 4.3.2, PHP 5, PHP 7, PHP 8)

imageistruecolor查找图像是否为真彩色图像

描述

imageistruecolor(GdImage $image): bool

imageistruecolor() 查找图像 image 是否为真彩色图像。

参数

image

一个 GdImage 对象,由图像创建函数(如 imagecreatetruecolor())返回。

返回值

如果 image 为真彩色,则返回 true,否则返回 false

变更日志

版本 描述
8.0.0 image 现在期望一个 GdImage 实例;之前,期望一个有效的 gd resource

范例

示例 #1 使用 imageistruecolor() 简单检测真彩色图像实例

<?php
// $im 是一个图像实例

// 检查图像是否为真彩色图像
if(!imageistruecolor($im))
{
// 创建一个新的真彩色图像实例
$tc = imagecreatetruecolor(imagesx($im), imagesy($im));

// 复制像素
imagecopy($tc, $im, 0, 0, 0, 0, imagesx($im), imagesy($im));
imagedestroy($im);

$im = $tc;
$tc = NULL;

// 或者使用 imagepalettetotruecolor()
}

// 继续使用图像实例
?>

参见

添加注释

用户贡献注释

此页面没有用户贡献的注释。
To Top