Windows Mobile:使用C#的手机摄像头

前端之家收集整理的这篇文章主要介绍了Windows Mobile:使用C#的手机摄像头前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在WinForm中显示手机摄像头拍摄控件的图像.我的想法是我的应用程序像摄像机程序一样工作.我想要显示图像,如果用户要拍照.

我怎样才能做到这一点?我能这样做吗?

如果您需要更多细节请问我.

谢谢!

不太确定你需要什么,但你可以尝试使用Microsoft. WindowsMo​​bile.Forms.CameraCaptureDialog:
string originalFileName;
    using (CameraCaptureDialog dlg = new CameraCaptureDialog()) {
        dlg.Mode = CameraCaptureMode.Still;
        dlg.StillQuality = CameraCaptureStillQuality.Low;
        //dlg.Resolution = new Size(800,600);
        dlg.Title = "Take the picture";
        DialogResult res;
        try {
            res = dlg.ShowDialog();
        }
        catch (Exception ex) {
            Trace.WriteLine(ex);
            return null;
        }

        if (res != DialogResult.OK)
            return null;
        this.Refresh();
        originalFileName = pictureFileName = dlg.FileName;
    }

后来编辑:
你们中的一些人也可能会发现这个链接很有用:
http://community.intermec.com/t5/General-Development-Developer/CN50-MS-Camera-Capture-Dialog-generates-error/m-p/12881#M4083

原文链接:https://www.f2er.com/windows/365348.html

猜你在找的Windows相关文章