gpt4 book ai didi

php - 使用 php 检测生成的空白图像?

转载 作者:可可西里 更新时间:2023-11-01 12:56:08 25 4
gpt4 key购买 nike

我如何使用 PHP 和/或 imagemagick 检测图像是否为空白(只有单一的任意颜色,或者对于 gif,随机任意颜色的帧)?

我想这就是我要尝试的: http://www.php.net/manual/en/function.imagecolorat.php#97957

最佳答案

您可以使用 imagecolorat 检查 PHP 内部的图像(这可能很慢,但它有效):

function isPngValidButBlank($filename) {
$img = imagecreatefrompng($filename);
if(!$img)
return false;
$width = imagesx($img);
$height = imagesy($img);
if(!$width || !$height)
return false;
$firstcolor = imagecolorat($img, 0, 0);
for($i = 0; $i < $width; $i++) {
for($j = 0; $j < $height; $j++) {
$color = imagecolorat($img, $i, $j);
if($color != $firstcolor)
return false;
}
}
return true;
}

关于php - 使用 php 检测生成的空白图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5915993/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com