ImageDecoder: isTypeSupported() static method
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Note: This feature is available in Dedicated Web Workers.
The ImageDecoder.isTypeSupported()
static method checks if a given MIME type can be decoded by the user agent.
Syntax
js
ImageDecoder.isTypeSupported(type)
Parameters
Return value
A promise
that resolves with a boolean value indicating whether images with a format of type
can be decoded by the API.
Examples
The following example checks if GIF and PCX images are supported for decoding and prints the result to the console.
js
let isGifSupported = await ImageDecoder.isTypeSupported("image/gif");
console.log(`GIF supported: ${isGifSupported}`); // Likely true.
let isPcxSupported = await ImageDecoder.isTypeSupported("image/pcx");
console.log(`PCX supported: ${isPcxSupported}`); // Probably false
Specifications
Specification |
---|
WebCodecs # dom-imagedecoder-istypesupported |
Browser compatibility
BCD tables only load in the browser