C#實(shí)現(xiàn)手機(jī)拍照并且保存水印照片
圖像采集需要調(diào)用攝像頭就行拍照操作,網(wǎng)上查了一下資料,需要引用以下3個(gè)dll。
看一下運(yùn)行界面
界面都比較low,主要是功能實(shí)現(xiàn)。
private void Camera_Load(object sender, EventArgs e) { this.btnSave.Enabled = false; try { borderSize = GetBorderSize(this); captionHeight = GetCaptionHeight(this); //InitStudent("", "", ""); this.comboBox_SizeMode.Text = "填充(保持比例)"; FilterInfoCollection infos = new FilterInfoCollection(FilterCategory.VideoInputDevice); if ((infos != null) && (infos.Count > 0)) { } else { MessageBox.Show("沒有視頻設(shè)備"); } this.LoadVedio(); this.splitContainer1.Panel2MinSize = 280; this.splitContainer1.SplitterDistance = this.splitContainer1.Width - this.splitContainer1.Panel2MinSize + 1; mf = new BorderForm(); mf.Show(this); //mf.Left = (this.Left + this.splitContainer1.Panel1.Width - mf.Width) / 2; //mf.Top = (this.Top + this.splitContainer1.Panel1.Height - mf.Height) / 2; //marLeft = mf.Left - this.Left; //marTop = mf.Top - this.Top; Rectangle rtPic = this.pictureBox_Camera.RectangleToScreen(this.pictureBox_Camera.ClientRectangle); Rectangle rtMF = this.mf.RectangleToScreen(this.mf.ClientRectangle); if (rtPic == null || rtMF == null || rtPic.Width == 0 || rtMF.Width == 0) { return; } mf.Left = ((rtMF.Width + rtMF.Left) + (rtPic.Width + rtPic.Left)) / 2; mf.Top = ((rtMF.Height + rtMF.Top) + (rtPic.Height + rtPic.Top)) / 2; mf.SizeChanged += new EventHandler(mf_SizeChanged); mf.LocationChanged += new EventHandler(mf_LocationChanged); pictureBox_Camera_SizeChanged(sender, e); //啟動(dòng)連拍 //this.ShootOneTime = 0; this.timer1.Start(); } catch (Exception ex) { MessageBox.Show(ex.Message, "錯(cuò)誤", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
//加載攝像頭設(shè)備 private void LoadVedio() { FilterInfoCollection infos = new FilterInfoCollection(FilterCategory.VideoInputDevice); if ((infos != null) && (infos.Count > 0)) { int index = 0; foreach (FilterInfo info in infos) { this.cmbCaptureDevice.Items.Add(new DeviceInfo(info.Name, info.MonikerString, index, FilterCategory.VideoInputDevice)); index++; } this.cmbCaptureDevice.SelectedIndex = 0; } }
/// <summary> /// 拍照 /// </summary> private void Shoot() { try { if (this.pictureBox_Camera.Image != null && (int)this.numericUpDown1.Value > 0 && (int)this.numericUpDown2.Value > 0) { Bitmap resultImage = new Bitmap((int)this.numericUpDown1.Value, (int)this.numericUpDown2.Value); Graphics g = Graphics.FromImage(resultImage); g.CopyFromScreen(new Point(this.mf.Location.X + 1, this.mf.Location.Y + 1), new Point(6, 6 + (isWin7 ? 2 : 0)), new Size(resultImage.Size.Width, resultImage.Size.Height - (6 + (isWin7 ? 2 : 0)))); if (!string.IsNullOrEmpty(XH)) { string str = ""; if (this.XH != "") { str = this.XH; } else if (this.SFZH != "") { str = this.SFZH; } else if (this.KSH != "") { str = this.KSH; } if (this.checkBox2.Checked) { str = XM + " " + str; } int txtWidth = (int)(g.MeasureString(str, new Font("宋體", 9)).Width * 1.1); Rectangle rec = new Rectangle((resultImage.Width - txtWidth) / 2, resultImage.Height - 16, txtWidth, 15); g.FillRectangle(Brushes.White, rec); StringFormat sf = new StringFormat(); sf.LineAlignment = StringAlignment.Center; sf.Alignment = StringAlignment.Center; rec.Height++; g.DrawString(str, new Font("宋體", 9), Brushes.Black, rec, sf); } this.pictureBox_tx.Image = resultImage; } else { this.pictureBox_tx.Image = null; } } catch (Exception ex) { MessageBox.Show(ex.Message, "", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
//選擇攝像裝置 private void cmbCaptureDevice_SelectedIndexChanged(object sender, EventArgs e) { if (this.cmbCaptureDevice.SelectedItem != null) { this.cmbDeviceCapability.Items.Clear(); VideoCaptureDevice device = new VideoCaptureDevice(((DeviceInfo)this.cmbCaptureDevice.SelectedItem).MonikerString); for (int i = 0; i < device.VideoCapabilities.Length; i++) { VideoCapabilities capabilities = device.VideoCapabilities[i]; DeviceCapabilityInfo item = new DeviceCapabilityInfo(capabilities.FrameSize); this.cmbDeviceCapability.Items.Add(item); } DeviceInfo selectedItem = (DeviceInfo)this.cmbCaptureDevice.SelectedItem; if (this.captureAForge != null) { this.captureAForge.NewFrame -= new NewFrameEventHandler(this.captureAForge_NewFrame); //this.captureAForge.SnapshotFrame -= new NewFrameEventHandler(this.captureAForge_SnapshotFrame); if (this.captureAForge.IsRunning) { this.captureAForge.SignalToStop(); } this.captureAForge.WaitForStop(); this.captureAForge = null; } this.captureAForge = new VideoCaptureDevice(selectedItem.MonikerString); this.captureAForge.ProvideSnapshots = true; this.captureAForge.NewFrame += new NewFrameEventHandler(this.captureAForge_NewFrame); //this.captureAForge.SnapshotFrame += new NewFrameEventHandler(this.captureAForge_SnapshotFrame); if (this.cmbDeviceCapability.Items.Count > 0) { this.cmbDeviceCapability.SelectedIndex = 0; } } }
//選擇分辨率 private void cmbDeviceCapability_SelectedIndexChanged(object sender, EventArgs e) { string[] strArray = this.cmbDeviceCapability.Text.Trim().Split(new char[] { 'x' }); int width = int.Parse(strArray[0]); int height = int.Parse(strArray[1]); if (this.captureAForge != null) { if (this.captureAForge.IsRunning) { this.captureAForge.SignalToStop(); } this.captureAForge.WaitForStop(); this.captureAForge.DesiredFrameSize = new Size(width, height); this.captureAForge.DesiredSnapshotSize = new Size(width, height); //this.captureAForge.DesiredFrameRate = 1000; this.captureAForge.Start(); } }
//設(shè)置數(shù)據(jù)源大小 private void comboBox_SizeMode_SelectedIndexChanged(object sender, EventArgs e) { switch (this.comboBox_SizeMode.Text) { case "默認(rèn)(原始大小)": this.pictureBox_Camera.SizeMode = PictureBoxSizeMode.Normal; break; case "居中(原始大小)": this.pictureBox_Camera.SizeMode = PictureBoxSizeMode.CenterImage; break; case "填充(拉伸圖像)": this.pictureBox_Camera.SizeMode = PictureBoxSizeMode.StretchImage; break; case "填充(保持比例)": this.pictureBox_Camera.SizeMode = PictureBoxSizeMode.Zoom; break; } }
//保存照片 private void buttonSave_Click(object sender, EventArgs e) { try { string filename = Path.Combine(Application.StartupPath, "StuImages", "Newstuimages", this.XH + ".JPG"); if (!this.checkBox1.Checked && File.Exists(filename)) { if (MessageBox.Show("該生已經(jīng)有照片文件,是否覆蓋? ", "", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning) == DialogResult.OK) { //存儲(chǔ)到本地 this.pictureBox_tx.Image.Save(filename); //OnDataChanged(this, new DataEventArgs(string.Format("頭像采集(覆蓋),學(xué)號(hào):{0},姓名:{1},考生號(hào):{2},身份證號(hào):{3}", this.XH, this.XM, this.KSH, this.SFZH))); this.txtKSH.Focus(); this.txtKSH.SelectAll(); } else { return; } } else { this.pictureBox_tx.Image.Save(filename); //OnDataChanged(this, new DataEventArgs(string.Format("頭像采集,學(xué)號(hào):{0},姓名:{1},考生號(hào):{2},身份證號(hào):{3}", this.XH, this.XM, this.KSH, this.SFZH))); this.txtKSH.Focus(); this.txtKSH.SelectAll(); } this.timer1.Start(); } catch { } finally { //啟用下面一行,點(diǎn)擊保存后頭像會(huì)立即啟動(dòng)刷新 //this.timer1.Start(); this.btnSave.Enabled = false; } }
保存照片可以選擇自動(dòng)覆蓋同名照片或者在照片中加入水印效果。
操作時(shí)候可以自行拖動(dòng)長(zhǎng)方形的框進(jìn)行選擇拍照
以上所述是小編給大家介紹的C#實(shí)現(xiàn)手機(jī)拍照并且保存水印照片,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)我們網(wǎng)站的支持!
欄 目:C#教程
本文標(biāo)題:C#實(shí)現(xiàn)手機(jī)拍照并且保存水印照片
本文地址:http://mengdiqiu.com.cn/a1/C_jiaocheng/6187.html
您可能感興趣的文章
- 01-10C#實(shí)現(xiàn)txt定位指定行完整實(shí)例
- 01-10WinForm實(shí)現(xiàn)仿視頻 器左下角滾動(dòng)新聞效果的方法
- 01-10C#實(shí)現(xiàn)清空回收站的方法
- 01-10C#實(shí)現(xiàn)讀取注冊(cè)表監(jiān)控當(dāng)前操作系統(tǒng)已安裝軟件變化的方法
- 01-10C#實(shí)現(xiàn)多線程下載文件的方法
- 01-10C#實(shí)現(xiàn)Winform中打開網(wǎng)頁(yè)頁(yè)面的方法
- 01-10C#實(shí)現(xiàn)遠(yuǎn)程關(guān)閉計(jì)算機(jī)或重啟計(jì)算機(jī)的方法
- 01-10C#自定義簽名章實(shí)現(xiàn)方法
- 01-10C#文件斷點(diǎn)續(xù)傳實(shí)現(xiàn)方法
- 01-10winform實(shí)現(xiàn)創(chuàng)建最前端窗體的方法


閱讀排行
- 1C語(yǔ)言 while語(yǔ)句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹的示例代碼(圣誕
- 3利用C語(yǔ)言實(shí)現(xiàn)“百馬百擔(dān)”問題方法
- 4C語(yǔ)言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語(yǔ)言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語(yǔ)言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語(yǔ)言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 01-10C#通過反射獲取當(dāng)前工程中所有窗體并
- 01-10關(guān)于ASP網(wǎng)頁(yè)無法打開的解決方案
- 01-10WinForm限制窗體不能移到屏幕外的方法
- 01-10WinForm繪制圓角的方法
- 01-10C#實(shí)現(xiàn)txt定位指定行完整實(shí)例
- 01-10WinForm實(shí)現(xiàn)仿視頻 器左下角滾動(dòng)新
- 01-10C#停止線程的方法
- 01-10C#實(shí)現(xiàn)清空回收站的方法
- 01-10C#通過重寫Panel改變邊框顏色與寬度的
- 01-10C#實(shí)現(xiàn)讀取注冊(cè)表監(jiān)控當(dāng)前操作系統(tǒng)已
隨機(jī)閱讀
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?
- 01-10使用C語(yǔ)言求解撲克牌的順子及n個(gè)骰子
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改
- 01-10delphi制作wav文件的方法
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什
- 01-10C#中split用法實(shí)例總結(jié)
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 04-02jquery與jsp,用jquery
- 01-11ajax實(shí)現(xiàn)頁(yè)面的局部加載