admin管理员组文章数量:1344426
I'm working with Fabric.js and I would like to draw arcs on canvas. The closest shape I can find is the Circle
shape. This, of course, only enables me to make a circle and nothing like an arc spanning 45° or 180°.
Is there a way to acplish this with Fabric.js? If not, is there a way I can get the underlying context and then create the arc and allow fabric to manage it? It is important that I retain the selection and scaling capabilities that Fabric.js offers.
I'm working with Fabric.js and I would like to draw arcs on canvas. The closest shape I can find is the Circle
shape. This, of course, only enables me to make a circle and nothing like an arc spanning 45° or 180°.
Is there a way to acplish this with Fabric.js? If not, is there a way I can get the underlying context and then create the arc and allow fabric to manage it? It is important that I retain the selection and scaling capabilities that Fabric.js offers.
Share Improve this question edited Sep 25, 2014 at 11:13 kangax 39.2k13 gold badges100 silver badges135 bronze badges asked Sep 22, 2014 at 17:19 JustinJustin 3,3953 gold badges18 silver badges27 bronze badges1 Answer
Reset to default 11In latest version of FabricJS for circle were added startAngle
and endAngle
properties.
https://github./kangax/fabric.js/pull/1675
var canvas = new fabric.Canvas('c');
var circle = new fabric.Circle({
radius: 20,
left: 100,
top: 100,
angle: 45,
startAngle: 0,
endAngle: Math.PI,
stroke: '#000',
strokeWidth: 3,
fill: ''
});
Example: http://jsfiddle/mmeqec89/
本文标签: javascriptHow to draw arc in FabricjsStack Overflow
版权声明:本文标题:javascript - How to draw arc in Fabric.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743744399a2531488.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论