La propiedad ImageData.height se usa para devolver el atributo de altura del objeto ImageData. ImageData() se usa para crear un objeto de un tamaño dado.
Sintaxis:
imageData.height
Ejemplo:
<!DOCTYPE html> <html> <head> <title> Web ImageData API | ImageData.height property </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>ImageData height property</h2> <button onclick="getheight();"> Get height </button> <p id='height'></p> <script type="text/javascript"> function getheight () { let imageData = new ImageData(100, 100); document.getElementById('height').innerHTML = imageData.height; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con Web API ImageData | La propiedad ImageData.height se enumeran a continuación:
- Google Chrome
- explorador de Internet 9
- Firefox 14
- Safari 3.1
- Ópera 9