Если вы хотите отправить изображение в виде файла,
здесь псевдокод для отправки через TCP-соединение.
Клиент A
Set up a connection
Open a file in binary mode
Loop:
read/load N bytes in a buffer
send(buffer)
Close file
Close connection
Клиент B
Listen and accept a connection
Create a new file in binary mode
Loop:
n = read(buffer)
write n bytes in the file
Close file
Close connection