专业网站建设品牌,十四年专业建站经验,服务6000+客户--广州京杭网络
免费热线:400-683-0016      微信咨询  |  联系我们

C# OCR 识别(基于AspriseOCR.dll)

当前位置:网站建设 > 技术支持
资料来源:网络整理       时间:2023/2/14 1:09:24       共计:3579 浏览

OCR 字符识别,内含破解版识别接口 可用于OCR 以及条码识别


using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.Runtime.InteropServices;


namespace ToText

{

   public partial class Form1 : Form

   {

       public Form1()

       {

           InitializeComponent();

       }


       #region DllImport

       [DllImport("AspriseOCR.dll", EntryPoint = "OCR", CallingConvention = CallingConvention.Cdecl)]

       public static extern IntPtr OCR(string file, int type);


       [DllImport("AspriseOCR.dll", EntryPoint = "OCRpart", CallingConvention = CallingConvention.Cdecl)]

       static extern IntPtr OCRpart(string file, int type, int startX, int startY, int width, int height);


       [DllImport("AspriseOCR.dll", EntryPoint = "OCRBarCodes", CallingConvention = CallingConvention.Cdecl)]

       static extern IntPtr OCRBarCodes(string file, int type);


       [DllImport("AspriseOCR.dll", EntryPoint = "OCRpartBarCodes", CallingConvention = CallingConvention.Cdecl)]

       static extern IntPtr OCRpartBarCodes(string file, int type, int startX, int startY, int width, int height);

       #endregion


       #region 转换按钮事件

       // 转换按钮事件

       private void button2_Click(object sender, EventArgs e)

       {

           int startX = 0;

           int startY = 0;

           int width = -1;

           int height = -1;


           string img_path = txt_imgpath.Text; // 图片路径

           if (String.IsNullOrEmpty(img_path)) // 图片非空验证

           {

               MessageBox.Show("请先选择图片!");

               return;

           }

           try

           {

               Image img = Image.FromFile(img_path);

               width = img.Width;

               height = img.Height;

           }

           catch (Exception ex)

           {

               MessageBox.Show(ex.StackTrace);

           }

           txt_result.Text = Marshal.PtrToStringAnsi(OCRpart(img_path, -1, startX, startY, width, height));

       }

       #endregion


       #region 浏览事件

       // 浏览事件

       private void btn_imgpath_Click(object sender, EventArgs e)

       {

           openFileDialog1.ShowDialog();

           txt_imgpath.Text = openFileDialog1.FileName;

       }

       // 浏览图片

       private void txt_imgpath_Click(object sender, EventArgs e)

       {

           openFileDialog1.ShowDialog();

           txt_imgpath.Text = openFileDialog1.FileName;

       }

       #endregion

     


   }

}


版权说明:
本网站凡注明“广州京杭 原创”的皆为本站原创文章,如需转载请注明出处!
本网转载皆注明出处,遵循行业规范,如发现作品内容版权或其它问题的,请与我们联系处理!
欢迎扫描右侧微信二维码与我们联系。
·上一条:数据库:不允许保存更改数据库表问题的解决 | ·下一条:手把手教你安装和配置pm2,实现自动化部署node项目

Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有    粤ICP备16019765号 

广州京杭网络科技有限公司 版权所有