API de datos de imágenes web | Propiedad ImageData.width

La propiedad ImageData.width utilizada para devolver el atributo de ancho del objeto ImageData. ImageData() se usa para crear un objeto de un tamaño determinado.

Sintaxis:

imageData.width

Ejemplo:

<!DOCTYPE html> 
<html> 
  
<head>
    <title>
        Web ImageData API | ImageData.width property
    </title>
</head>
  
<body style="text-align:center;">
      
    <h1 style="color:green;"> 
        GeeksForGeeks 
    </h1> 
                  
    <h2>ImageData width property</h2>
      
    <button onclick="getwidth ();">
        Get width
    </button>
      
    <p id='width'></p>
  
    <script type="text/javascript">
        function getwidth () {
        let imageData = new ImageData(100, 100);
            document.getElementById('width').innerHTML
                    = imageData.width;
        }
    </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 la propiedad ImageData.width se enumeran a continuación:

  • Google Chrome
  • explorador de Internet 9
  • Firefox 14
  • Safari 3.1
  • Ópera 9

Publicación traducida automáticamente

Artículo escrito por DeepakDev y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *