使用winsock发送位图

发布于 2024-07-10 03:59:15 字数 70 浏览 9 评论 0原文

如何通过 winsock 发送位图而不将其保存到文件然后发送? 如果您知道如何在收到数据后将数据转换回位图,这也会很有帮助。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野の 2024-07-17 03:59:15

您使用什么编程语言?

基本上,您必须将位图数据存储到某种字节缓冲区中,然后通过线路发送字节,并从另一端的字节缓冲区中读回位图。

因此,有四个任务:

  • 将位图保存到缓冲区 使用套接字
  • 通过线路写入数据 使用套接字
  • 从线路读取数据
  • 从缓冲区加载位图

您具体不清楚哪些任务?

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:

  • Save bitmap to buffer
  • Write data across wire using a socket
  • Read data from wire using a socket
  • Load a bitmap from a buffer

Which tasks in particular are you not clear about?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文