# ImageBitmap对象 >![](../../public_sys-resources/icon-note.gif) **说明:** >从 API Version 8 开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 图片对象。 ## 接口 ImageBitmap\(src: string\) - 参数

参数名

参数类型

必填

默认值

参数描述

src

string

-

图片对象所在的路径。

## 属性

属性

类型

默认值

必填

描述

width

Length

0px

图片的宽度。

height

Length

0px

图片的高度。

示例 ``` @Entry @Component struct DrawImageExample { private settings:RenderingContextSettings = new RenderingContextSettings(true,true) private context: CanvasRenderingContext2D = new CanvasRenderingContext2D(this.settings) private img:ImageBitmap = new ImageBitmap("common/images/example.jpg") build() { Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) { Canvas(this.context) .width('100%') .height('100%') .backgroundColor('#ffff00') .onReady(() =>{ this.context.drawImage( this.img,0,0,400,200) }) } .width('100%') .height('100%') } } ``` ![](figures/zh-cn_image_0000001192595194.png)