How could you send a bitmap over winsock without saving it to a file then sending that? It would also be helpful if you knew how to convert the data after being recieved back into a bitmap.
|
|
What programming language are you using? Basically, you've got to store the bitmap data into some kind of byte buffer, then send the bytes over the wire, and read the bitmap back out of the byte buffer at the other end. As such, there are four tasks:
Which tasks in particular are you not clear about? |
||
|
|
|
|
How would I convert the bitmap though? The send function requires a const char* and I have the bitmap stored in a BITMAP. Also how would I convert back? Thanks for the help, I am new to c++. |
||||
|
|
|
how u do the first point "save bitmap to buffer" |
||
|
|
