首页

C#版 摄像头大头贴 实例下载

c#

2020-8-30

摄像头大头贴 实例 源码

    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        //声明视频类
        AMCap.baseClass.cVideo video;
        private void Form1_Load(object sender, EventArgs e)
        {
            video = new baseClass.cVideo(pictureBox1.Handle, pictureBox1.Width, pictureBox1.Height);
            video.StartWebCam();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            DirectoryInfo di = new DirectoryInfo("c:\\AMCap");
            if (!di.Exists)
            {
                Directory.CreateDirectory("c:\\AMCap");
            }
            string path = "C:\\AMCap\\"   DateTime.Now.Year   DateTime.Now.Month   DateTime.Now.Day   DateTime.Now.Hour   DateTime.Now.Minute   DateTime.Now.Second   ".jpeg";
            if (pictureBox2.Image != null)
            {
                Bitmap bt = new Bitmap(pictureBox2.Image);
                bt.Save(path, System.Drawing.Imaging.ImageFormat.Jpeg);
                bt.Dispose();
            }
            else
            {
                video.GrabImage(pictureBox1.Handle, path);
            }
            tsslPath.Text = "已经保存至:"   path;
        }

        Bitmap bt = null;
        Image ig;
        Graphics g;
        Bitmap btt = null;
        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            try
            {
                if (bt != null)
                    bt.Dispose();
                if (btt != null)
                    btt.Dispose();
                pictureBox2.Image = null;
                int i = comboBox1.SelectedIndex;
                video.GrabImage(pictureBox1.Handle, "C:\\ls.bmp");
                switch (i)
                {
                    case 0:
                        bt = new Bitmap("C:\\ls.bmp");
                        btt = new Bitmap(bt, 320, 240);
                        pictureBox2.Image = (Image)btt;
                        break;
                    case 1:
                        bt = new Bitmap("C:\\ls.bmp");
                        btt = new Bitmap(bt, 320, 240);
                        ig = (Image)Properties.Resources._01;
                        g = Graphics.FromImage(btt);
                        g.DrawImage(ig, 0, 0, 320, 240);
                        pictureBox2.Image = null;
                        pictureBox2.Image = (Image)btt;
                        break;
                    case 2:
                        bt = new Bitmap("C:\\ls.bmp");
                        btt = new Bitmap(bt, 320, 240);
                        ig = (Image)Properties.Resources._02;
                        g = Graphics.FromImage(btt);
                        g.DrawImage(ig, 0, 0, 320, 240);
                        pictureBox2.Image = (Image)btt;
                        break;
                    case 3:
                        bt = new Bitmap("C:\\ls.bmp");
                        btt = new Bitmap(bt, 320, 240);
                        ig = (Image)Properties.Resources._03;
                        g = Graphics.FromImage(btt);
                        g.DrawImage(ig, 0, 0, 320, 240);
                        pictureBox2.Image = (Image)btt;
                        break;
                    case 4:
                        bt = new Bitmap("C:\\ls.bmp");
                        btt = new Bitmap(bt, 320, 240);
                        ig = (Image)Properties.Resources._04;
                        g = Graphics.FromImage(btt);
                        g.DrawImage(ig, 0, 0, 320, 240);
                        pictureBox2.Image = (Image)btt;
                        break;
                    case 5:
                        bt = new Bitmap("C:\\ls.bmp");
                        btt = new Bitmap(bt, 320, 240);
                        ig = (Image)Properties.Resources._05;
                        g = Graphics.FromImage(btt);
                        g.DrawImage(ig, 0, 0, 320, 240);
                        pictureBox2.Image = (Image)btt;
                        break;
                }
            }
            catch
            {
                MessageBox.Show("警告:无法找到摄像头!", "警告", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }

        private void button3_Click(object sender, EventArgs e)
        {
            video.GrabImage(pictureBox1.Handle, "C:\\ls.bmp");
        }

        private void Form1_FormClosed(object sender, FormClosedEventArgs e)
        {
            try
            {
                if (bt != null)
                {
                    bt.Dispose();
                }
                if (btt != null)
                {
                    btt.Dispose();
                }
                FileInfo fi = new FileInfo("C:\\ls.bmp");
                if (fi.Exists)
                {
                    File.Delete("C:\\ls.bmp");
                }
                DirectoryInfo di = new DirectoryInfo("c:\\AMCap");
                if (di.Exists)
                {
                    di.Delete(true);
                }
            }
            catch
            {
                MessageBox.Show("警告:大头贴正在被占用!","警告",MessageBoxButtons.OK,MessageBoxIcon.Error);
            }
        }

    }
资源下载此资源下载价格为2D币(VIP免费),请先
资源文件列表
╔π╧±═╖┤≤═╖╠∙/AMCap.sln , 905
╔π╧±═╖┤≤═╖╠∙/AMCap.suo , 14336
╔π╧±═╖┤≤═╖╠∙/AMCap/01.png , 71557
╔π╧±═╖┤≤═╖╠∙/AMCap/02.png , 25129
╔π╧±═╖┤≤═╖╠∙/AMCap/03.png , 66440
╔π╧±═╖┤≤═╖╠∙/AMCap/04.png , 76227
╔π╧±═╖┤≤═╖╠∙/AMCap/05.png , 129310
╔π╧±═╖┤≤═╖╠∙/AMCap/AMCap.csproj , 4034
╔π╧±═╖┤≤═╖╠∙/AMCap/baseClass.cs , 3790
╔π╧±═╖┤≤═╖╠∙/AMCap/bin/Debug/AMCap.exe , 419328
╔π╧±═╖┤≤═╖╠∙/AMCap/bin/Debug/AMCap.pdb , 34304
╔π╧±═╖┤≤═╖╠∙/AMCap/bin/Debug/AMCap.vshost.exe , 14328
╔π╧±═╖┤≤═╖╠∙/AMCap/bin/Debug/AMCap.vshost.exe.manifest , 490
╔π╧±═╖┤≤═╖╠∙/AMCap/Form1.cs , 5764
╔π╧±═╖┤≤═╖╠∙/AMCap/Form1.Designer.cs , 10526
╔π╧±═╖┤≤═╖╠∙/AMCap/Form1.resx , 6014
╔π╧±═╖┤≤═╖╠∙/AMCap/obj/Debug/AMCap.csproj.FileListAbsolute.txt , 2962
╔π╧±═╖┤≤═╖╠∙/AMCap/obj/Debug/AMCap.csproj.GenerateResource.Cache , 1035
╔π╧±═╖┤≤═╖╠∙/AMCap/obj/Debug/AMCap.exe , 419328
╔π╧±═╖┤≤═╖╠∙/AMCap/obj/Debug/AMCap.Form1.resources , 180
╔π╧±═╖┤≤═╖╠∙/AMCap/obj/Debug/AMCap.pdb , 34304
╔π╧±═╖┤≤═╖╠∙/AMCap/obj/Debug/AMCap.Properties.Resources.resources , 402986
╔π╧±═╖┤≤═╖╠∙/AMCap/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll , 5120
╔π╧±═╖┤≤═╖╠∙/AMCap/Program.cs , 486
╔π╧±═╖┤≤═╖╠∙/AMCap/Properties/AssemblyInfo.cs , 1384
╔π╧±═╖┤≤═╖╠∙/AMCap/Properties/Resources.Designer.cs , 4057
╔π╧±═╖┤≤═╖╠∙/AMCap/Properties/Resources.resx , 7080
╔π╧±═╖┤≤═╖╠∙/AMCap/Properties/Settings.Designer.cs , 1090
╔π╧±═╖┤≤═╖╠∙/AMCap/Properties/Settings.settings , 249
没有账号? 忘记密码?

社交账号快速登录