教程集 www.jiaochengji.com
教程集 >  脚本编程  >  Vb.net  >  正文 asp.net C提取图片中字母,汉字,中文程序

asp.net C提取图片中字母,汉字,中文程序

发布时间:2017-12-12   编辑:jiaochengji.com
教程集为您提供asp.net C提取图片中字母,汉字,中文程序等资源,欢迎您收藏本站,我们将为您提供最新的asp.net C提取图片中字母,汉字,中文程序资源
asp.net C提取图片中字母,汉字,中文程序 必须利用组件名称:Microsoft Office Document Imaging 12.0 Type Library

sampleforocr.tiff");
md.ocr(modi.milanguages.milang_english, true, true);

modi.image image = (modi.image)md.images[0];
modi.layout layout = image.layout;

modi.word word;
stringbuilder sb = new stringbuilder();
for (int i = 0; i < layout.words.count;i )
{
 word = (modi.word)layout.words[i];
 sb.append(word.text);
}

</blockquote>


//组件名称:microsoft office document imaging 12.0 type library

您可能感兴趣的文章:
asp.net C提取图片中字母,汉字,中文程序
php获取汉字中首字母(gb2312编码)的实现代码
asp.net 取中文汉字第一个拼音字母的代码
在ASP.NET中存取图片到数据库的示例
php各种编码集 字符集 显示 详解
php中常用的正则表达式规则总结
C# 完美验证码的实例代码
mysql汉字字段按拼音排序的方法
C#与C 数据类型对比基本语法区别
vbs 汉字转拼音的函数(代码)

[关闭]
~ ~