private void button4_Click(object sender, EventArgs e)
{
        OCR.recognize("test1.tif");
        System.IO.File.Delete("test1.tif"); // <--- Problem on this line
}

....

public static string recognize(string filepath, MODI.MiLANGUAGES language =
MODI.MiLANGUAGES.miLANG_RUSSIAN)
{
        if (!File.Exists(filepath)) return "error 1: File does not exist";
        MODI.Document doc = new MODI.Document();
        doc.Create(filepath);

        doc.OCR(language, true, true);
        MODI.Image image = (MODI.Image)doc.Images[0];

        string result="";
        foreach (MODI.Word worditems in image.Layout.Words)
        {
            result += worditems.Text + ' ';

        // Processed image is ALWAYS a question
            if (worditems.Text[worditems.Text.Length - 1] == '?') break;
        }


        doc.Close();

        return result;

}

问题是:文件由另一个过程使用。

OCR之后如何删除它?

有帮助吗?

解决方案

有人 发布了一个解决方案 为了这:

public void Dispose()  
{   
        doc.Close(false); 
        System.Runtime.InteropServices.Marshal.FinalReleaseComObject(doc);
        doc = null; 
        GC.Collect();
}

也许它也适用于您的情况。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top