ts-basic-components-image.md 21.1 KB
Newer Older
Z
zengyawen 已提交
1
# Image
Z
zengyawen 已提交
2

E
ester.zhou 已提交
3
The **\<Image>** component is used to render and display local and online images.
Z
zengyawen 已提交
4

E
ester.zhou 已提交
5 6
> **NOTE**
>
Z
zengyawen 已提交
7
> This component is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version.
Z
zengyawen 已提交
8 9


Z
zengyawen 已提交
10 11
## Required Permissions

E
ester.zhou 已提交
12
To use online images, the application must have the **ohos.permission.INTERNET** permission. For details about how to apply for a permission, see [Declaring Permissions](../../security/accesstoken-guidelines.md).
Z
zengyawen 已提交
13 14 15


## Child Components
Z
zengyawen 已提交
16

E
ester.zhou 已提交
17
Not supported
Z
zengyawen 已提交
18

Z
zengyawen 已提交
19 20 21

## APIs

E
ester.zhou 已提交
22
Image(src: string | PixelMap | Resource)
Z
zengyawen 已提交
23

E
ester.zhou 已提交
24
Obtains an image from the specified source for subsequent rendering and display.
Z
zengyawen 已提交
25

E
ester.zhou 已提交
26 27
Since API version 9, this API is supported in ArkTS widgets.

E
ester.zhou 已提交
28 29
**Parameters**

E
ester.zhou 已提交
30 31
| Name| Type                                                    | Mandatory| Description                                                    |
| ------ | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
E
ester.zhou 已提交
32
| src    | string\| [PixelMap](../apis/js-apis-image.md#pixelmap7) \| [Resource](ts-types.md#resource) | Yes  | Image source. Both local and online images are supported.<br>When using an image referenced using a relative path, for example, **Image("common/test.jpg")**, the **\<Image>** component cannot be called across bundles or modules. Therefore, you are advised to use **\$r** to reference image resources that need to be used globally.<br>- The following image formats are supported: PNG, JPG, BMP, SVG, GIF.<br>\- Base64 strings are supported. The value format is data:image/[png\|jpeg\|bmp\|webp];base64,[base64 data], where [base64 data] is a Base64 string.<br/>\- Strings with the **datashare://** path prefix are supported, which are used to access the image path provided by a Data ability. Before loading images, the application must [request the required permissions](../../file-management/medialibrary-overview.md#requesting-permissions).<br/>\- Strings with the **file:///data/storage** prefix are supported, which are used to read image resources in the **files** folder in the installation directory of the application. Ensure that the application has the read permission to the files in the specified path.<br/>- ArkTS widgets do not support the **http://**, **datashare://**, or **file://data/storage** path prefixes.<br>- ArkTS widgets do not support the [PixelMap](../apis/js-apis-image.md#pixelmap7) type.|
Z
zengyawen 已提交
33 34 35

## Attributes

E
ester.zhou 已提交
36 37
In addition to the [universal attributes](ts-universal-attributes-size.md), the following attributes are supported.

E
ester.zhou 已提交
38 39
| Name                 | Type                                               | Description                                                        |
| --------------------- | ------------------------------------------------------- | ------------------------------------------------------------ |
E
ester.zhou 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53
| alt                   | string \| [Resource](ts-types.md#resource)| Placeholder image displayed during loading. Local images are supported.<br>Since API version 9, this API is supported in ArkTS widgets.|
| objectFit             | [ImageFit](ts-appendix-enums.md#imagefit)                           | Image scale mode.<br>Default value: **ImageFit.Cover**<br>Since API version 9, this API is supported in ArkTS widgets.|
| objectRepeat          | [ImageRepeat](ts-appendix-enums.md#imagerepeat)         | Whether the image is repeated.<br>Default value: **ImageRepeat.NoRepeat**<br>Since API version 9, this API is supported in ArkTS widgets.<br>**NOTE**<br>This attribute is not applicable to SVG images.|
| interpolation         | [ImageInterpolation](#imageinterpolation)               | Interpolation effect of the image. This attribute is intended to alleviate aliasing that occurs when a low-definition image is zoomed in.<br>Default value: **ImageInterpolation.None**<br>Since API version 9, this API is supported in ArkTS widgets.<br>**NOTE**<br>This attribute is not applicable to SVG images.<br>This attribute is not applicable to **PixelMap** objects.|
| renderMode            | [ImageRenderMode](#imagerendermode)                     | Rendering mode of the image.<br>Default value: **ImageRenderMode.Original**<br>Since API version 9, this API is supported in ArkTS widgets.<br>**NOTE**<br>This attribute is not applicable to SVG images.|
| sourceSize            | {<br>width: number,<br>height: number<br>} | Size of the decoded image. The original image is decoded into a **pixelMap** of the specified size, in px.<br>Since API version 9, this API is supported in ArkTS widgets.<br>**NOTE**<br>This attribute is not applicable to **PixelMap** objects or SVG images.|
| matchTextDirection     | boolean | Whether to display the image in the system language direction. When this parameter is set to true, the image is horizontally flipped in the right-to-left (RTL) language context.<br>Default value: **false**<br>Since API version 9, this API is supported in ArkTS widgets.|
| fitOriginalSize        | boolean | Whether to fit the component to the original size of the image source when the component size is not set.<br>Default value: **false**<br>Since API version 9, this API is supported in ArkTS widgets.|
| fillColor              | [ResourceColor](ts-types.md#resourcecolor) | Fill color. This attribute only applies to an SVG image. Once set, the fill color will replace that of the SVG image.<br>Since API version 9, this API is supported in ArkTS widgets.|
| autoResize             | boolean | Whether to resize the image source used for drawing based on the size of the display area during image decoding. This resizing can help reduce the memory usage.<br>Default value: **true**<br>Since API version 9, this API is supported in ArkTS widgets.|
| syncLoad<sup>8+</sup> | boolean                                  | Whether to load the image synchronously. By default, the image is loaded asynchronously. During synchronous loading, the UI thread is blocked and the placeholder diagram is not displayed.<br>Default value: **false**<br>Since API version 9, this API is supported in ArkTS widgets.|
| copyOption<sup>9+</sup> | [CopyOptions](ts-appendix-enums.md#copyoptions9)  | Whether the image can be copied. (SVG images cannot be copied.)<br>When **copyOption** is set to a value other than **CopyOptions.None**, the image can be copied in various manners, such as long pressing, right-clicking, or pressing Ctrl+C.<br>Default value: **CopyOptions.None**<br>This API is supported in ArkTS widgets.|
| colorFilter<sup>9+</sup> | [ColorFilter](ts-types.md#colorfilter9) | Color filter of the image.<br>This API is supported in ArkTS widgets.|
| draggable<sup>9+</sup> | boolean | Whether the image is draggable. This attribute cannot be used together with the [onDragStart](ts-universal-events-drag-drop.md) event.<br>Default value: **false**<br>This API is supported in ArkTS widgets.|
E
ester.zhou 已提交
54 55 56

>  **NOTE**
>
E
ester.zhou 已提交
57
>  To use shortcut keys to copy the image, the image must be in focus. To enable the image to gain focus, set both the **focusable** and **focusOnTouch** attributes to **true**.
E
ester.zhou 已提交
58
>  For SVG images, only the following tags are included in the supported list: **svg**, **rect**, **circle**, **ellipse**, **path**, **line**, **polyline**, **polygon**, and **animate**.
E
ester.zhou 已提交
59 60

### ImageInterpolation
Z
zengyawen 已提交
61

E
ester.zhou 已提交
62 63
Since API version 9, this API is supported in ArkTS widgets.

E
ester.zhou 已提交
64 65 66 67 68 69 70 71 72
| Name    | Description                       |
| ------ | ------------------------- |
| None   | Interpolation image data is not used.               |
| High   | The interpolation image data is used at the high level, which may affect the image rendering speed.|
| Medium | The interpolation image data is used at the medium level.             |
| Low    | The interpolation image data is used at the low level.             |

### ImageRenderMode

E
ester.zhou 已提交
73 74
Since API version 9, this API is supported in ArkTS widgets.

E
ester.zhou 已提交
75 76 77 78
| Name      | Description                   |
| -------- | --------------------- |
| Original | The image is rendered based on the original image, including the color.       |
| Template | The image is rendered as a template image, and its color is ignored.|
Z
zengyawen 已提交
79 80 81

## Events

E
ester.zhou 已提交
82
In addition to the [universal events](ts-universal-events-click.md), the following events are supported.
Z
zengyawen 已提交
83

E
ester.zhou 已提交
84
| Name                                                         | Description                                                  |
E
ester.zhou 已提交
85
| ------------------------------------------------------------ | ------------------------------------------------------------ |
E
ester.zhou 已提交
86 87 88
| onComplete(callback: (event?: { width: number, height: number, componentWidth: number,<br> componentHeight: number, loadingStatus: number }) =&gt; void) | Triggered when an image is successfully loaded. The size of the loaded image is returned.<br>- **width**: width of the image, in pixels.<br>- **height**: height of the image, in pixels.<br>- **componentWidth**: width of the container component, in pixels.<br>- **componentHeight**: height of the container component, in pixels.<br>- **loadingStatus**: image loading status. The value **1** means that the image is successfully loaded, and **0** means the opposite.<br>Since API version 9, this API is supported in ArkTS widgets. |
| onError(callback: (event?: { componentWidth: number, componentHeight: number , message<sup>9+</sup>: string }) =&gt; void) | Triggered when an exception occurs during image loading.<br>- **componentWidth**: width of the container component, in pixels.<br>- **componentHeight**: height of the container component, in pixels.<br>Since API version 9, this API is supported in ArkTS widgets. |
| onFinish(event: () =&gt; void)                               | Triggered when the animation playback in the loaded SVG image is complete. If the animation is an infinite loop, this callback is not triggered.<br>Since API version 9, this API is supported in ArkTS widgets. |
Z
zengyawen 已提交
89 90 91

## Example

E
ester.zhou 已提交
92
### Loading Images
Z
zengyawen 已提交
93

E
ester.zhou 已提交
94
Load and display different types of images and set the scale mode of the images.
E
ester.zhou 已提交
95 96

```ts
Z
zengyawen 已提交
97 98 99
@Entry
@Component
struct ImageExample1 {
Z
zengyawen 已提交
100
  private on: string = 'www.example.com' 
Z
zengyawen 已提交
101 102 103 104 105 106 107 108
  @State src: string = this.on

  build() {
    Column() {
      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start }) {
        Text('default').fontSize(16).fontColor(0xcccccc).height(30)
        Row({ space: 5 }) {
          Image($r('app.media.ic_png'))
E
ester.zhou 已提交
109
            .width(110).height(110).border({ width: 1 })
Z
zengyawen 已提交
110 111
            .overlay('png', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
          Image($r('app.media.ic_gif'))
E
ester.zhou 已提交
112
            .width(110).height(110).border({ width: 1 })
Z
zengyawen 已提交
113 114
            .overlay('gif', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
          Image($r('app.media.ic_svg'))
E
ester.zhou 已提交
115
            .width(110).height(110).border({ width: 1 })
Z
zengyawen 已提交
116 117 118 119
            .overlay('svg', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
        }
        Row({ space: 5 }) {
          Image($r('app.media.img_example'))
E
ester.zhou 已提交
120
            .width(110).height(110).border({ width: 1 })
Z
zengyawen 已提交
121 122
            .overlay('jpg', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
          Image(this.src)
E
ester.zhou 已提交
123
            .width(110).height(110).border({ width: 1 })
Z
zengyawen 已提交
124 125 126 127 128 129 130 131
            .overlay('network', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
        }.margin({ top: 25, bottom: 10 })
      }

      Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start }) {
        Text('objectFit').fontSize(16).fontColor(0xcccccc).height(30)
        Row({ space: 5 }) {
          Image($r('app.media.img_example'))
E
ester.zhou 已提交
132
            .border({ width: 1 })
Z
zengyawen 已提交
133 134 135
            .objectFit(ImageFit.None).width(110).height(110)
            .overlay('None', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
          Image($r('app.media.img_example'))
E
ester.zhou 已提交
136
            .border({ width: 1 })
Z
zengyawen 已提交
137 138 139
            .objectFit(ImageFit.Fill).width(110).height(110)
            .overlay('Fill', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
          Image($r('app.media.img_example'))
E
ester.zhou 已提交
140
            .border({ width: 1 })
Z
zengyawen 已提交
141 142 143 144 145
            .objectFit(ImageFit.Cover).width(110).height(110)
            .overlay('Cover', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
        }
        Row({ space: 5 }) {
          Image($r('app.media.img_example_w250'))
E
ester.zhou 已提交
146
            .border({ width: 1 })
Z
zengyawen 已提交
147 148 149
            .objectFit(ImageFit.Contain).width(110).height(110)
            .overlay('Contain', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
          Image($r('app.media.img_example_w250'))
E
ester.zhou 已提交
150
            .border({ width: 1 })
Z
zengyawen 已提交
151 152 153 154 155 156 157 158 159
            .objectFit(ImageFit.ScaleDown).width(110).height(110)
            .overlay('ScaleDown', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
        }.margin({ top: 25 })
      }
    }.height(320).width(360).padding({ right: 10, top: 10 })
  }
}
```

Z
zengyawen 已提交
160 161
![en-us_image_0000001211898484](figures/en-us_image_0000001211898484.gif)

E
ester.zhou 已提交
162 163 164 165


### Loading Online Images

E
ester.zhou 已提交
166
The default network timeout period is 5 minutes for loading online images. When using an online image, you are advised to use **alt** to configure the placeholder image displayed during loading. If more flexible network configuration is required, use the [HTTP](../../connectivity/http-request.md) module in the SDK to send a network request, and then decode the returned data into a **PixelMap** in the **\<Image>** component. For details about image development, see [Image Development](../../media/image.md). The code snippet is as follows:
E
ester.zhou 已提交
167 168 169 170

```tsx
// @ts-nocheck
import http from '@ohos.net.http';
E
ester.zhou 已提交
171
import ResponseCode from '@ohos.net.http'
E
ester.zhou 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185
import image from '@ohos.multimedia.image'


@Entry 
@Component 
struct Index {
    
  // Create a PixelMap state variable to receive online images.
  @State image: PixelMap = undefined

  build() {
    Column({space: 10}) {
      Button ("Get Online Image")
        .onClick(() => {
E
ester.zhou 已提交
186
          this.httpRequest()
E
ester.zhou 已提交
187 188 189 190 191 192 193 194 195 196
        })
      Image(this.image).height(100).width(100)
    }
    .width('100%')
    .height('100%')
    .padding(10)
  }

  // Request an online image.
  private httpRequest() {
E
ester.zhou 已提交
197
    let httpRequest = http.createHttp()
E
ester.zhou 已提交
198 199 200 201 202 203 204 205 206 207
	
    httpRequest.request(
      "https://www.example.com/xxx.png",   // Enter a specific URL of the online image.
      (error, data) => {
        if(error) {
          console.log("error code: " + error.code + ", msg: " + error.message)
        } else {
          let code = data.responseCode
          if(ResponseCode.ResponseCode.OK == code) {
            let imageSource = image.createImageSource(data.result)
E
ester.zhou 已提交
208
            let options = {alphaType: 0,                     // Opacity
E
ester.zhou 已提交
209 210 211 212 213 214 215 216
                           editable: false,                  // Whether the image is editable
                           pixelFormat: 3,                   // Pixel format
                           scaleMode: 1,                     // Scale mode
                           size: {height: 100, width: 100}} // Image size
            imageSource.createPixelMap(options).then((pixelMap) => {
              this.image = pixelMap
            })
          } else {
E
ester.zhou 已提交
217
            console.log("response code: " + code)
E
ester.zhou 已提交
218 219 220 221 222 223 224 225
          }
        }
      }
    )
  }
}
```

E
ester.zhou 已提交
226 227 228
> **NOTE**
> 
> For details about the request mode, timeout, and additional request parameters for loading online images, see [request()](../../reference/apis/js-apis-http.md) in the HTTP module.
E
ester.zhou 已提交
229

E
ester.zhou 已提交
230
### Setting Attributes
Z
zengyawen 已提交
231

E
ester.zhou 已提交
232
```ts
Z
zengyawen 已提交
233 234 235 236 237 238 239 240 241 242
@Entry
@Component
struct ImageExample2 {

  build() {
    Column({ space: 10 }) {
      Text('renderMode').fontSize(12).fontColor(0xcccccc).width('96%').height(30)
      Row({ space: 50 }) {
        Image($r('app.media.img_example'))
          .renderMode(ImageRenderMode.Original).width(100).height(100)
E
ester.zhou 已提交
243
          .border({ width: 1 })
Z
zengyawen 已提交
244 245 246
          .overlay('Original', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
        Image($r('app.media.img_example'))
          .renderMode(ImageRenderMode.Template).width(100).height(100)
E
ester.zhou 已提交
247
          .border({ width: 1 })
Z
zengyawen 已提交
248 249
          .overlay('Template', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
      }
E
ester.zhou 已提交
250
      
Z
zengyawen 已提交
251 252 253
      Text('alt').fontSize(12).fontColor(0xcccccc).width('96%').height(30)
      Image('')
        .alt($r('app.media.Image_none'))
E
ester.zhou 已提交
254
        .width(100).height(100).border({ width: 1 })
E
ester.zhou 已提交
255
        
Z
zengyawen 已提交
256 257 258 259 260 261 262 263
      Text('sourceSize').fontSize(12).fontColor(0xcccccc).width('96%')
      Row({ space: 50 }) {
        Image($r('app.media.img_example'))
          .sourceSize({
            width: 150,
            height: 150
          })
          .objectFit(ImageFit.ScaleDown).width('25%').aspectRatio(1)
E
ester.zhou 已提交
264
          .border({ width: 1 })
Z
zengyawen 已提交
265 266 267 268 269 270 271
          .overlay('w:150 h:150', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
        Image($r('app.media.img_example'))
          .sourceSize({
            width: 200,
            height: 200
          })
          .objectFit(ImageFit.ScaleDown).width('25%').aspectRatio(1)
E
ester.zhou 已提交
272
          .border({ width: 1 })
Z
zengyawen 已提交
273 274
          .overlay('w:200 h:200', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
      }
E
ester.zhou 已提交
275
      
Z
zengyawen 已提交
276 277 278
      Text('objectRepeat').fontSize(12).fontColor(0xcccccc).width('96%').height(30)
      Row({ space: 5 }) {
        Image($r('app.media.ic_health_heart'))
E
ester.zhou 已提交
279
          .width(120).height(125).border({ width: 1 })
Z
zengyawen 已提交
280 281 282
          .objectRepeat(ImageRepeat.XY).objectFit(ImageFit.ScaleDown)
          .overlay('ImageRepeat.XY', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
        Image($r('app.media.ic_health_heart'))
E
ester.zhou 已提交
283
          .width(110).height(125).border({ width: 1 })
Z
zengyawen 已提交
284 285 286
          .objectRepeat(ImageRepeat.Y).objectFit(ImageFit.ScaleDown)
          .overlay('ImageRepeat.Y', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
        Image($r('app.media.ic_health_heart'))
E
ester.zhou 已提交
287
          .width(110).height(125).border({ width: 1 })
Z
zengyawen 已提交
288 289 290 291 292 293 294 295
          .objectRepeat(ImageRepeat.X).objectFit(ImageFit.ScaleDown)
          .overlay('ImageRepeat.X', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
      }
    }.height(150).width('100%').padding({ right: 10 })
  }
}
```

Z
zengyawen 已提交
296 297
![en-us_image_0000001212058474](figures/en-us_image_0000001212058474.png)

E
ester.zhou 已提交
298
### Invoking Events
Z
zengyawen 已提交
299

E
ester.zhou 已提交
300
```ts
Z
zengyawen 已提交
301 302 303
@Entry
@Component
struct ImageExample3 {
E
ester.zhou 已提交
304 305
  @State widthValue: number = 0
  @State heightValue: number = 0
E
ester.zhou 已提交
306 307 308 309
  private on: Resource = $r('app.media.image_on')
  private off: Resource = $r('app.media.image_off')
  private on2off: Resource = $r('app.media.image_on2off')
  private off2on: Resource = $r('app.media.image_off2on')
Z
zengyawen 已提交
310 311 312 313 314 315 316 317 318 319 320 321 322 323
  @State src: Resource = this.on

  build() {
    Column() {
      Row({ space: 20 }) {
        Column() {
          Image($r('app.media.img_example1'))
            .alt($r('app.media.ic_public_picture'))
            .sourceSize({
              width: 900,
              height: 900
            })
            .objectFit(ImageFit.Cover)
            .height(180).width(180)
E
ester.zhou 已提交
324
            // Obtain the size of an image after the image loading is complete.
Z
zengyawen 已提交
325
            .onComplete((msg: { width: number,height: number }) => {
E
ester.zhou 已提交
326 327
              this.widthValue = msg.width
              this.heightValue = msg.height
Z
zengyawen 已提交
328 329 330 331
            })
            .onError(() => {
              console.log('load image fail')
            })
E
ester.zhou 已提交
332
            .overlay('\nwidth: ' + String(this.widthValue) + ' height: ' + String(this.heightValue), {
Z
zengyawen 已提交
333 334 335 336
              align: Alignment.Bottom,
              offset: { x: 0, y: 20 }
            })
        }
E
ester.zhou 已提交
337
        // Add a click event so that a specific image is loaded upon clicking.
Z
zengyawen 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
        Image(this.src)
          .width(120).height(120)
          .onClick(() => {
            if (this.src == this.on || this.src == this.off2on) {
              this.src = this.on2off
            } else {
              this.src = this.off2on
            }
          })
          .onFinish(() => {
            if (this.src == this.off2on) {
              this.src = this.on
            } else {
              this.src = this.off
            }
          })
      }
    }.width('100%')
  }
}
```

Z
zengyawen 已提交
360
![en-us_image_0000001256858397](figures/en-us_image_0000001256858397.gif)
E
ester.zhou 已提交
361 362 363 364

###  Rendering Sandbox Images

```ts
E
ester.zhou 已提交
365 366
import fileio from '@ohos.fileio';
import fs from '@ohos.file.fs';
E
ester.zhou 已提交
367
import context from '@ohos.app.ability.common';
E
ester.zhou 已提交
368 369 370 371 372 373

@Entry
@Component
struct LoadImageExample {
  @State resourcesPath: string = ''
  @State sandboxPath: string = ''
E
ester.zhou 已提交
374
  context: context.UIAbility = getContext(this) as context.UIAbilityContext
E
ester.zhou 已提交
375 376 377 378 379 380 381 382

  build() {
    Column() {
      Button ('Read Sandbox Image')
        .margin({ bottom: 10, top: 10 })
        .onClick(() => {
          this.sandboxPath = this.context.getApplicationContext().filesDir + '/icon.png'
          console.log(`Read the sandbox image=========>${this.sandboxPath}`)
E
ester.zhou 已提交
383
          let fd = fs.openSync(this.sandboxPath, 0o100)
E
ester.zhou 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
          console.log(`create file========>${fd}`)
          let srcPath = this.context.bundleCodeDir + '/entry/resources/base/media/icon.png'
          console.log('mySrcpath' + srcPath)
          fileio.copyFileSync(srcPath, this.sandboxPath) // Copy the image to the sandbox path.
          this.sandboxPath = 'file://' + this.context.getApplicationContext().filesDir + '/icon.png'
        })
      Button ('Read Image')
        .margin({ bottom: 10 })
        .onClick(() => {
          this.resourcesPath = 'file://' + this.context.bundleCodeDir + '/entry/resources/base/media/icon.png'
        })
      Text(`Image path: ${this.resourcesPath}`)
        .fontSize(20)
        .margin({ bottom: 10 })
      Image(this.resourcesPath)
        .width(100)
        .height(100)
      Text(`Sandbox image path: ${this.sandboxPath}`)
        .fontSize(20)
        .margin({ bottom: 10 })
      Image(this.sandboxPath)
        .width(100)
        .height(100)
    }
    .width('100%').height('100%')
  }
}
```