Get to know MDN better
This feature is not Baseline because it does not work in some of the most widely-used browsers.
The decoding property of the SVGImageElement interface provides a hint to the browser as to whether it should perform image decoding synchronously or asynchronously.
A string representing the decoding hint. Possible values are:
"sync"Decode the image synchronously for atomic presentation with other content.
"async"Decode the image asynchronously and allow other content to be rendered before this completes.
"auto"No preference for the decoding mode; the browser decides what is best for the user. This is the default value, but different browsers have different defaults:
The decoding property provides a hint to the browser as to whether it should perform image decoding along with other tasks in a single step ("sync"), or allow other content to be rendered before this completes ("async"). In reality, the differences between the two values are often difficult to perceive and, where there are differences, there is often a better way.
For images that are inserted into the DOM inside the viewport, "async" can result in flashes of unstyled content, while "sync" can result in small amounts of jank. Using the SVGImageElement.decode() method is usually a better way to achieve atomic presentation without holding up other content.
For images inserted into the DOM outside of the viewport, modern browsers will usually decode them before they are scrolled into view and there will be no noticeable difference using either value.
In the below example, you'll likely get an empty image shown on the page as the image is downloaded. Setting decoding won't prevent that.
Inserting an image after download can make the decoding property more relevant:
A better solution, however, is to use the SVGImageElement.decode() method to solve this problem. It provides a way to asynchronously decode an image, delaying inserting it into the DOM until it is fully downloaded and decoded, thereby avoiding the empty image problem mentioned above. This is particularly useful if you're dynamically swapping an existing image for a new one, and also prevents unrelated paints outside of this code from being held up while the image is decoding.
Using img.decoding = "async" may avoid holding up other content from displaying if the decoding time is long:
| HTML # dom-img-decoding |
Enable JavaScript to view this browser compatibility table.
This page was last modified on Nov 26, 2023 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.