Click here to Skip to main content
15,881,898 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Good Morning Friends,
I am using OCR for reading the image file . I add the MODI as a reference.
C#
public void readimgfile(string filen)
        {          
                doc = new MODI.Document();
                //Initialise and create the document
                //string a = Server.MapPath("~/cropped/" + s);
                //string j = System.IO.Path.Combine(System.Environment.CurrentDirectory, a);

                doc.Create(filen);
                //Process the sacnned image with specified language
                doc.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH, false, false);
                //doc.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH, true, true);
                MODI.Layout layout = ((MODI.Image)doc.Images[0]).Layout;

                string str = String.Empty;
                //Extract the letters and read
                for (int i = 0; i < layout.Words.Count; i++)
                {
                    MODI.Word word = (MODI.Word)layout.Words[i];
                    if (str.Length > 0)
                    {
                        str += " ";
                    }
                    str += word.Text;
                }
                doc.Close(false);
                txt_rename.Text = str;
            }          


in that String filen i am passing the complete path.
Its showing COM IO error..
Posted
Comments
Richard MacCutchan 10-Nov-12 5:51am    
1. Which statement gives the error?
2. What is the text of the error?
3. What is the exact text of the filename?

Please give some useful detail in your question, we cannot guess what is happening.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900