aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/htmlimageelement/decode/index.html
blob: b04b67a431a7fffa33b8ad01ca77e3ce6adf8ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
title: HTMLImageElement.decode()
slug: Web/API/HTMLImageElement/decode
translation_of: Web/API/HTMLImageElement/decode
---
<div>
<p>{{APIRef("HTML DOM")}}</p>

<p>{{domxref("HTMLImageElement")}} 接口的 <strong><code>decode()</code></strong> 方法返回一个当图片解码后可安全用于附加到 DOM 上时 resolves 的 {{jsxref("Promise")}} 对象。 这可用于在将图片附加到一个 DOM 中的元素(或作为一个新元素加入 DOM 中)之前启动加载,所以在将图像添加到 DOM 时可以立即渲染图像。这反过来,防止了将图像加入DOM后图像的加载造成下一帧渲染的延迟。</p>
</div>

<h2 id="语法">语法</h2>

<pre class="syntaxbox">var <var>promise</var> = <em>HTMLImageElement</em>.decode();</pre>

<h3 id="参数">参数</h3>

<p>无.</p>

<h3 id="返回">返回</h3>

<p>一个一旦数据准备好可供使用时resolve的promise对象.</p>

<h3 id="异常">异常</h3>

<p>{{domxref('DOMException')}} 表示解码图像时出错。</p>

<h2 id="使用提示">使用提示</h2>

<p>一个 <code>decode()</code> 的潜在用例:当在加载一个非常大的图片时(例如,一个在线相册),你可以在加载初期提供一个低分辨率的缩略图,之后通过实例化一个 {{domxref("HTMLImageElement")}} 将该图像替换为一个全分辨率图像,设置其 source 为全分辨率图像URL,使用 <code>decode()</code> 获取一旦全分辨率图像准备好被使用时 resolved 的 promise 对象。这时你可以使用当前可用的全分辨率图像替换之前的低分辨率图像。</p>

<h2 id="例子">例子</h2>

<p>以下例子展示了如何使用 <code>decode()</code> 方法来控制一个图像插入 DOM 的时机。若不使用 {{domxref('Promise')}} 返回方法,你将在图像的 {{event("load")}} 事件处理函数中将图像加入 DOM 中,通过 {{event("error")}} 事件处理函数处理错误。</p>

<pre class="brush: js">const img = new Image();
img.src = 'nebula.jpg';
img.decode()
.then(() =&gt; {
  document.body.appendChild(img);
})
.catch((encodingError) =&gt; {
  // Do something with the error.
})
</pre>

<h2 id="Specifications">Specifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG','#dom-img-decode','decode()')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>



<p>{{Compat("api.HTMLImageElement.decode")}}</p>