Attribute
|
width | number | Canvas Width |
height | number | Canvas Height |
Method Set
createImage
The method is utilized as Image OffscreenCanvas.createImage()
Function Description: This creates an image object. It is compatible with 2D Canvas.
Return Value: Image. Please note that it is advisable to create image objects using the canvas's own createImage. getContext
The method is utilized as RenderingContext OffscreenCanvas.getContext(string contextType)
Function Description: This method returns the drawing context of the OffscreenCanvas.
Parameters and Description: string contextType, the type of drawing context, which needs to be consistent with the type passed in when creating OffscreenCanvas.