如何在我的应用程序中从 COM 检索 MODI 引用?

发布于 2025-01-05 20:08:34 字数 984 浏览 2 评论 0原文

我收到以下错误:

由于以下错误,检索具有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文