1# 显示图片 2 3 4开发者经常需要在应用中显示一些图片,例如:按钮中的logo、网络图片、本地图片等。在应用中显示图片需要使用Image组件实现,Image支持多种图片格式,包括png、jpg、bmp、svg和gif,具体用法请参考[Image](../reference/arkui-ts/ts-basic-components-image.md)组件。 5 6 7Image通过调用接口来创建,接口调用形式如下: 8 9 10 11```ts 12Image(src: string | Resource | media.PixelMap) 13``` 14 15 16该接口通过图片数据源获取图片,支持本地图片和网络图片的渲染展示。其中,src是图片的数据源,加载方式请参考[加载图片资源](#加载图片资源)。 17 18 19## 加载图片资源 20 21Image支持加载存档图、多媒体像素图两种类型。 22 23 24### 存档图类型数据源 25 26存档图类型的数据源可以分为本地资源、网络资源、Resource资源、媒体库datashare资源和base64。 27 28- 本地资源 29 创建文件夹,将本地图片放入ets文件夹下的任意位置。 30 31 Image组件引入本地图片路径,即可显示图片(根目录为ets文件夹)。 32 33 ```ts 34 Image('images/view.jpg') 35 .width(200) 36 ``` 37 38- 网络资源 39 引入网络图片需申请权限ohos.permission.INTERNET,具体申请方式请参考[权限申请声明](../security/accesstoken-guidelines.md)。此时,Image组件的src参数为网络图片的链接。 40 41 ```ts 42 Image('https://www.example.com/example.JPG') // 实际使用时请替换为真实地址 43 ``` 44 45- Resource资源 46 使用资源格式可以跨包/跨模块引入图片,resources文件夹下的图片都可以通过$r资源接口读 取到并转换到Resource格式。 47 48 **图1** resouces 49 50 ![image-resource](figures/image-resource.jpg) 51 52 调用方式: 53 54 ``` 55 Image($r('app.media.icon')) 56 ``` 57 58 还可以将图片放在rawfile文件夹下。 59 60 **图2** rawfile 61 62 ![image-rawfile](figures/image-rawfile.jpg) 63 64 调用方式: 65 66 ``` 67 Image($rawfile('snap')) 68 ``` 69 70- 媒体库datashare 71 支持datashare://路径前缀的字符串,用于访问通过媒体库提供的图片路径。 72 73 1. 调用接口获取图库的照片url。 74 75 ```ts 76 import picker from '@ohos.file.picker'; 77 78 @Entry 79 @Component 80 struct Index { 81 @State imgDatas: string[] = []; 82 // 获取照片url集 83 getAllImg() { 84 let photoPicker = new picker.PhotoViewPicker(); 85 let result = new Array<string>(); 86 try { 87 let PhotoSelectOptions = new picker.PhotoSelectOptions(); 88 PhotoSelectOptions.MIMEType = picker.PhotoViewMIMETypes.IMAGE_TYPE; 89 PhotoSelectOptions.maxSelectNumber = 5; 90 let photoPicker = new picker.PhotoViewPicker(); 91 photoPicker.select(PhotoSelectOptions).then((PhotoSelectResult) => { 92 this.imgDatas = PhotoSelectResult.photoUris; 93 console.info('PhotoViewPicker.select successfully, PhotoSelectResult uri: ' + JSON.stringify(PhotoSelectResult)); 94 }).catch((err) => { 95 console.error(`PhotoViewPicker.select failed with. Code: ${err.code}, message: ${err.message}`); 96 }); 97 } catch (err) { 98 console.error(`PhotoViewPicker failed with. Code: ${err.code}, message: ${err.message}`); } 99 } 100 101 // aboutToAppear中调用上述函数,获取图库的所有图片url,存在imgDatas中 102 async aboutToAppear() { 103 this.getAllImg(); 104 } 105 // 使用imgDatas的url加载图片。 106 build() { 107 Column() { 108 Grid() { 109 ForEach(this.imgDatas, item => { 110 GridItem() { 111 Image(item) 112 .width(200) 113 } 114 }, item => JSON.stringify(item)) 115 } 116 }.width('100%').height('100%') 117 } 118 } 119 ``` 120 2. 从媒体库获取的url格式通常如下。 121 122 ```ts 123 Image('datashare:///media/5') 124 .width(200) 125 ``` 126 127- base64 128 129 路径格式为data:image/[png|jpeg|bmp|webp];base64,[base64 data],其中[base64 data]为Base64字符串数据。 130 131 Base64格式字符串可用于存储图片的像素数据,在网页上使用较为广泛。 132 133 134### 多媒体像素图 135 136PixelMap是图片解码后的像素图,具体用法请参考[图片开发指导](../media/image-overview.md)。以下示例将加载的网络图片返回的数据解码成PixelMap格式,再显示在Image组件上, 137 1381. 创建PixelMap状态变量。 139 140 ```ts 141 @State image: PixelMap = undefined; 142 ``` 143 1442. 引用多媒体。 145 请求网络图片请求,解码编码PixelMap。 146 147 1. 引用网络权限与媒体库权限。 148 149 ```ts 150 import http from '@ohos.net.http'; 151 import ResponseCode from '@ohos.net.http'; 152 import image from '@ohos.multimedia.image'; 153 ``` 154 2. 填写网络图片地址。 155 156 ```ts 157 http.createHttp().request("https://www.example.com/xxx.png", 158 (error, data) => { 159 if (error){ 160 console.error(`http reqeust failed with. Code: ${error.code}, message: ${error.message}`); 161 } else { 162 } 163 } 164 ) 165 ``` 166 3. 将网络地址成功返回的数据,编码转码成pixelMap的图片格式。 167 168 ```ts 169 let code = data.responseCode; 170 if(ResponseCode.ResponseCode.OK === code) { 171 let imageSource = image.createImageSource(data.result); 172 let options = { 173 alphaType: 0, // 透明度 174 editable: false, // 是否可编辑 175 pixelFormat: 3, // 像素格式 176 scaleMode: 1, // 缩略值 177 size: {height: 100, width: 100} 178 } // 创建图片大小 179 imageSource.createPixelMap(options).then((pixelMap) => { 180 this.image = pixelMap 181 }) 182 ``` 183 4. 显示图片。 184 185 ```ts 186 Button("获取网络图片") 187 .onClick(() => { 188 this.httpRequest() 189 }) 190 Image(this.image).height(100).width(100) 191 ``` 192 193 194## 显示矢量图 195 196Image组件可显示矢量图(svg格式的图片),支持的svg标签为:svg、rect、circle、ellipse、path、line、polyline、polygon和animate。 197 198svg格式的图片可以使用fillColor属性改变图片的绘制颜色。 199 200 201```ts 202Image($r('app.media.cloud')).width(50) 203.fillColor(Color.Blue) 204``` 205 206 **图3** 原始图片 207 208![屏幕截图_20230223_141141](figures/屏幕截图_20230223_141141.png) 209 210 **图4** 设置绘制颜色后的svg图片 211 212![屏幕截图_20230223_141404](figures/屏幕截图_20230223_141404.png) 213 214 215## 添加属性 216 217给Image组件设置属性可以使图片显示更灵活,达到一些自定义的效果。以下是几个常用属性的使用示例,完整属性信息详见[Image](../reference/arkui-ts/ts-basic-components-image.md)。 218 219 220### 设置图片缩放类型 221 222通过objectFit属性使图片缩放到高度和宽度确定的框内。 223 224 225```ts 226@Entry 227@Component 228struct MyComponent { 229 scroller: Scroller = new Scroller() 230 231 build() { 232 Scroll(this.scroller) { 233 Row() { 234 Image($r('app.media.img_2')).width(200).height(150) 235 .border({ width: 1 }) 236 .objectFit(ImageFit.Contain).margin(15) // 保持宽高比进行缩小或者放大,使得图片完全显示在显示边界内。 237 .overlay('Contain', { align: Alignment.Bottom, offset: { x: 0, y: 20 } }) 238 Image($r('app.media.ic_img_2')).width(200).height(150) 239 .border({ width: 1 }) 240 .objectFit(ImageFit.Cover).margin(15) 241 // 保持宽高比进行缩小或者放大,使得图片两边都大于或等于显示边界。 242 .overlay('Cover', { align: Alignment.Bottom, offset: { x: 0, y: 20 } }) 243 Image($r('app.media.img_2')).width(200).height(150) 244 .border({ width: 1 }) 245 // 自适应显示。 246 .objectFit(ImageFit.Auto).margin(15) 247 .overlay('Auto', { align: Alignment.Bottom, offset: { x: 0, y: 20 } }) 248 } 249 Row() { 250 Image($r('app.media.img_2')).width(200).height(150) 251 .border({ width: 1 }) 252 .objectFit(ImageFit.Fill).margin(15) 253 // 不保持宽高比进行放大缩小,使得图片充满显示边界。 254 .overlay('Fill', { align: Alignment.Bottom, offset: { x: 0, y: 20 } }) 255 Image($r('app.media.img_2')).width(200).height(150) 256 .border({ width: 1 }) 257 // 保持宽高比显示,图片缩小或者保持不变。 258 .objectFit(ImageFit.ScaleDown).margin(15) 259 .overlay('ScaleDown', { align: Alignment.Bottom, offset: { x: 0, y: 20 } }) 260 Image($r('app.media.img_2')).width(200).height(150) 261 .border({ width: 1 }) 262 // 保持原有尺寸显示。 263 .objectFit(ImageFit.None).margin(15) 264 .overlay('None', { align: Alignment.Bottom, offset: { x: 0, y: 20 } }) 265 } 266 } 267 } 268} 269``` 270 271![zh-cn_image_0000001511421240](figures/zh-cn_image_0000001511421240.png) 272 273 274### 同步加载图片 275 276一般情况下,图片加载流程会异步进行,以避免阻塞主线程,影响UI交互。但是特定情况下,图片刷新时会出现闪烁,这时可以使用syncLoad属性,使图片同步加载,从而避免出现闪烁。不建议图片加载较长时间时使用,会导致页面无法响应。 277 278 279```ts 280Image($r('app.media.icon')) 281 .syncLoad(true) 282``` 283 284 285## 事件调用 286 287通过在Image组件上绑定onComplete事件,图片加载成功后可以获取图片的必要信息。如果图片加载失败,也可以通过绑定onError回调来获得结果。 288 289 290```ts 291@Entry 292@Component 293struct MyComponent { 294 @State widthValue: number = 0 295 @State heightValue: number = 0 296 @State componentWidth: number = 0 297 @State componentHeight: number = 0 298 299 build() { 300 Column() { 301 Row() { 302 Image($r('app.media.ic_img_2')) 303 .width(200) 304 .height(150) 305 .margin(15) 306 .onComplete((msg: { 307 width: number, 308 height: number, 309 componentWidth: number, 310 componentHeight: number 311 }) => { 312 this.widthValue = msg.width 313 this.heightValue = msg.height 314 this.componentWidth = msg.componentWidth 315 this.componentHeight = msg.componentHeight 316 }) 317 // 图片获取失败,打印结果 318 .onError(() => { 319 console.info('load image fail') 320 }) 321 .overlay('\nwidth: ' + String(this.widthValue) + ', height: ' + String(this.heightValue) + '\ncomponentWidth: ' + String(this.componentWidth) + '\ncomponentHeight: ' + String(this.componentHeight), { 322 align: Alignment.Bottom, 323 offset: { x: 0, y: 60 } 324 }) 325 } 326 } 327 } 328} 329``` 330 331 332![zh-cn_image_0000001511740460](figures/zh-cn_image_0000001511740460.png) 333