El método canvas stroke() se usa para dibujar la ruta que ha definido con todos esos métodos moveTo() y lineTo() . El color predeterminado del método canvas stroke() es negro.
Sintaxis:
context.stroke()
Ejemplo 1:
html
<!DOCTYPE html> <html> <head> <title> HTML canvas stroke() Method </title> </head> <body> <canvas id="GFG" width="500" height="300"> </canvas> <script> var x = document.getElementById("GFG"); var contex = x.getContext("2d"); contex.rect(50, 50, 350, 200); contex.fillStyle = "green"; contex.fill(); // Draw the path contex.stroke(); </script> </body> </html>
Producción:
Ejemplo-2:
html
<!DOCTYPE html> <html> <head> <title> HTML canvas stroke() Method </title> </head> <body> <canvas id="GFG" width="500" height="300"> </canvas> <script> var x = document.getElementById("GFG"); var contex = x.getContext("2d"); contex.beginPath(); contex.moveTo(50, 50); contex.lineTo(50, 250); contex.lineTo(250, 250); contex.lineTo(250, 50); contex.strokeStyle = "green"; contex.stroke(); </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Internet Explorer 9.0
- Firefox
- Safari
- Ópera