在labview中显示来自URL的jpeg
我需要制作一个labview VI来显示来自URL的jpeg图像。 (url是根据一些数据生成的)
我找到了一种从硬盘驱动器显示图像的方法(读取JPEG文件),所以我可能需要的只是一种将其下载到临时文件的方法。
我发现的只是一些低级 TCP 客户端 VI。 有更容易的方法吗? 如果没有,我可以打开浏览器窗口,但我宁愿不这样做。
I need to make a labview VI that will display a jpeg image from a URL. (the url is generated based on some data)
I've found a way to display an image from the hard drive (Read JPEG File), so what I probably need is just a way to download it to a temporary file.
All I've found are some low level TCP client VI's. Is there an easier way? If there isn't I can just open a browser window, but I'd rather not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 这篇 LAVA 帖子,标题为使用 Datasocket 从 Web 服务器下载图像。
唯一的缺点是它不是跨平台的,它只能在Windows上运行,在Linux上我见过这段杀死LabVIEW的代码。
OpenG Internet Connectivity 工具包 具有跨平台的代码。
吨
Have a look at this LAVA post, titled Downloading an image from a Web server using Datasocket.
The only disadvantage is that it is not cross-platform, it will only work on Windows, on Linux I have seen this code killing LabVIEW.
The OpenG Internet Connectivity toolkit has code that is cross-platform.
Ton