CoreSupport
asked on
Stream Contents of a Picture Box Over TCP
Hi
I trying to stream the contents of a picturebox over the network to another machine to be displayed. The picture box to be streamed is displaying image content in real time from a biometric device.
My first thought was to continually load the picturebox contents into a stream and send the stream to the other machine, where it can then convert that stream back to image data and display it. Does this sound feasible for what im trying to do? Would the overheads in loading the content into a stream continually be to much?
Any help/advice regarding this is appreciated.
Regards
I trying to stream the contents of a picturebox over the network to another machine to be displayed. The picture box to be streamed is displaying image content in real time from a biometric device.
My first thought was to continually load the picturebox contents into a stream and send the stream to the other machine, where it can then convert that stream back to image data and display it. Does this sound feasible for what im trying to do? Would the overheads in loading the content into a stream continually be to much?
Any help/advice regarding this is appreciated.
Regards
Have you looked into the NetworkStream class? Might be the way to go.
http://msdn.microsoft.com/en-us/library/system.net.sockets.networkstream.aspx
Examples:
http://www.switchonthecode.com/tutorials/csharp-tutorial-simple-threaded-tcp-server
http://www.codeproject.com/KB/IP/RCSStream.aspx
DaTribe
http://msdn.microsoft.com/en-us/library/system.net.sockets.networkstream.aspx
Examples:
http://www.switchonthecode.com/tutorials/csharp-tutorial-simple-threaded-tcp-server
http://www.codeproject.com/KB/IP/RCSStream.aspx
DaTribe
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
Postponed
You might want to look at PipeStream, this might form part of a solution for reading from an uncompleted stream.