开发者

windows mobile camera

开发者 https://www.devze.com 2023-01-28 17:28 出处:网络
i want to know how to take photo in windowsmobile through c sharp coding and also i want to save i开发者_开发知识库t to the database. can any one help me for this?Assuming you\'re using Windows Mobile

i want to know how to take photo in windowsmobile through c sharp coding and also i want to save i开发者_开发知识库t to the database. can any one help me for this?


Assuming you're using Windows Mobile 6.5 or earlier, you could use the CameraCaptureDialog class:

CameraCaptureDialog ccd = new CameraCaptureDialog();
ccd.ShowDialog();
Bitmap capturedImage = new Bitmap(ccd.FileName);
0

精彩评论

暂无评论...
验证码 换一张
取 消