Thanks for the details. This can be done with addling camera logic. I can give you two sample for IOS/ Android/ Windows.
- OCR on iOS with Workflow and Cognitive Services
https://www.taygan.co/blog/2018/07/23/ocr-on-ios-with-workflow-and-cognitive-services
- Performing OCR for iOS, Android, and Windows with Microsoft Cognitive Services
https://devblogs.microsoft.com/xamarin/performing-ocr-for-ios-android-and-windows-with-microsoft-cognitive-services/
using Plugin.Media;
using Plugin.Media.Abstractions;
...
await CrossMedia.Current.Initialize(); MediaFile photo;
if (CrossMedia.Current.IsCameraAvailable)
{
photo = await CrossMedia.Current.TakePhotoAsync(new StoreCameraMediaOptions
{
Directory = "Invoices",
Name="Invoice.jpg"
});
}
else
{
photo = await CrossMedia.Current.PickPhotoAsync();
} - Performing OCR for iOS, Android, and Windows with Microsoft Cognitive Services
Regards,
Yutong