如何用“倒立”画法在 Android Canvas 中绘画?
我在画布上画了一些东西,然后我想用反色画一个圆圈:
canvas.drawCircle(zx, zy, 8f, myPaint);
如何配置 myPaint 以使圆形像素采用底层像素的反色?
谢谢
I draw some stuff on a canvas, over I want to draw a circle in inverted color :
canvas.drawCircle(zx, zy, 8f, myPaint);
How to configure myPaint
for circle pixel to be in the inverted color of the underlying pixels ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个
try this
我想说用于反转的颜色矩阵应该如下所示:
这里是有关矩阵的更多信息:
I'd say a color matrix for inverting should look like this:
Here is more information for the matrix: