You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tesseract-ocr
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