博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
可以用来做批量扫描的类
阅读量:6707 次
发布时间:2019-06-25

本文共 658 字,大约阅读时间需要 2 分钟。

这几天帮同事解决一个连接扫描仪的问题,查阅了一下WIA的资料,写了一个类,比较简单,共享出来,方便大家来写扫描的组件。

这个类需要windows的WIA组件支持,具体内容我都放到附加的代码中了。

 

using System;

using System.Collections.Generic;
using System.Text;
using WIA;

namespace Scaner

{
    public class Scanner
    {
        public ImageFile Scan()
        {
            DeviceManager manager = new DeviceManager();
            Device device = null;
            foreach (DeviceInfo info in manager.DeviceInfos)
            {
                if (info.Type != WiaDeviceType.ScannerDeviceType) continue;
                device = info.Connect();
                break;
            }
            Item item = device.Items[1];
            CommonDialog cdc = new WIA.CommonDialog();
            ImageFile imageFile = cdc.ShowTransfer(item,
                "{B96B3CAB-0728-11D3-9D7B-0000F81EF32E}",
                true) as ImageFile;
            return imageFile;
        }
    }
}

转载地址:http://gpilo.baihongyu.com/

你可能感兴趣的文章
linux下IPTABLES配置详解
查看>>
openstack安装(liberty)--环境准备
查看>>
内网邮件服务器映射,防火墙设置
查看>>
我的友情链接
查看>>
Mock.js的使用
查看>>
Linux部署ThinkPHP 验证码不显示
查看>>
bootstrap多个modal模态框同时设置垂直居中的方法
查看>>
设置grub密码
查看>>
mydumper安装笔记
查看>>
secure CRT 串口自动烧录程序
查看>>
vmsata 监控命令详解
查看>>
初学centos
查看>>
combobox 设置下拉列表无效
查看>>
使用commit 命令创建一个带有 ssh 的 ubuntu 镜像(不使用 PAM)
查看>>
解决缓存引发的CSS/JS/IMG问题
查看>>
华为手机年轻化转型初见成效,《梦想的声音》传递了哪些讯号?
查看>>
[C#]在程序中启动另外一个程序
查看>>
支撑双十一的网络引擎:飞天洛神
查看>>
Nacos v0.7.0:对接CMDB,实现基于标签的服务发现能力
查看>>
无线网络多种加密模式比拼
查看>>