顯示圖片(Image)

2024-01-25 13:21 更新

開發(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)用形式如下:

  1. Image(src: string | Resource | media.PixelMap)

該接口通過圖片數(shù)據(jù)源獲取圖片,支持本地圖片和網(wǎng)絡(luò)圖片的渲染展示。其中,src是圖片的數(shù)據(jù)源,加載方式請(qǐng)參考加載圖片資源。

加載圖片資源

Image支持加載存檔圖、多媒體像素圖兩種類型。

存檔圖類型數(shù)據(jù)源

存檔圖類型的數(shù)據(jù)源可以分為本地資源、網(wǎng)絡(luò)資源、Resource資源、媒體庫(kù)資源和base64。

  • 本地資源

    創(chuàng)建文件夾,將本地圖片放入ets文件夾下的任意位置。

    Image組件引入本地圖片路徑,即可顯示圖片(根目錄為ets文件夾)。

    1. Image('images/view.jpg')
    2. .width(200)
  • 網(wǎng)絡(luò)資源

    引入網(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ò)圖片的鏈接。

    1. Image('https://www.example.com/example.JPG') // 實(shí)際使用時(shí)請(qǐng)?zhí)鎿Q為真實(shí)地址
  • Resource資源

    使用資源格式可以跨包/跨模塊引入圖片,resources文件夾下的圖片都可以通過$r資源接口讀取到并轉(zhuǎn)換到Resource格式。

    圖1 resources

    調(diào)用方式:

    1. Image($r('app.media.icon'))

    還可以將圖片放在rawfile文件夾下。

    圖2 rawfile

    調(diào)用方式:

    1. Image($rawfile('snap'))
  • 媒體庫(kù)file://data/storage

    支持file://路徑前綴的字符串,用于訪問通過媒體庫(kù)提供的圖片路徑。

    1. 調(diào)用接口獲取圖庫(kù)的照片url。
      1. import picker from '@ohos.file.picker';
      2. @Entry
      3. @Component
      4. struct Index {
      5. @State imgDatas: string[] = [];
      6. // 獲取照片url集
      7. getAllImg() {
      8. let result = new Array<string>();
      9. try {
      10. let PhotoSelectOptions = new picker.PhotoSelectOptions();
      11. PhotoSelectOptions.MIMEType = picker.PhotoViewMIMETypes.IMAGE_TYPE;
      12. PhotoSelectOptions.maxSelectNumber = 5;
      13. let photoPicker = new picker.PhotoViewPicker();
      14. photoPicker.select(PhotoSelectOptions).then((PhotoSelectResult) => {
      15. this.imgDatas = PhotoSelectResult.photoUris;
      16. console.info('PhotoViewPicker.select successfully, PhotoSelectResult uri: ' + JSON.stringify(PhotoSelectResult));
      17. }).catch((err) => {
      18. console.error(`PhotoViewPicker.select failed with. Code: ${err.code}, message: ${err.message}`);
      19. });
      20. } catch (err) {
      21. console.error(`PhotoViewPicker failed with. Code: ${err.code}, message: ${err.message}`); }
      22. }
      23. // aboutToAppear中調(diào)用上述函數(shù),獲取圖庫(kù)的所有圖片url,存在imgDatas中
      24. async aboutToAppear() {
      25. this.getAllImg();
      26. }
      27. // 使用imgDatas的url加載圖片。
      28. build() {
      29. Column() {
      30. Grid() {
      31. ForEach(this.imgDatas, item => {
      32. GridItem() {
      33. Image(item)
      34. .width(200)
      35. }
      36. }, item => JSON.stringify(item))
      37. }
      38. }.width('100%').height('100%')
      39. }
      40. }
    2. 從媒體庫(kù)獲取的url格式通常如下。
      1. Image('file://media/Photos/5')
      2. .width(200)
  • base64

    路徑格式為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組件上,

  1. 創(chuàng)建PixelMap狀態(tài)變量。
    1. @State image: PixelMap = undefined;
  2. 引用多媒體。

    請(qǐng)求網(wǎng)絡(luò)圖片請(qǐng)求,解碼編碼PixelMap。

    1. 引用網(wǎng)絡(luò)權(quán)限與媒體庫(kù)權(quán)限。
      1. import http from '@ohos.net.http';
      2. import ResponseCode from '@ohos.net.http';
      3. import image from '@ohos.multimedia.image';
    2. 填寫網(wǎng)絡(luò)圖片地址。
      1. http.createHttp().request("https://www.example.com/xxx.png",
      2. (error, data) => {
      3. if (error){
      4. console.error(`http reqeust failed with. Code: ${error.code}, message: ${error.message}`);
      5. } else {
      6. }
      7. }
      8. )
    3. 將網(wǎng)絡(luò)地址成功返回的數(shù)據(jù),編碼轉(zhuǎn)碼成pixelMap的圖片格式。
      1. let code = data.responseCode;
      2. if (ResponseCode.ResponseCode.OK === code) {
      3. let res: any = data.result
      4. let imageSource = image.createImageSource(res);
      5. let options = {
      6. alphaType: 0, // 透明度
      7. editable: false, // 是否可編輯
      8. pixelFormat: 3, // 像素格式
      9. scaleMode: 1, // 縮略值
      10. size: { height: 100, width: 100}
      11. } // 創(chuàng)建圖片大小
      12. imageSource.createPixelMap(options).then((pixelMap) => {
      13. this.image = pixelMap
      14. })
      15. }
    4. 顯示圖片。
      1. Button("獲取網(wǎng)絡(luò)圖片")
      2. .onClick(() => {
      3. this.httpRequest()
      4. })
      5. Image(this.image).height(100).width(100)

顯示矢量圖

Image組件可顯示矢量圖(svg格式的圖片),支持的svg標(biāo)簽為:svg、rect、circle、ellipse、path、line、polyline、polygon和animate。

svg格式的圖片可以使用fillColor屬性改變圖片的繪制顏色。

  1. Image($r('app.media.cloud')).width(50)
  2. .fillColor(Color.Blue)
圖3 原始圖片
圖4 設(shè)置繪制顏色后的svg圖片

添加屬性

給Image組件設(shè)置屬性可以使圖片顯示更靈活,達(dá)到一些自定義的效果。以下是幾個(gè)常用屬性的使用示例,完整屬性信息詳見Image。

設(shè)置圖片縮放類型

通過objectFit屬性使圖片縮放到高度和寬度確定的框內(nèi)。

  1. @Entry
  2. @Component
  3. struct MyComponent {
  4. scroller: Scroller = new Scroller()
  5. build() {
  6. Scroll(this.scroller) {
  7. Row() {
  8. Image($r('app.media.img_2')).width(200).height(150)
  9. .border({ width: 1 })
  10. .objectFit(ImageFit.Contain).margin(15) // 保持寬高比進(jìn)行縮小或者放大,使得圖片完全顯示在顯示邊界內(nèi)。
  11. .overlay('Contain', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  12. Image($r('app.media.ic_img_2')).width(200).height(150)
  13. .border({ width: 1 })
  14. .objectFit(ImageFit.Cover).margin(15)
  15. // 保持寬高比進(jìn)行縮小或者放大,使得圖片兩邊都大于或等于顯示邊界。
  16. .overlay('Cover', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  17. Image($r('app.media.img_2')).width(200).height(150)
  18. .border({ width: 1 })
  19. // 自適應(yīng)顯示。
  20. .objectFit(ImageFit.Auto).margin(15)
  21. .overlay('Auto', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  22. }
  23. Row() {
  24. Image($r('app.media.img_2')).width(200).height(150)
  25. .border({ width: 1 })
  26. .objectFit(ImageFit.Fill).margin(15)
  27. // 不保持寬高比進(jìn)行放大縮小,使得圖片充滿顯示邊界。
  28. .overlay('Fill', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  29. Image($r('app.media.img_2')).width(200).height(150)
  30. .border({ width: 1 })
  31. // 保持寬高比顯示,圖片縮小或者保持不變。
  32. .objectFit(ImageFit.ScaleDown).margin(15)
  33. .overlay('ScaleDown', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  34. Image($r('app.media.img_2')).width(200).height(150)
  35. .border({ width: 1 })
  36. // 保持原有尺寸顯示。
  37. .objectFit(ImageFit.None).margin(15)
  38. .overlay('None', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  39. }
  40. }
  41. }
  42. }

圖片插值

當(dāng)原圖分辨率較低并且放大顯示時(shí),圖片會(huì)模糊出現(xiàn)鋸齒。這時(shí)可以使用interpolation屬性對(duì)圖片進(jìn)行插值,使圖片顯示得更清晰。

  1. @Entry
  2. @Component
  3. struct Index {
  4. build() {
  5. Column() {
  6. Row() {
  7. Image($r('app.media.grass'))
  8. .width('40%')
  9. .interpolation(ImageInterpolation.None)
  10. .borderWidth(1)
  11. .overlay("Interpolation.None", { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  12. .margin(10)
  13. Image($r('app.media.grass'))
  14. .width('40%')
  15. .interpolation(ImageInterpolation.Low)
  16. .borderWidth(1)
  17. .overlay("Interpolation.Low", { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  18. .margin(10)
  19. }.width('100%')
  20. .justifyContent(FlexAlign.Center)
  21. Row() {
  22. Image($r('app.media.grass'))
  23. .width('40%')
  24. .interpolation(ImageInterpolation.Medium)
  25. .borderWidth(1)
  26. .overlay("Interpolation.Medium", { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  27. .margin(10)
  28. Image($r('app.media.grass'))
  29. .width('40%')
  30. .interpolation(ImageInterpolation.High)
  31. .borderWidth(1)
  32. .overlay("Interpolation.High", { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  33. .margin(10)
  34. }.width('100%')
  35. .justifyContent(FlexAlign.Center)
  36. }
  37. .height('100%')
  38. }
  39. }

設(shè)置圖片重復(fù)樣式

通過objectRepeat屬性設(shè)置圖片的重復(fù)樣式方式,重復(fù)樣式請(qǐng)參考ImageRepeat枚舉說明。

  1. @Entry
  2. @Component
  3. struct MyComponent {
  4. build() {
  5. Column({ space: 10 }) {
  6. Row({ space: 5 }) {
  7. Image($r('app.media.ic_public_favor_filled_1'))
  8. .width(110)
  9. .height(115)
  10. .border({ width: 1 })
  11. .objectRepeat(ImageRepeat.XY)
  12. .objectFit(ImageFit.ScaleDown)
  13. // 在水平軸和豎直軸上同時(shí)重復(fù)繪制圖片
  14. .overlay('ImageRepeat.XY', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  15. Image($r('app.media.ic_public_favor_filled_1'))
  16. .width(110)
  17. .height(115)
  18. .border({ width: 1 })
  19. .objectRepeat(ImageRepeat.Y)
  20. .objectFit(ImageFit.ScaleDown)
  21. // 只在豎直軸上重復(fù)繪制圖片
  22. .overlay('ImageRepeat.Y', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  23. Image($r('app.media.ic_public_favor_filled_1'))
  24. .width(110)
  25. .height(115)
  26. .border({ width: 1 })
  27. .objectRepeat(ImageRepeat.X)
  28. .objectFit(ImageFit.ScaleDown)
  29. // 只在水平軸上重復(fù)繪制圖片
  30. .overlay('ImageRepeat.X', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  31. }
  32. }.height(150).width('100%').padding(8)
  33. }
  34. }

設(shè)置圖片渲染模式

通過renderMode屬性設(shè)置圖片的渲染模式為原色或黑白。

  1. @Entry
  2. @Component
  3. struct MyComponent {
  4. build() {
  5. Column({ space: 10 }) {
  6. Row({ space: 50 }) {
  7. Image($r('app.media.example'))
  8. // 設(shè)置圖片的渲染模式為原色
  9. .renderMode(ImageRenderMode.Original)
  10. .width(100)
  11. .height(100)
  12. .border({ width: 1 })
  13. // overlay是通用屬性,用于在組件上顯示說明文字
  14. .overlay('Original', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  15. Image($r('app.media.example'))
  16. // 設(shè)置圖片的渲染模式為黑白
  17. .renderMode(ImageRenderMode.Template)
  18. .width(100)
  19. .height(100)
  20. .border({ width: 1 })
  21. .overlay('Template', { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
  22. }
  23. }.height(150).width('100%').padding({ top: 20,right: 10 })
  24. }
  25. }

設(shè)置圖片解碼尺寸

通過sourceSize屬性設(shè)置圖片解碼尺寸,降低圖片的分辨率。

原圖尺寸為1280*960,該示例將圖片解碼為150*150和400*400。

  1. @Entry
  2. @Component
  3. struct Index {
  4. build() {
  5. Column() {
  6. Row({ space: 20 }) {
  7. Image($r('app.media.example'))
  8. .sourceSize({
  9. width: 150,
  10. height: 150
  11. })
  12. .objectFit(ImageFit.ScaleDown)
  13. .width('25%')
  14. .aspectRatio(1)
  15. .border({ width: 1 })
  16. .overlay('width:150 height:150', { align: Alignment.Bottom, offset: { x: 0, y: 40 } })
  17. Image($r('app.media.example'))
  18. .sourceSize({
  19. width: 400,
  20. height: 400
  21. })
  22. .objectFit(ImageFit.ScaleDown)
  23. .width('25%')
  24. .aspectRatio(1)
  25. .border({ width: 1 })
  26. .overlay('width:400 height:400', { align: Alignment.Bottom, offset: { x: 0, y: 40 } })
  27. }.height(150).width('100%').padding(20)
  28. }
  29. }
  30. }

為圖片添加濾鏡效果

通過colorFilter修改圖片的像素顏色,為圖片添加濾鏡。

  1. @Entry
  2. @Component
  3. struct Index {
  4. build() {
  5. Column() {
  6. Row() {
  7. Image($r('app.media.example'))
  8. .width('40%')
  9. .margin(10)
  10. Image($r('app.media.example'))
  11. .width('40%')
  12. .colorFilter(
  13. [1, 1, 0, 0, 0,
  14. 0, 1, 0, 0, 0,
  15. 0, 0, 1, 0, 0,
  16. 0, 0, 0, 1, 0])
  17. .margin(10)
  18. }.width('100%')
  19. .justifyContent(FlexAlign.Center)
  20. }
  21. }
  22. }

同步加載圖片

一般情況下,圖片加載流程會(huì)異步進(jìn)行,以避免阻塞主線程,影響UI交互。但是特定情況下,圖片刷新時(shí)會(huì)出現(xiàn)閃爍,這時(shí)可以使用syncLoad屬性,使圖片同步加載,從而避免出現(xiàn)閃爍。不建議圖片加載較長(zhǎng)時(shí)間時(shí)使用,會(huì)導(dǎo)致頁(yè)面無(wú)法響應(yīng)。

  1. Image($r('app.media.icon'))
  2. .syncLoad(true)

事件調(diào)用

通過在Image組件上綁定onComplete事件,圖片加載成功后可以獲取圖片的必要信息。如果圖片加載失敗,也可以通過綁定onError回調(diào)來(lái)獲得結(jié)果。

  1. @Entry
  2. @Component
  3. struct MyComponent {
  4. @State widthValue: number = 0
  5. @State heightValue: number = 0
  6. @State componentWidth: number = 0
  7. @State componentHeight: number = 0
  8. build() {
  9. Column() {
  10. Row() {
  11. Image($r('app.media.ic_img_2'))
  12. .width(200)
  13. .height(150)
  14. .margin(15)
  15. .onComplete(msg => {
  16. if(msg){
  17. this.widthValue = msg.width
  18. this.heightValue = msg.height
  19. this.componentWidth = msg.componentWidth
  20. this.componentHeight = msg.componentHeight
  21. }
  22. })
  23. // 圖片獲取失敗,打印結(jié)果
  24. .onError(() => {
  25. console.info('load image fail')
  26. })
  27. .overlay('\nwidth: ' + String(this.widthValue) + ', height: ' + String(this.heightValue) + '\ncomponentWidth: ' + String(this.componentWidth) + '\ncomponentHeight: ' + String(this.componentHeight), {
  28. align: Alignment.Bottom,
  29. offset: { x: 0, y: 60 }
  30. })
  31. }
  32. }
  33. }
  34. }

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)