Vertaling van "getImageData" in Frans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
In this example we are using the getImageData() method to display the color under the mouse cursor.
Dans cet exemple, nous utilisons la méthode getImageData() pour afficher la couleur en dessous du curseur de la souris.
For example, you can no longer use the canvas toBlob(), toDataURL(), or getImageData() methods; doing so will throw a security error.
On ne peut donc plus, par exemple, utiliser les méthodes liées au canevas comme toBlob(), toDataURL(), ou getImageData().
Andere resultaten
The object obtained by calling canvas.getContext("2D").getImageData() is also a DOM object.
L'objet obtenu en appelant canvas.getContext("2D").getImageData() est également un objet DOM.
The putImageData() method now supports the optional parameters dirtyX, dirtyY, dirtyWidth, and dirtyHeight.
La méthode putImageData() supporte désormais les paramètres optionnels dirtyX, dirtyY, dirtyWidth et dirtyHeight.
In this example we iterate over all pixels to change their values, then we put the modified pixel array back to the canvas using putImageData().
Dans cet exemple, nous itérons sur tous les pixels pour changer leurs valeurs, puis nous remettons le tableau de pixels modifié sur le canevas à l'aide de putImageData().
If you use a non-finite value for any of the numeric parameters to putImageData(), the call is now silently ignored instead of throwing an exception, in keeping with the specification.
Si vous utilisez une valeur non-finie pour l'un des paramètres numériques de putImageData(), l'appel est désormais silencieusement ignoré au lieu de renvoyer une exception, conformément à la spécification.
It can also be used to set a part of the canvas (like with putImageData()).