标签: javascript canvas automatic-ref-counting center
如何使用JavaScript在画布中找到弧的中心?
我需要找到弧的位置,它是中心。
答案 0 :(得分:2)
如果您的代码使用context.arc(centerX,centerY,radius,startAngle,endAngle)
context.arc(centerX,centerY,radius,startAngle,endAngle)
弧由其中心点,半径,startAngle& endAngle所以你已经有了中心点:[centerX, centerY]。
[centerX, centerY]
如果你没有绘制弧线但是只有一个包含不同颜色弧线的图像
context.getImageData