0

我想通过套接字发送图像 Pixbuf,但接收到的图像只有黑白且失真。以下是我正在使用的步骤:

1) 获取该 Pixbuf 的像素数组

2)序列化像素数组

3) 将序列化的字符串转换为 BytesIO

4)通过套接字发送

MyShot = ScreenShot2()
frame = MyShot.GetScreenShot() #this function returns the Pixbuf
a = frame.get_pixels_array()
Sframe = pickle.dumps( a, 1)
b = BytesIO()
b.write(Sframe)
b.seek(0)

在此之后,我必须通过以下方式重建图像:

1) 将接收到的字符串反序列化到其原始像素数组中

2) 从像素数组构建 Pixbuf

3) 保存图像

res = gtk.gdk.pixbuf_new_from_data(pickle.loads(b.getvalue()), frame.get_colorspace(), False, frame.get_bits_per_sample(), frame.get_width(), frame.get_height(), frame.get_rowstride()) #also tried this res = gtk.gdk.pixbuf_new_from_array(pickle.loads(b.read()),gtk.gdk.COLORSPACE_RGB,8)
res.save("result.png","png")
4

1 回答 1

0

如果要Pixbuf通过套接字发送 a,则必须发送所有数据,而不仅仅是像素。该BytesIO对象不是必需的,因为 Numpy 数组有一个tostring()方法。

发送PNG而不是发送原始数据并在接收端将其编码为PNG图像会更容易/更有意义。这里BytesIO实际上需要一个对象来避免临时文件。发送方:

screen = ScreenShot()
image = screen.get_screenshot()
png_file = BytesIO()
image.save_to_callback(png_file.write)
data = png_file.getvalue()

然后data通过套接字发送并在接收端简单地保存它:

with open('result.png', 'wb') as png_file:
    png_file.write(data)
于 2015-10-13T15:23:31.790 回答