如何在我的应用程序中从 COM 检索 MODI 引用?
我收到以下错误:
由于以下错误,检索具有 CLSID {40942A6C-1520-4132-BDF8-BDC1F71F547B} 的组件的 COM 类工厂失败:80040154 类未注册(来自 HRESULT 的异常:0x80040154 (REGDB_E_CLASSNOTREG))。
如何在我的应用程序中从 COM 检索 MODI 引用? 我没有MODI的dll文件。 &我使用了名为 AxInterop.MODI & 的参考文件。互操作MODI 但我无法执行该应用程序。
我需要这个文件来从图像中检索文本。
有人可以帮助我吗? 代码如下:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
//
}
private void btnclick_Click(object sender, EventArgs e)
{
MODI.Document objmodi = new MODI.Document();
objmodi.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH,true,true);
objmodi.Close(false);
MODI.Image img = (MODI.Image)pictureBox1.Image;
MODI.Layout lay = img.Layout;
string text = lay.Text;
txtdata.Text = text;
}
}
txtdata = 文本框 , PictureBox1 = PictureBox 存储图像, & Btnclick = 按钮
I got below error
Retrieving the COM class factory for component with CLSID {40942A6C-1520-4132-BDF8-BDC1F71F547B} failed due to the following error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)).
How can I retrieve MODI reference from COM in my application ?
I have no dll file of MODI.
& I have used the reference file called AxInterop.MODI & Interop.MODI
But I am not able to execute the application.
I need this file to retrieve text from images.
Anyone can help me?
code below:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
//
}
private void btnclick_Click(object sender, EventArgs e)
{
MODI.Document objmodi = new MODI.Document();
objmodi.OCR(MODI.MiLANGUAGES.miLANG_ENGLISH,true,true);
objmodi.Close(false);
MODI.Image img = (MODI.Image)pictureBox1.Image;
MODI.Layout lay = img.Layout;
string text = lay.Text;
txtdata.Text = text;
}
}
txtdata = Text Box , PictureBox1 = PictureBox to store image, & Btnclick = Button
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论