How to draw an ellipse in HTML5 canvas and keep the line width uniform

Source: Internet
Author: User

Drawing an ellipse in a canvas is a common requirement. The ellipse method is added to the new HTML canvas 2D context W3C draft, but this method has not been implemented by most browsers currently, so we need to use the arc or arcto method combined with scale deformation to draw an ellipse.

ExampleCode:

<Canvas width = "400" Height = "300"> </canvas> <SCRIPT> var CTX = document. queryselector ('canvas '). getcontext ('2d '); CTX. linewidth = "10"; CTX. scale (1, 0.2); CTX. arc( 150,150,100, 0, math. pI * 2, false); CTX. stroke (); </SCRIPT>


A little wrong, because the line width is uneven, stroke is also affected by scale.

It requires a little skill to correct this problem.

Sample Code:

<Canvas width = "400" Height = "300"> </canvas> <SCRIPT> var CTX = document. queryselector ('canvas '). getcontext ('2d '); CTX. linewidth = "10"; CTX. save (); CTX. scale (1, 0.2); CTX. arc( 150,150,100, 0, math. pI * 2, false); CTX. restore (); CTX. stroke (); </SCRIPT>


Now it's even and perfect.

Tip: Save the canvas state first, then zoom in and out, call the path command, restore the canvas state, and draw the stroke.

The key point is to save and zoom, restore first and then stroke.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.