在HarmonyOS NEXT开发中 OCR的结果uri如何转换为 image.PixelMap显示在页面上?

在HarmonyOS NEXT开发中 OCR的结果uri如何转换为 image.PixelMap显示在页面上?

阅读 596
avatarAI BotBETA
在HarmonyOS NEXT开发中,将OCR的结果URI转换为`image.PixelMap`并显示在页面上,可以按照以下步骤进行:

1. **获取URI**:首先确保你已经从OCR操作中获取到了一个有效的URI。

2. **加载图像**:使用`media.common.ImageProvider`类从URI加载图像。这通常涉及到创建一个`media.common.UriImageSource`对象,并传递给`ImageProvider`。

3. **转换为PixelMap**:一旦图像被加载,你可以使用`ImageProvider`的`createPixelMap`方法将其转换为`PixelMap`对象。这通常需要在异步任务中完成,因为图像加载可能是耗时的操作。

4. **显示PixelMap**:最后,将`PixelMap`对象设置到页面上的`Image`组件中。这可以通过创建一个`image.PixelMapImageSource`对象并将其赋给`Image`组件的`imageSource`属性来实现。

下面是一个简化的代码示例,展示了如何执行这些步骤:

import ohos.aafwk.ability.AbilitySlice;
import ohos.agp.components.Image;
import ohos.agp.components.Component;
import ohos.media.image.ImageProvider;
import ohos.media.image.PixelMap;
import ohos.media.image.common.UriImageSource;
import ohos.media.common.Uri;

// 假设你已经有了OCR结果的URI
Uri ocrUri = Uri.parse("your_ocr_result_uri_here");

// 创建一个UriImageSource对象
UriImageSource uriImageSource = new UriImageSource(ocrUri);

// 创建一个ImageProvider对象
ImageProvider imageProvider = new ImageProvider(uriImageSource);

// 异步加载图像并转换为PixelMap
new Thread(() -> {

try {
    // 加载PixelMap
    PixelMap pixelMap = imageProvider.createPixelMap(null);

    // 切换到UI线程更新UI组件
    abilitySlice.getUITaskDispatcher().postTask(() -> {
        // 创建一个PixelMapImageSource对象
        image.PixelMapImageSource pixelMapImageSource = new image.PixelMapImageSource(pixelMap);

        // 获取页面上的Image组件
        Image imageComponent = (Image) abilitySlice.findComponentById(ResourceTable.Id_your_image_id);

        // 设置Image组件的图像源
        imageComponent.setImageSource(pixelMapImageSource);
    });
} catch (Exception e) {
    e.printStackTrace();
}

}).start();


**注意**:
- `ResourceTable.Id_your_image_id`应该替换为你实际页面中`Image`组件的ID。
- `your_ocr_result_uri_here`应该替换为OCR操作返回的实际URI字符串。
- 上述代码示例假设你在一个`AbilitySlice`(页面)的上下文中执行这些操作。

确保在实际应用中处理异常和边缘情况,比如URI无效或图像加载失败。
1 个回答

参考以下demo:

import { CardRecognition, CallbackParam, CardType, CardSide } from "@kit.VisionKit"; 
import { image } from '@kit.ImageKit' 
import fs from '@ohos.file.fs'; 
 
 
@Entry 
@Component 
struct Index { 
 
  @State showOCR:boolean = false 
  @State src?: image.PixelMap = undefined 
  build() { 
    Stack() { 
      Column(){ 
        Button('click me') 
          .onClick(()=>{ 
            this.showOCR = true 
          }) 
        Image(this.src) 
      } 
      if(this.showOCR) { 
        this.CardOCRPage() 
      } 
    } 
    .width('100%') 
    .height('100%') 
  } 
  @Builder 
  CardOCRPage() { 
    // Stack({ alignContent: Alignment.Top }) { 
    CardRecognition({ 
      // 此处选择身份证类型作为示例 
      supportType: CardType.CARD_ID, 
      cardSide:CardSide.FRONT, 
      callback: async (params:CallbackParam)=>{ 
        this.showOCR = false 
        if(params.cardInfo) { 
          let imageUri = params.cardInfo['front']['cardImageUri']; 
          let file = fs.openSync(imageUri, fs.OpenMode.READ_ONLY); 
          console.info('file fd:' + file.fd); 
          const imageSource: image.ImageSource = image.createImageSource(file.fd); 
          let decodingOptions: image.DecodingOptions = { 
            editable: true, 
            desiredPixelFormat: 3, 
          } 
          this.src = await imageSource.createPixelMap(decodingOptions); 
        } 
      } 
    }) 
      // } 
      .width('100%') 
      .height('100%') 
  } 
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题