我需要我的 asp.net Web 表单(C# 代码隐藏)来查找连接的相机(电话或计算机),然后将数据流式传输到 Bitmap 构造函数。
Bitmap myBitmap = new Bitmap(Stream streamFromCam);
// Will then process this stream looking for a QR Code using the .NET Barcode
// scanner .dll I've integrated into my project. This part I can do.
这是可以实现的吗?
如果是这样,怎么做?