diff options
Diffstat (limited to 'files/es/web/api/imagebitmaprenderingcontext/index.html')
-rw-r--r-- | files/es/web/api/imagebitmaprenderingcontext/index.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/files/es/web/api/imagebitmaprenderingcontext/index.html b/files/es/web/api/imagebitmaprenderingcontext/index.html new file mode 100644 index 0000000000..4fb6f8816f --- /dev/null +++ b/files/es/web/api/imagebitmaprenderingcontext/index.html @@ -0,0 +1,37 @@ +--- +title: ImageBitmapRenderingContext +slug: Web/API/ImageBitmapRenderingContext +translation_of: Web/API/ImageBitmapRenderingContext +--- +<div>{{APIRef("Canvas API")}} {{SeeCompatTable}}</div> + +<p>El interface <strong><code>ImageBitmapRenderingContext</code></strong> es un lienzo de contexto renderizado que sólo permite la funcionalidad de reemplazar el contenido del lienzo ( <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas" title="Use the HTML <canvas> element with either the canvas scripting API or the WebGL API to draw graphics and animations."><code><canvas></code></a> ) con el {{domxref("ImageBitmap")}} dado. La identificación de contenido (el primer argumento a {{domxref("HTMLCanvasElement.getContext()")}} o {{domxref("OffscreenCanvas.getContext()")}} es <code>"bitmaprenderer"</code>.</p> + +<p>Esta interface es posible en ambos , la ventana y el <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API">"worker context" </a> (contexto de tabajo).</p> + +<h2 id="Métodos">Métodos</h2> + +<dl> + <dt>{{domxref("ImageBitmapRenderingContext.transferFromImageBitmap()")}}</dt> + <dd> + <p>Muestra el <code>ImageBitmap</code> en el lienzo asociado con el contexto de renderizado. La propiedad del <code>ImageBitmap</code> se transfiere al lienzo. Este se llamaba <code>transferImageBitmap()</code>, pero se renombra en un cambio especulativo . El viejo nombre se mantiene como un alias para evitar una ruptura del código.</p> + </dd> +</dl> + +<h2 id="Especificaciones">Especificaciones</h2> + +<p>Escrito como una propuesta en la especificaación <a href="https://wiki.whatwg.org/wiki/OffscreenCanvas">OffscreenCanvas</a>.</p> + +<h2 id="Compatibilidad_del_Buscador">Compatibilidad del Buscador</h2> + +<div> +<div class="hidden">La compatibilidad de la tabla en esta página es generada de datos estructurales. Si quiere contribuir en los datos, cheque <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> y envíenos un "pull request" (requicisión).</div> + +<p>{{Compat("api.ImageBitmapRenderingContext")}}</p> +</div> + +<h2 id="Ver_también">Ver también</h2> + +<ul> + <li>{{domxref("OffScreenCanvas")}}</li> +</ul> |