About 181,000 results
Open links in new tab
  1. Send image using socket programming Python - Stack Overflow

    Jan 25, 2012 · I am trying to send an image file using socket programming in python. I am able to send a text file.

  2. GitHub - mostafiz76/Socket-programming-with-python-send …

    Sending msg and image data between machines via sockets. Recently I was working with socket programming and I was amazed to learn how we can communicate between 2 machines placed remotely. With sockets, not only communicating we can send/receive any kind of data including images. So I thought of sharing this knowledge with you all.

  3. Sending Images Using Sockets In Real Time - GitHub Pages

    Jan 17, 2018 · imageBuf = (unsigned char *) realloc(imageBuf, buf.size()); memcpy(imageBuf, &buf[0], buf.size()); // size of imageBuf is buf.size();

  4. How to Send Images Over Sockets in Java? - CodingTechRoom

    Sending images over sockets in Java involves converting the image file into a byte stream and transmitting it from a client to a server. This process can be accomplished using Java's built-in networking capabilities and I/O streams.

  5. How to send images through sockets in java? - Stack Overflow

    How can i send an image through socket and display it by an http, such as : http://localhost:13085/image. You can find a (non-compiling) example at easywayprogramming. I have simplified it and fixed the errors, I hope that this is a useful answer to your question. Run the server first, then run the client as often as you want.

  6. Networking and Socket Programming - Department of …

    In this lecture, we will discuss the socket API and support for network communications between Internet hosts. Socket programming is the key API for programming distributed applications on the Internet. If you are interested in getting deeper into networking, take CS60: Computer Networks.

  7. Socket-Programming-with-C/send_an_image_client.c at master

    Stages for Client Socket connection: Exactly same as that of server’s socket creation Connect: int connect (int sockfd, const struct sockaddr *addr, socklen_t addrlen); The connect () system call connects the socket referred to by the file descriptor sockfd to the address specified by addr. Server’s address and port is specified in addr.

  8. Image File Transfer using Socket Programming - jimsindia.org

    In this paper we will discuss different types of sockets, how these different types of sockets can be implemented, some common examples, as well as the steps necessary in creating a client-server model of sockets to transfer images between two computers in the same wireless network, and transfer an image locally on one computer.

  9. Socket in Computer Network - GeeksforGeeks

    May 14, 2025 · A socket is one endpoint of a two way communication link between two programs running on the network. The socket mechanism provides a means of inter-process communication (IPC) by establishing named contact points between which the communication take place.

  10. Socket Programming Send and receive images - C++ Users

    Jan 25, 2016 · This codes below is for server c++ and client python. I am sending an image form client to server and server. When I send an image for server I found an image with 0 bytes. also, server gave this error ERROR reading from socket: Undefined error: 0. Please Help me out. bind server socket (serverSock) to server address (serverAddr).

  11. Some results have been removed
Refresh