PHP 图像过滤器示例
我想知道示例 1 是否会将绿色添加到图像中的每个像素或某些像素?
实施例1
imagefilter($image, IMG_FILTER_COLORIZE, 0,255,0);
I was wondering if example 1 will add the color green to every pixel or some pixels in the image?
Example 1
imagefilter($image, IMG_FILTER_COLORIZE, 0,255,0);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RGB 值为 0,255,0 的像素将保持原样
pixels with RGB value 0,255,0 will remain as they are