如何在互联网上实现服务器与客户端的实时图像传输

发布于 2024-12-10 05:06:51 字数 79 浏览 0 评论 0原文

我是编程新手,对 C# 有一点了解。我想使用 C# 服务器客户端应用程序在互联网上进行实时图像传输。我该怎么做,我需要你的建议。非常感谢你的帮助

I am new in the programming and I have a little knowledge C#. I want to real-time image transfer with C# server-client application on the internet. how do I make it, I need your advise. very thanks for your help

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

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

发布评论

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

评论(1

贪了杯 2024-12-17 05:06:51

根据您基于平台的应用程序,您的答案会发生变化。

1-如果您正在编写一个基于 Windows 的应用程序,想要从数据源检索图像:

这很简单。使用间隔为 10ms 的计时器控件。然后在其滴答事件上检查远程数据上的新图像源。(请详细了解您的数据源。它是一个 SQL Server 数据库,您将图像作为表中的一列存储在其中,还是存储在您想要从中下载图像的主机上的目录中)

2-如果您正在编程一个想要拥有的网站一个页面可以为您做到这一点:
您必须设置一个 javascript 计时器并更改 img 元素的 src 并显示给您的联系人(记住,您可以使用 ajax 来做到这一点,您也可以回发您的页面),

但为了获得有用的建议,我需要更多详细信息。

depend on your application based-on platform, your answer change.

1- If your are programming a windows based-on application that want to retrieve images from a data source:

It is simple.use a timer control with interval 10ms.and then on it`s tick event check fro new images on the remote data source.(please more about your data source.is it a sql server database that you store your images on it as a column in a table, or in a directory on a host that you wan to download images from it)

2- If you are programming a website that want to have a page to do that for you :
you must set a javascript timer and change a src of a img element and show to your contacts(remember,you can do that with ajax ot you can postback your page too)

but for helpful advise i need more details.

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