计算图像的黑色像素

发布于 2024-11-29 08:49:40 字数 55 浏览 2 评论 0原文

我正在尝试使用 PHP 只计算 PNG 图像的黑色像素。没有在网上找到任何接近的东西。提前致谢!

I am trying to count only the black pixels of a PNG image using PHP. Have not found anything close on the web. Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南街女流氓 2024-12-06 08:49:40

您可以使用 gd 来实现这一点。只需使用 imageCreateFromPNG() 打开图像,使用 imagesx()imagesy() 获取图像大小,然后循环所有像素并执行 imageColorAt()

You can achieve that using gd. Just open the image with imageCreateFromPNG(), get the image size with imagesx() and imagesy() and then loop over all pixels and do imageColorAt().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文