UNPKG
canvacard
Version:
dev (6.0.5-dev.1733492009-c2f8775.0)
latest (6.0.5)
6.0.5
6.0.5-dev.1733492009-c2f8775.0
6.0.4
6.0.4-dev.1729859620-caa4938.0
6.0.3
6.0.3-dev.1729812223-c90909f.0
6.0.3-dev.1729811580-5e46af0.0
6.0.3-dev.1729810573-969dc7f.0
6.0.2
6.0.1
5.2.8
5.2.7
5.2.6
5.2.5
5.2.4
5.2.2
5.2.1
5.2.0
5.1.7
5.1.6
5.1.5
5.1.4
5.1.3
5.1.2
5.1.1
5.1.0
0.0.1
Powerful image manipulation package for beginners.
canvacard.srgobi.com
SrGobi/Canvacard
canvacard
/
plugins
/
circle.js
8 lines
•
195 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
=
(
ctx, w, h
) =>
{ ctx.
globalCompositeOperation
=
"destination-in"
; ctx.
beginPath
(); ctx.
arc
(w /
2
, h /
2
, h /
2
,
0
,
Math
.
PI
*
2
); ctx.
closePath
(); ctx.
fill
();
return
ctx; };