|
Re: Displaying Camera Image in C# Dashboard
That is what it is doing, capture ONE image at a time and displaying it, and netStream is not a .NET Image Stream, it is a network stream, and it reads data from a socket, the only thing remotely related or used for creating the image is data(byte[]) that stores the image data in byte form, MemoryStream ms, which is used to store data and then get the Image form the stream, Image.FromStream(ms); . Like I said before, it also shows that there is data available on the stream, it is just the stupid Image.FromStream() keeps returning an Parameter is Invalid in its exception. I dont know what to do at this point.
|