初学WPF和C#
C#连接扫描仪
- 因为需要得到扫描仪扫描的文件图像,我使用 在C#中使用WIA获取扫描仪数据 这个完成了扫描仪的连接,我用的是爱普生(Epson)的一个扫描仪,安装了它的驱动,最终效果的话,还是会弹出Epson的一个扫描设置界面,但是的话还能接受(主要是我也不太会),也是有优点的,设置界面里面能调图像质量,非常让我兴奋的是,它还能调扫描的区域,省的我再去做截图了。
- 先引入了下面这个
- 代码如下
private void scanner_click(object sender, RoutedEventArgs e)
{
ImageFile imageFile = null;
CommonDialogClass cdc = new WIA.CommonDialogClass();
try
{
imageFile = cdc.ShowAcquireImage(WIA.WiaDeviceType.ScannerDeviceType,
WIA.WiaImageIntent.TextIntent,
WIA.WiaImageBias.MaximizeQuality,
"{00000000-0000-0000-0000-000000000000}",
true,
true,
false);
}
catch (System.Runtime.InteropServices.COMException)
{
imageFile = null;
}
if (imageFile != null) {
imageFile.SaveFile(@"E:\temp_test.bmp");
}
}
- 无法嵌入互操作类型“WIA.CommonDialogClass”问题,引入using WIA库后,发现VS提示"无法嵌入互操作类型“WIA.CommonDialogClass”。请改用适用的接口",需设置一下属性值:
需设置一下属性值选中项目中引入的dll,鼠标右键选择属性,把“嵌入互操作类型”true改为false
C#调用C++的dll
- 这样,然后这个xxx()就能用了,xxx.dll我全放在了项目的 \bin\Debug里面了
[DllImport("xxx.dll", CharSet = CharSet.Auto, CallingConvention = 、CallingConvention.Cdecl, EntryPoint = "xxx")]
public static extern int xxx();
C#截图
- 有一些图像需要自己截图,还好的是,我需要的图像大部分都处在一个固定的位置,看了CSDN上的一个帖子,但我一下子找不见了,截取两个点之间的图像区域
public static Bitmap cutImage(Bitmap bmp)
{
int startX = 1520;
int startY = 1776;
int endX = 1736;
int endY = 2078;//这些数据时我瞎测试的
if (startX == endX || startY == endY)
{
return null; //图片的宽度和高度一定都是大于0的整数
}
if (startX > endX) //一定要保证startX < endX
{
int temp = startX;
startX = endX;
endX = temp;
}
if (startY > endY) //一定要保证startY < endY
{
int temp = startY;
startY = endY;
endY = temp;
}
//获得新图片的宽度和高度
int width = endX - startX;
int height = endY - startY;
//根据截图的宽度和高度新建图片
Bitmap bmp2 = new Bitmap(width, height);
//创建作图区域
Graphics g = Graphics.FromImage(bmp2);
//截取原图相应区域写入作图区
g.DrawImage(bmp, 0, 0, new System.Drawing.Rectangle(startX, startY, width, height), GraphicsUnit.Pixel);
return bmp2;
}