计算图像的黑色像素
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 gd 来实现这一点。只需使用
imageCreateFromPNG()
打开图像,使用imagesx()
和imagesy()
获取图像大小,然后循环所有像素并执行imageColorAt()
。You can achieve that using gd. Just open the image with
imageCreateFromPNG()
, get the image size withimagesx()
andimagesy()
and then loop over all pixels and doimageColorAt()
.