SVGImageElement.decode

The decode() method of the SVGImageElement interface initiates asynchronous decoding of an image, returning a Promise that resolves once the image data is ready for use.

Syntax

var promise = svgImageElement.decode();

Parameters

None.

Return value

A Promise which resolves once the image data is ready to be used, such as by appending it to the DOM, replacing an existing image, and so forth.

Exceptions

None.

Specifications

Specification Status Comment
Scalable Vector Graphics (SVG) 2 Candidate Recommendation Initial definition.
HTML Living Standard
The definition of 'decode()' in that specification.
Living Standard

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
decode()
Experimental
Chrome Full support 65Edge Full support ≤79Firefox No support NoIE ? Opera ? Safari ? WebView Android Full support 65Chrome Android Full support 65Firefox Android No support NoOpera Android ? Safari iOS ? Samsung Internet Android Full support 9.0

Legend

Full support
Full support
No support
No support
Compatibility unknown
Compatibility unknown
Experimental. Expect behavior to change in the future.
Experimental. Expect behavior to change in the future.

See also