Open In App

HTML canvas lineTo() Method

Last Updated : 09 Jun, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report
The lineTo() method is used to add a new point to create a line from that point to last specified point in the canvas, Syntax:
context.lineTo(x, y);
Parameters:
  • x: This parameter specifies the x-coordinate from where to create the line.
  • y: This parameter specifies the y-coordinate from where to create the line.
Example 1: html
<!DOCTYPE html>
<html>

<head>
    <title>
        HTML canvas lineTo() Method
    </title>
</head>

<body style="text-align:left;">

    <h1>GeeksforGeeks</h1>

    <h2>HTML canvas lineTo() Method</h2>

    <canvas id="GFG" width="500" height="200">
    </canvas>

    <script>
        var doc_id = document.getElementById("GFG");
        var context = doc_id.getContext("2d");
        context.beginPath();
        context.moveTo(10, 10);
        context.strokeStyle = 'green';
        context.lineTo(200, 100);
        context.stroke();
    </script>
</body>

</html>
Output: Supported Browsers: The browser supported by HTML canvas lineTo() Method are listed below:
  • Google Chrome 4.0
  • Internet Explorer 9.0
  • Firefox 3.6
  • Safari 4.0
  • Opera 10.1

Similar Reads