我想在 C# 中创建一个网页,其中用户上传图像并在同一网页的另一个文本框中获取图像文本。我为此使用了 Tessract 教程,但它适用于 Windows 窗体应用程序,但我想在网页上使用它。我已按照此链接的说明进行操作...
http://automatedrevolution.com/blog/?p=34
我在我的网页中使用了代码,但本地服务器在特定行停止。我的代码在这里: -
System.Drawing.Bitmap imageX = new System.Drawing.Bitmap(FileUpload1.PostedFile.InputStream);
System.Drawing.Bitmap image = AForge.Imaging.Image.Clone(imageX, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
tessnet2.Tesseract ocr = new tessnet2.Tesseract();
ocr.Init(null, "eng", false);
List<tessnet2.Word> result = ocr.DoOCR(image, Rectangle.Empty);
foreach (tessnet2.Word word in result)
{
TextBox1.Text = TextBox1.Text + word.Text + Environment.NewLine;
}
我的代码停在第 4 行。谁能告诉我是什么问题。我将 tessdata 文件夹粘贴到 Bin 目录中。