PHP 使用 imageline 和 XOR
我正在尝试使用图像 GD 库来使用 XOR 过滤器绘制线条。我无法找到一种简单的方法来做到这一点,因此绘制的线会从白色“翻转”为黑色,反之亦然。有什么解决办法吗?
I am trying to use the image GD library to draw lines using an XOR filter. I have not been able to find an easy way to do this so a line being drawn "flips" white to black and vice-versus. Any solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我非常确定不可能使用内置的
imageline
PHP 函数绘制 XOR 线。尽管您可以使用 imagesetpixel 和自定义线条绘制算法自己绘制它。例如,这样的东西可以工作(Bresenham Line Algorythm for PHP):函数完美地适用于从文件创建的图像。
I'm pretty sure that it's not possible to draw the XOR line with built-in
imageline
PHP function. Though you can draw it yourself withimagesetpixel
and custom line drawing algorithm. For example something like this can work (Bresenham Line Algorythm for PHP):Function perfectly works for images, created from files.