我正在使用 MODI 来在我的一个应用程序中实现 ocr,并且每次我提供 tiff 时,由于某种原因,它只 ocrs tiff 的第一页。这是我的代码: public string OCR(string path) {
try
{
var md = new MODI.Document();
md.Create(path);
md.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH, true, true);
var image = (MODI.Image)md.Images[0];
return image.Layout.Text;
}
catch (Exception ee)
{
if (ee.Message.ToLower() == "ocr running error")
return ee.Message + ". No text found";
else
return " OCR not available. You need to have office installed.";
}
}
我想我需要一个循环,但究竟如何?
提前致谢