Merge pull request #1954 from pandaxtc/set_formats_supported

Create setImageFormatsSupported function
This commit is contained in:
Ian Gilman 2021-03-16 11:50:57 -07:00 committed by GitHub
commit dfd4ea3b04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2453,6 +2453,31 @@ function OpenSeadragon( options ){
extension = extension ? extension : "";
// eslint-disable-next-line no-use-before-define
return !!FILEFORMATS[ extension.toLowerCase() ];
},
/**
* Updates supported image formats with user-specified values.
* Preexisting formats that are not being updated are left unchanged.
* By default, the defined formats are
* <pre><code>{
* bmp: false,
* jpeg: true,
* jpg: true,
* png: true,
* tif: false,
* wdp: false
* }
* </code></pre>
* @function
* @example
* // sets webp as supported and png as unsupported
* setImageFormatsSupported({webp: true, png: false});
* @param {Object} formats An object containing format extensions as
* keys and booleans as values.
*/
setImageFormatsSupported: function(formats) {
// eslint-disable-next-line no-use-before-define
$.extend(FILEFORMATS, formats);
}
});