Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can also try packet streaming of image data using client-server model using socket programming. For this save your image to hard-disc then you can read image data packet by packet using file operator fread in C/C++. Send each packet to the server where you can save your image using fwrite with the same extension as you read. I refered this site for implementing the client and server.

Hope this is helpful.