W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
開發(fā)者經(jīng)常需要在應(yīng)用中顯示一些圖片,例如:按鈕中的icon、網(wǎng)絡(luò)圖片、本地圖片等。在應(yīng)用中顯示圖片需要使用Image組件實(shí)現(xiàn),Image支持多種圖片格式,包括png、jpg、bmp、svg和gif,具體用法請(qǐng)參考Image組件。
Image通過調(diào)用接口來(lái)創(chuàng)建,接口調(diào)用形式如下:
- Image(src: string | Resource | media.PixelMap)
該接口通過圖片數(shù)據(jù)源獲取圖片,支持本地圖片和網(wǎng)絡(luò)圖片的渲染展示。其中,src是圖片的數(shù)據(jù)源,加載方式請(qǐng)參考加載圖片資源。
存檔圖類型的數(shù)據(jù)源可以分為本地資源、網(wǎng)絡(luò)資源、Resource資源、媒體庫(kù)資源和base64。
創(chuàng)建文件夾,將本地圖片放入ets文件夾下的任意位置。
Image組件引入本地圖片路徑,即可顯示圖片(根目錄為ets文件夾)。
- Image('images/view.jpg')
- .width(200)
引入網(wǎng)絡(luò)圖片需申請(qǐng)權(quán)限ohos.permission.INTERNET,具體申請(qǐng)方式請(qǐng)參考權(quán)限申請(qǐng)聲明。此時(shí),Image組件的src參數(shù)為網(wǎng)絡(luò)圖片的鏈接。
- Image('https://www.example.com/example.JPG') // 實(shí)際使用時(shí)請(qǐng)?zhí)鎿Q為真實(shí)地址
使用資源格式可以跨包/跨模塊引入圖片,resources文件夾下的圖片都可以通過$r資源接口讀取到并轉(zhuǎn)換到Resource格式。
調(diào)用方式:
- Image($r('app.media.icon'))
還可以將圖片放在rawfile文件夾下。
調(diào)用方式:
- Image($rawfile('snap'))
支持file://路徑前綴的字符串,用于訪問通過媒體庫(kù)提供的圖片路徑。
- import picker from '@ohos.file.picker';
- @Entry
- @Component
- struct Index {
- @State imgDatas: string[] = [];
- // 獲取照片url集
- getAllImg() {
- let result = new Array<string>();
- try {
- let PhotoSelectOptions = new picker.PhotoSelectOptions();
- PhotoSelectOptions.MIMEType = picker.PhotoViewMIMETypes.IMAGE_TYPE;
- PhotoSelectOptions.maxSelectNumber = 5;
- let photoPicker = new picker.PhotoViewPicker();
- photoPicker.select(PhotoSelectOptions).then((PhotoSelectResult) => {
- this.imgDatas = PhotoSelectResult.photoUris;
- console.info('PhotoViewPicker.select successfully, PhotoSelectResult uri: ' + JSON.stringify(PhotoSelectResult));
- }).catch((err) => {
- console.error(`PhotoViewPicker.select failed with. Code: ${err.code}, message: ${err.message}`);
- });
- } catch (err) {
- console.error(`PhotoViewPicker failed with. Code: ${err.code}, message: ${err.message}`); }
- }
- // aboutToAppear中調(diào)用上述函數(shù),獲取圖庫(kù)的所有圖片url,存在imgDatas中
- async aboutToAppear() {
- this.getAllImg();
- }
- // 使用imgDatas的url加載圖片。
- build() {
- Column() {
- Grid() {
- ForEach(this.imgDatas, item => {
- GridItem() {
- Image(item)
- .width(200)
- }
- }, item => JSON.stringify(item))
- }
- }.width('100%').height('100%')
- }
- }
- Image('file://media/Photos/5')
- .width(200)
路徑格式為data:image/[png|jpeg|bmp|webp];base64,[base64 data],其中[base64 data]為Base64字符串?dāng)?shù)據(jù)。
Base64格式字符串可用于存儲(chǔ)圖片的像素?cái)?shù)據(jù),在網(wǎng)頁(yè)上使用較為廣泛。
PixelMap是圖片解碼后的像素圖,具體用法請(qǐng)參考圖片開發(fā)指導(dǎo)。以下示例將加載的網(wǎng)絡(luò)圖片返回的數(shù)據(jù)解碼成PixelMap格式,再顯示在Image組件上,
- @State image: PixelMap = undefined;
請(qǐng)求網(wǎng)絡(luò)圖片請(qǐng)求,解碼編碼PixelMap。
- import http from '@ohos.net.http';
- import ResponseCode from '@ohos.net.http';
- import image from '@ohos.multimedia.image';
- http.createHttp().request("https://www.example.com/xxx.png",
- (error, data) => {
- if (error){
- console.error(`http reqeust failed with. Code: ${error.code}, message: ${error.message}`);
- } else {
- }
- }
- )
- let code = data.responseCode;
- if (ResponseCode.ResponseCode.OK === code) {
- let res: any = data.result
- let imageSource = image.createImageSource(res);
- let options = {
- alphaType: 0, // 透明度
- editable: false, // 是否可編輯
- pixelFormat: 3, // 像素格式
- scaleMode: 1, // 縮略值
- size: { height: 100, width: 100}
- } // 創(chuàng)建圖片大小
- imageSource.createPixelMap(options).then((pixelMap) => {
- this.image = pixelMap
- })
- }
- Button("獲取網(wǎng)絡(luò)圖片")
- .onClick(() => {
- this.httpRequest()
- })
- Image(this.image).height(100).width(100)
Image組件可顯示矢量圖(svg格式的圖片),支持的svg標(biāo)簽為:svg、rect、circle、ellipse、path、line、polyline、polygon和animate。
svg格式的圖片可以使用fillColor屬性改變圖片的繪制顏色。
- Image($r('app.media.cloud')).width(50)
- .fillColor(Color.Blue)
通過objectFit屬性使圖片縮放到高度和寬度確定的框內(nèi)。
- @Entry
- @Component
- struct MyComponent {
- scroller: Scroller = new Scroller()
- build() {
- Scroll(this.scroller) {
- Row() {
- Image($r('app.media.img_2')).width(200).height(150)
- .border({ width: 1 })
- .objectFit(ImageFit.Contain).margin(15) // 保持寬高比進(jìn)行縮小或者放大,使得圖片完全顯示在顯示邊界內(nèi)。
- .overlay('Contain', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- Image($r('app.media.ic_img_2')).width(200).height(150)
- .border({ width: 1 })
- .objectFit(ImageFit.Cover).margin(15)
- // 保持寬高比進(jìn)行縮小或者放大,使得圖片兩邊都大于或等于顯示邊界。
- .overlay('Cover', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- Image($r('app.media.img_2')).width(200).height(150)
- .border({ width: 1 })
- // 自適應(yīng)顯示。
- .objectFit(ImageFit.Auto).margin(15)
- .overlay('Auto', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- }
- Row() {
- Image($r('app.media.img_2')).width(200).height(150)
- .border({ width: 1 })
- .objectFit(ImageFit.Fill).margin(15)
- // 不保持寬高比進(jìn)行放大縮小,使得圖片充滿顯示邊界。
- .overlay('Fill', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- Image($r('app.media.img_2')).width(200).height(150)
- .border({ width: 1 })
- // 保持寬高比顯示,圖片縮小或者保持不變。
- .objectFit(ImageFit.ScaleDown).margin(15)
- .overlay('ScaleDown', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- Image($r('app.media.img_2')).width(200).height(150)
- .border({ width: 1 })
- // 保持原有尺寸顯示。
- .objectFit(ImageFit.None).margin(15)
- .overlay('None', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- }
- }
- }
- }
當(dāng)原圖分辨率較低并且放大顯示時(shí),圖片會(huì)模糊出現(xiàn)鋸齒。這時(shí)可以使用interpolation屬性對(duì)圖片進(jìn)行插值,使圖片顯示得更清晰。
- @Entry
- @Component
- struct Index {
- build() {
- Column() {
- Row() {
- Image($r('app.media.grass'))
- .width('40%')
- .interpolation(ImageInterpolation.None)
- .borderWidth(1)
- .overlay("Interpolation.None", { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- .margin(10)
- Image($r('app.media.grass'))
- .width('40%')
- .interpolation(ImageInterpolation.Low)
- .borderWidth(1)
- .overlay("Interpolation.Low", { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- .margin(10)
- }.width('100%')
- .justifyContent(FlexAlign.Center)
- Row() {
- Image($r('app.media.grass'))
- .width('40%')
- .interpolation(ImageInterpolation.Medium)
- .borderWidth(1)
- .overlay("Interpolation.Medium", { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- .margin(10)
- Image($r('app.media.grass'))
- .width('40%')
- .interpolation(ImageInterpolation.High)
- .borderWidth(1)
- .overlay("Interpolation.High", { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- .margin(10)
- }.width('100%')
- .justifyContent(FlexAlign.Center)
- }
- .height('100%')
- }
- }
通過objectRepeat屬性設(shè)置圖片的重復(fù)樣式方式,重復(fù)樣式請(qǐng)參考ImageRepeat枚舉說明。
- @Entry
- @Component
- struct MyComponent {
- build() {
- Column({ space: 10 }) {
- Row({ space: 5 }) {
- Image($r('app.media.ic_public_favor_filled_1'))
- .width(110)
- .height(115)
- .border({ width: 1 })
- .objectRepeat(ImageRepeat.XY)
- .objectFit(ImageFit.ScaleDown)
- // 在水平軸和豎直軸上同時(shí)重復(fù)繪制圖片
- .overlay('ImageRepeat.XY', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- Image($r('app.media.ic_public_favor_filled_1'))
- .width(110)
- .height(115)
- .border({ width: 1 })
- .objectRepeat(ImageRepeat.Y)
- .objectFit(ImageFit.ScaleDown)
- // 只在豎直軸上重復(fù)繪制圖片
- .overlay('ImageRepeat.Y', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- Image($r('app.media.ic_public_favor_filled_1'))
- .width(110)
- .height(115)
- .border({ width: 1 })
- .objectRepeat(ImageRepeat.X)
- .objectFit(ImageFit.ScaleDown)
- // 只在水平軸上重復(fù)繪制圖片
- .overlay('ImageRepeat.X', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- }
- }.height(150).width('100%').padding(8)
- }
- }
通過renderMode屬性設(shè)置圖片的渲染模式為原色或黑白。
- @Entry
- @Component
- struct MyComponent {
- build() {
- Column({ space: 10 }) {
- Row({ space: 50 }) {
- Image($r('app.media.example'))
- // 設(shè)置圖片的渲染模式為原色
- .renderMode(ImageRenderMode.Original)
- .width(100)
- .height(100)
- .border({ width: 1 })
- // overlay是通用屬性,用于在組件上顯示說明文字
- .overlay('Original', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- Image($r('app.media.example'))
- // 設(shè)置圖片的渲染模式為黑白
- .renderMode(ImageRenderMode.Template)
- .width(100)
- .height(100)
- .border({ width: 1 })
- .overlay('Template', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- }
- }.height(150).width('100%').padding({ top: 20,right: 10 })
- }
- }
通過sourceSize屬性設(shè)置圖片解碼尺寸,降低圖片的分辨率。
原圖尺寸為1280*960,該示例將圖片解碼為150*150和400*400。
- @Entry
- @Component
- struct Index {
- build() {
- Column() {
- Row({ space: 20 }) {
- Image($r('app.media.example'))
- .sourceSize({
- width: 150,
- height: 150
- })
- .objectFit(ImageFit.ScaleDown)
- .width('25%')
- .aspectRatio(1)
- .border({ width: 1 })
- .overlay('width:150 height:150', { align: Alignment.Bottom, offset: { x: 0, y: 40 } })
- Image($r('app.media.example'))
- .sourceSize({
- width: 400,
- height: 400
- })
- .objectFit(ImageFit.ScaleDown)
- .width('25%')
- .aspectRatio(1)
- .border({ width: 1 })
- .overlay('width:400 height:400', { align: Alignment.Bottom, offset: { x: 0, y: 40 } })
- }.height(150).width('100%').padding(20)
- }
- }
- }
通過colorFilter修改圖片的像素顏色,為圖片添加濾鏡。
- @Entry
- @Component
- struct Index {
- build() {
- Column() {
- Row() {
- Image($r('app.media.example'))
- .width('40%')
- .margin(10)
- Image($r('app.media.example'))
- .width('40%')
- .colorFilter(
- [1, 1, 0, 0, 0,
- 0, 1, 0, 0, 0,
- 0, 0, 1, 0, 0,
- 0, 0, 0, 1, 0])
- .margin(10)
- }.width('100%')
- .justifyContent(FlexAlign.Center)
- }
- }
- }
一般情況下,圖片加載流程會(huì)異步進(jìn)行,以避免阻塞主線程,影響UI交互。但是特定情況下,圖片刷新時(shí)會(huì)出現(xiàn)閃爍,這時(shí)可以使用syncLoad屬性,使圖片同步加載,從而避免出現(xiàn)閃爍。不建議圖片加載較長(zhǎng)時(shí)間時(shí)使用,會(huì)導(dǎo)致頁(yè)面無(wú)法響應(yīng)。
- Image($r('app.media.icon'))
- .syncLoad(true)
通過在Image組件上綁定onComplete事件,圖片加載成功后可以獲取圖片的必要信息。如果圖片加載失敗,也可以通過綁定onError回調(diào)來(lái)獲得結(jié)果。
- @Entry
- @Component
- struct MyComponent {
- @State widthValue: number = 0
- @State heightValue: number = 0
- @State componentWidth: number = 0
- @State componentHeight: number = 0
- build() {
- Column() {
- Row() {
- Image($r('app.media.ic_img_2'))
- .width(200)
- .height(150)
- .margin(15)
- .onComplete(msg => {
- if(msg){
- this.widthValue = msg.width
- this.heightValue = msg.height
- this.componentWidth = msg.componentWidth
- this.componentHeight = msg.componentHeight
- }
- })
- // 圖片獲取失敗,打印結(jié)果
- .onError(() => {
- console.info('load image fail')
- })
- .overlay('\nwidth: ' + String(this.widthValue) + ', height: ' + String(this.heightValue) + '\ncomponentWidth: ' + String(this.componentWidth) + '\ncomponentHeight: ' + String(this.componentHeight), {
- align: Alignment.Bottom,
- offset: { x: 0, y: 60 }
- })
- }
- }
- }
- }
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: