我使用 .net framework 2.0 编写了 ac# 程序通过网络摄像头拍照。我尝试使用 avicap32.dll 来调用网络摄像头。
问题是我只能调用我的网络摄像头一次,如果我断开网络摄像头并通过一些按钮重新启动它,那么图片框将显示一张黑色照片并且无法再次调用网络摄像头。如果我再次重新启动程序,它将在图片框中保持黑色。仅当我重新启动计算机时。WTF 任何人都可以解决这个问题?
我把源代码放在下面。试图弄清楚发生了什么。另一个问题是图片框中的照片也无法设置图像的中心。
这是form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Threading;
namespace AutoCam
{
public partial class form1 : Form
{
public form1()
{
InitializeComponent();
}
Camera camera;
#region InitializeComponent
#region btn_openCamera #endregion
private void button1_Click(object sender, EventArgs e)
{
this.btn_openCamera.Enabled = false;
this.btn_closeCam.Enabled = true;
this.btn_cameraPic.Enabled = true;
camera = new Camera(this.pic_camera.Handle, this.pic_camera.Width, this.pic_camera.Height);
camera.StartWebCam();
}
#endregion
#region btn_closeCam_Click
private void btn_closeCam_Click(object sender, EventArgs e)
{
this.btn_openCamera.Enabled = true;
this.btn_closeCam.Enabled = false;
this.btn_cameraPic.Enabled = false;
camera.CloseWebcam();
}
#endregion
#region btn_cameraPic_Click
private void btn_cameraPic_Click(object sender, EventArgs e)
{
camera.GrabImage(this.pic_camera.Handle, "guying.bmp");
}
#endregion
private void quit_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
这是camera.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Runtime.InteropServices;
using System.IO;
using System.Windows;
namespace AutoCam
{
class Camera
{
private IntPtr lwndC;
private IntPtr mControlPtr;
private int mWidth;
private int mHeight;
public Camera(IntPtr handel, int width, int height)
{
mControlPtr = handel; //handle of video dom
mWidth = width; //video width
mHeight = height; //video height
}
public void StartWebCam()
{
byte[] lpszName = new byte[100];
byte[] lpszVer = new byte[100];
CameraAPI.capGetDriverDescriptionA(0, lpszName,100, lpszVer, 0);
this.lwndC = CameraAPI.capCreateCaptureWindowA(lpszName, CameraAPI.WS_CHILD | CameraAPI.WS_VISIBLE, 0, 0, mWidth, mHeight, mControlPtr, 0);
if (CameraAPI.SendMessage(lwndC, CameraAPI.WM_CAP_DRIVER_CONNECT, 0, 0))
{
CameraAPI.SendMessage(lwndC, CameraAPI.WM_CAP_SET_PREVIEWRATE, 100, 0);
CameraAPI.SendMessage(lwndC, CameraAPI.WM_CAP_SET_PREVIEW, true, 0);
}
}
public void CloseWebcam()
{
CameraAPI.SendMessage(lwndC, CameraAPI.WM_CAP_DRIVER_DISCONNECT, 0, 0);
}
public void GrabImage(IntPtr hWndC, string path)
{
IntPtr hBmp = Marshal.StringToHGlobalAnsi(path);
CameraAPI.SendMessage(lwndC, CameraAPI.WM_CAP_SAVEDIB, 0, hBmp.ToInt32());
}
}
}
这是cameraAPI.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Threading;
namespace AutoCam
{
class CameraAPI
{
[DllImport("avicap32.dll")]
public static extern IntPtr capCreateCaptureWindowA(byte[] lpszWindowName, int dwStyle, int x, int y, int nWidth, int nHeight, IntPtr hWndParent, int nID);
[DllImport("avicap32.dll")]
public static extern bool capGetDriverDescriptionA(short wDriver, byte[] lpszName, int cbName, byte[] lpszVer, int cbVer);
[DllImport("User32.dll")]
public static extern bool SendMessage(IntPtr hWnd, int wMsg, bool wParam, int lParam);
[DllImport("User32.dll")]
public static extern bool SendMessage(IntPtr hWnd, int wMsg, short wParam, int lParam);
public const int WM_USER = 0x400;
public const int WS_CHILD = 0x40000000;
public const int WS_VISIBLE = 0x10000000;
public const int SWP_NOMOVE = 0x2;
public const int SWP_NOZORDER = 0x4;
public const int WM_CAP_DRIVER_CONNECT = WM_USER + 10;
public const int WM_CAP_DRIVER_DISCONNECT = WM_USER +11;
public const int WM_CAP_SET_CALLBACK_FRAME = WM_USER +5;
public const int WM_CAP_SET_PREVIEW = WM_USER+50;
public const int WM_CAP_SET_PREVIEWFORMAT = WM_USER + 45;
public const int WM_CAP_SET_PREVIEWRATE = WM_USER + 52;
public const int WM_CAP_START = WM_USER;
public const int WM_CAP_SAVEDIB = WM_CAP_START + 25;
}
}