# OffscreenCanvas > ![img](https://gitee.com/openharmony/docs/raw/OpenHarmony-3.1-Release/en/application-dev/public_sys-resources/icon-note.gif) **NOTE:** **OffscreenCanvas** is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version. **OffscreenCanvas** defines a canvas object that can be rendered off the screen. ## Attributes | Name | Type | Description | | ------ | ------ | ----------------------------------------- | | width | number | Width of the **OffscreenCanvas** object. | | height | number | Height of the **OffscreenCanvas** object. | ## Methods ### getContext getContext(type: string, options?: CanvasRenderingContext2DSettings): OffscreenCanvasRenderingContext2D Obtains the **OffscreenCanvas** context. This method returns a 2D drawing object. - Parameters | Name | Type | Mandatory | Description | | --------- | ------------------------------------------------------------ | --------- | ------------------------------------------------------------ | | contextId | string | Yes | The value can only be **"2d"**. | | options | [CanvasRenderingContext2DSettings](js-offscreencanvasrenderingcontext2d.md) | No | 2D drawing object, which can be used to draw rectangles, images, and texts, on the **OffscreenCanvas**. | - Return values | Type | Description | | ------------------------------------------------------------ | ------------------------------------------------------------ | | [OffscreenCanvasRenderingContext2D](js-offscreencanvasrenderingcontext2d.md) | 2D drawing object, which can be used to draw rectangles, images, and texts, on the **OffscreenCanvas**. | ### toDataURL toDataURL(type?: string, quality?:number): Generates a URL containing image display information. - Parameters | Name | Type | Mandatory | Description | | ------- | ------ | --------- | ------------------------------------------------------------ | | type | string | No | Image format. The default value is **image/png**. | | quality | number | No | Image quality, which ranges from 0 to 1, when the image format is **image/jpeg** or **image/webp**. If the set value is beyond the value range, the default value **0.92** is used. | - Return values | Type | Description | | ------ | ----------- | | string | Image URL. | ### transferToImageBitmap transferToImageBitmap(): ImageBitmap Creates an **ImageBitmap** object on the most recently rendered image of the **OffscreenCanvas**. - Return values | Type | Description | | -------------------------------------------------- | ----------------------------------------------- | | [ImageBitmap](js-components-canvas-imagebitmap.md) | Pixel data rendered on the **OffscreenCanvas**. | ## Example ```