- See:
Properties:
Name | Type | Default | Description |
---|---|---|---|
crossOrigin |
HTMLImageElement["crossOrigin"] |
'anonymous'
|
The crossOrigin value to use for images when |
preferCreateImageBitmap |
boolean |
true
|
When set to |
preferWorkers |
boolean |
true
|
When set to |
Members
The crossOrigin value to use for images when preferCreateImageBitmap
is false
.
- Default Value:
- 'anonymous'
When set to true
, loading and decoding images will happen with createImageBitmap
,
otherwise it will use new Image()
.
- Default Value:
- true
When set to true
, loading and decoding images will happen with Worker thread,
if available on the browser. This is much more performant as network requests
and decoding can be expensive on the CPU. However, not all environments support
Workers, in some cases it can be helpful to disable by setting to false
.
- Default Value:
- true