-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
Describe the bug
Importing TextDetections showed the (lint) error ' TextDetections not found in @capacitor-community/image-to-text' import/named'
To Reproduce
Import as described in the Read Me in a Vuejs/Quasar project
Expected behavior
Expected to be able to use the example.
Desktop (please complete the following information):
Mac OS 14.2, Visual Studio Code
Additional context
**This works:**
import { Ocr } from '@capacitor-community/image-to-text'
import { Camera, CameraResultType, CameraSource } from '@capacitor/camera'
async function scanOCR() {
const photo = await Camera.getPhoto({
quality: 90,
allowEditing: true,
resultType: CameraResultType.Uri,
source: CameraSource.Camera
})
const data: Ocr.TextDetections = await Ocr.detectText({ filename: photo.path })
for (const detection of data.textDetections) {
console.log(detection.text)
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels