如何在 PHP 中替换图像中的像素?
我想循环遍历图像中的每一行和每一列,并用不同的颜色替换某些像素。我愿意接受使用 GD 或 ImageMagick 的解决方案。谁能给我举个例子来说明如何做到这一点?我用谷歌搜索了几种不同的方法,但没有找到可靠的例子。
I'd like to loop through each row and column in an image and replace certain pixels with different colors. I am open to a solution using GD or ImageMagick. Can anyone give me an example of how to do this? I've Googled several different ways and haven't found a solid example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 GD 通过以下方式实现此目的:
您将把颜色处理为十六进制值
You can achieve this with GD by something like:
You will be handling colors as hex values