Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我如何从 URL 下载图片并将其显示在我的 wxPython 上?
谢谢
使用wx.Image并使用诸如LoadStream或LoadMimeStream 之类的方法从输入流或类似文件的对象加载图像数据。
要获取图像数据本身,请使用urllib2或requests。