当前位置: 代码迷 >> C# >> C#调用摄像头只能一次的原因,该如何改,是摄像头bit地图占用的资源没有释放吗
  详细解决方案

C#调用摄像头只能一次的原因,该如何改,是摄像头bit地图占用的资源没有释放吗

热度:38   发布时间:2016-05-05 03:28:51.0
求助C#调用摄像头只能一次的原因,该怎么改,是摄像头bitmap占用的资源没有释放吗
第一次运行能截图,第二次就不行了弹出选择视频设备的界面,求大神速解
代码如下
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Drawing.Imaging;
using System.Drawing;
using System.IO;

namespace vedio3
{
    class Program
    {

        static void Main(string[] args)
        {
            cVideo video = new cVideo(Process.GetCurrentProcess().MainWindowHandle, 379, 316);
            video.StartWebCam();
            video.GrabImage(Process.GetCurrentProcess().MainWindowHandle, @"E:\c#code\vedio3\vedio3\bin\Debug\b.jpg");
            video.CloseWebcam();
        }
    }

    public class VideoAPI  //视频API类
    {
        //  视频API调用
        [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);
        [DllImport("coredll.dll")]
        
        public static extern bool DeleteObject(IntPtr hgdiobj);
        //  常量
        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_PREVIEWRATE = WM_USER + 52;
        public const int WM_CAP_SET_VIDEOFORMAT = WM_USER + 45;
        public const int WM_CAP_START = WM_USER;
        public const int WM_CAP_SAVEDIB = WM_CAP_START + 25;
    }
    public class cVideo     //视频类
    {
        private IntPtr lwndC;       //保存无符号句柄
        private IntPtr mControlPtr; //保存管理指示器
        private int mWidth;
        private int mHeight;
        public cVideo(IntPtr handle, int width, int height)
        {
            mControlPtr = handle; //显示视频控件的句柄
            mWidth = width;      //视频宽度
            mHeight = height;    //视频高度
        }
        /// <summary>
        /// 打开视频设备
        /// </summary>
        public void StartWebCam()
        {
            byte[] lpszName = new byte[100];
            byte[] lpszVer = new byte[100];
            VideoAPI.capGetDriverDescriptionA(0, lpszName, 100, lpszVer, 100);
            this.lwndC = VideoAPI.capCreateCaptureWindowA(lpszName, VideoAPI.WS_CHILD | VideoAPI.WS_VISIBLE, 0, 0, mWidth, mHeight, mControlPtr, 0);
            if (VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_DRIVER_CONNECT, 0, 0))
            {
                VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_SET_PREVIEWRATE, 100, 0);
                VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_SET_PREVIEW, true, 0);
            }
        }
        /// <summary>
        /// 关闭视频设备
        /// </summary>
        public void CloseWebcam()
        {
            VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_DRIVER_DISCONNECT, 0, 0);
            VideoAPI.DeleteObject(lwndC);
        }
        ///   <summary>   
        ///   拍照
        ///   </summary>   
        ///   <param   name="path">要保存jpeg文件的路径</param>   
        public void GrabImage(IntPtr hWndC, string path)
        {
            IntPtr hBmp = Marshal.StringToHGlobalAnsi(path);

            VideoAPI.SendMessage(lwndC, VideoAPI.WM_CAP_SAVEDIB, 0, hBmp.ToInt32());

            Bitmap image = new Bitmap(path);
            
            if (path.Contains("bmp"))
            {
                image.Save(path.Replace("bmp", "jpg"), ImageFormat.Jpeg);
                image.Dispose();
                
                if (System.IO.File.Exists(path))
                {
                    try
                    {
                        System.IO.File.Delete(path);
                    }
                    catch (System.IO.IOException e)
                    {
                        return;
                    }
                }
                else
                {
                    image.Save(path, ImageFormat.Jpeg);
                    image.Dispose();
                }

            }



        }
    }

}

------解决思路----------------------
第二次是代码抛出异常,还是怎么着?
------解决思路----------------------
楼主是在哪个系统上的,需要把 DeleteObject 换下这个:
[DllImport("kernel32.dll")]
public static extern bool CloseHandle(IntPtr hWnd);

------解决思路----------------------
引用:
Quote: 引用:

楼主是在哪个系统上的,需要把 DeleteObject 换下这个:
[DllImport("kernel32.dll")]
public static extern bool CloseHandle(IntPtr hWnd);


这个是下午调试时看别人加上去的,基本没有效果,WIN7 64位系统

关闭的时候closehandle就能多次打开了。
------解决思路----------------------
读取图片的时候这样防止图片文件被锁定
string pcfile = "xxxx.jpg";
FileStream pFileStream = new FileStream(pcfile, FileMode.Open, FileAccess.Read);
System.Drawing.Image img = Image.FromStream(pFileStream);
pFileStream.Close();

------解决思路----------------------
是不是因为你文件同名的原因?
你将文件名改成按时间命名呢
  相关解决方案