31 lines
723 B
Python
31 lines
723 B
Python
import socket
|
|
import pygame
|
|
import sys
|
|
|
|
host = "192.168.1.136"
|
|
port = 5802
|
|
screen = pygame.display.set_mode((640,480),0)
|
|
|
|
|
|
while True:
|
|
clientsocket=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
clientsocket.connect((host, port))
|
|
received = []
|
|
while True:
|
|
recvd_data = clientsocket.recv(230400)
|
|
if not recvd_data:
|
|
break
|
|
else:
|
|
received.append(recvd_data)
|
|
|
|
dataset = ''.join(received)
|
|
print(len(dataset))
|
|
image = pygame.image.fromstring(dataset,(640,480),"RGB")
|
|
screen.blit(image,(0,0))
|
|
pygame.display.update()
|
|
|
|
for event in pygame.event.get():
|
|
if event.type == pygame.QUIT:
|
|
pygame.quit()
|
|
sys.exit()
|