Srammark
Srammark
I have the same issue. How should I solve it?
I encountered a similar issue. I developed a drawing website using VUE 3.0 and PixiJS 6.5.8. When I upgraded to PixiJS 7.0.5, I noticed severe lag during drawing, so I...
建议使用以下方法判断是否绿色 const threshold = 50; function isGreen(r, g, b) { // 绿色的阈值可以调整,例如绿色通道至少比其他通道高一定比例 return g > r + threshold && g > b + threshold; }
I have the same problem