I've tried fine reader online and it can convert image to excel but when I tried the cloud ocr it wasn't able to convert the image to excel. Is excel extension supported for ocr sdk?
By the way I'm please that it can convert the image into xml but I would also prefer if it can convert the image into excel. Thanks!
Comments
2 comments
Excel output format is supported in cloud ocr sdk, however, you need to tweak java sample to get it. Just add
else if (ext.equals(".xlsx")) { return ProcessingSettings.OutputFormat.xlsx; }
to TestApp.java, line 456.Thanks for the help. :) There should be a comment next time in the display help that you need to tweak something for the output format.
Please sign in to leave a comment.