string extractedText; using (var engine = new TesseractEngine(HostingEnvironment.MapPath(@"~\tessdata"), "eng", EngineMode.Default)) { using (var image = new Bitmap(file.InputStream)) { using (var page = engine.Process(image)) { extractedText = page.GetText(); } } } This code working fine in local iis server publish but when i published this same code to the windows server iis it is not working. Need help to solve the issue
-- You received this message because you are subscribed to the Google Groups "tesseract-ocr" group. To unsubscribe from this group and stop receiving emails from it, send an email to tesseract-ocr+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/tesseract-ocr/f4436897-30d8-4c1f-877d-7c3e443f1843n%40googlegroups.com.