Handwriting to text

I’m wanting to convert handwriting to text. I upload image, click “recognise” then it just says in progress. When I click to copy to clipboard and paste the pasted text reads “in progress…”
Please advise. Thank you.

@Wishongirl,

Are you using this free app Free Online Image To Text Converter - Online OCR Software?
Or you are using Aspose.OCR (which API)?

Hi, I’m trying with aspose on laptop. Convert handwriting to text.

@Wishongirl

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): OCRNET-329

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@Wishongirl

We would like to share that support to recognize handwritten content is added in 24.1 version of the API.

string imgPath = testDataDir + $"{img}";
PreprocessingFilter filters = new PreprocessingFilter()
{
    // PreprocessingFilter.Binarize()
};

OcrInput input = new OcrInput(InputType.SingleImage, filters);
input.Add(imgPath);
var result = api.RecognizeHandwrittenText(input);