Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图弄清楚如何查看图像中的总图像数量,当我运行这个脚本时,页面上唯一发生的事情就是打印一个 00。
$img = imagecreatefrompng('C:/wamp/www/button.png'); $image = imagecolorstotal($img); echo($image); print_r($image);
Manual 建议为真彩色图像返回 0。您可以使用以下方法检查您的图像是否为真彩色:
var_dump(imageistruecolor($img));
如果它转储为 true,则从 imagecolorstotal 返回 0 是合乎逻辑的。