Canvas arc() vs drawImage()
According to my tests, drawImage()
is going to be significantly faster in most cases than using arc()
.
The drawImage()
function can take either an <img>
or <canvas>
element as its parameter, and in Firefox, using an <img>
tag was faster, though other browsers showed the opposite.
What it boils down to: Even for simple shapes, use drawImage()