El método strokeRect() se usa para dibujar el rectángulo en un color dado . El color predeterminado del trazo es negro.
Sintaxis:
context.strokeRect(x, y, width, height)
Parámetros:
- x: almacena la coordenada x de la esquina superior izquierda del rectángulo.
- y: almacena la coordenada y de la esquina superior izquierda del rectángulo.
- ancho: Almacena el ancho en píxeles.
- altura: Almacena la altura en píxeles.
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> HTML canvas strokeRect() Method </title> </head> <body> <canvas id="GFG" width="500" height="300"> </canvas> <script> var x = document.getElementById("GFG"); var contex = x.getContext("2d"); contex.strokeRect(50, 50, 350, 200); contex.stroke(); </script> </body> </html>
Producción:
Ejemplo-2:
<!DOCTYPE html> <html> <head> <title> HTML canvas strokeRect() Method </title> </head> <body> <canvas id="GFG" width="500" height="300"> </canvas> <script> var x = document.getElementById("GFG"); var contex = x.getContext("2d"); contex.strokeStyle = "green"; contex.strokeRect(50, 50, 350, 200); contex.strokeStyle = "red"; contex.strokeRect(100, 100, 250, 100); contex.stroke(); </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Internet Explorer 9.0
- Firefox
- Safari
- Ópera