Hello, I am trying to set language to EnglishMedical in the demo for iOS, like this:
- (NSString*)urlString { return @"language=EnglishMedical&exportFormat=txt"; }
This causes the application to terminate. I experience the same with GermanMedical, but not with any of the other languages i have tried. The task status returned from server is "ProcessingFailed", and the reason for the crash is probably that the app is unable to find a download URL in the response. Is "EnglishMedical" not supported yet?
Comments
2 comments
We've moved our service to a newer version of OCR engine and in the newer version
EnglishLaw
andEnglishMedical
are included intoEnglish
language,GermanLaw
andGermanMedical
are included intoGerman
language andGermanNewSpellingLaw
andGermanNewSpellingMedical
are included intoGermanNewSpelling
so when you need
EnglishMedical
you just specifyEnglish
and have the right effect.We'll update the interface to disallow languages that are no longer supported and update the documentation.
Thanks for the quick reply, Dmitry :)
Please sign in to leave a comment.