网络图片获取

Posted 七月的尾巴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网络图片获取相关的知识,希望对你有一定的参考价值。

import appuifw,e32,httplib

Conn=httplib.HTTPConnection("10.0.0.172", 80)
Conn.putrequest("GET",图片地址)
Conn.putheader(‘Accept‘, ‘*/*‘)
Conn.endheaders()
gif = Conn.getresponse().read()
gi=open("e:\\henryczq\\yzm.gif","w")
gi.write(gif)
gi.close()
img=Image.open("e:\\henryczq\\yzm.gif")
def handle_redraw(rect):
  canvas.blit(img)
canvas=appuifw.Canvas(redraw_callback=handle_redraw)
appuifw.app.body=canvas
appuifw.app.screen="normal"

e32.ao_sleep(5)

  

以上是关于网络图片获取的主要内容,如果未能解决你的问题,请参考以下文章

Android 使用两个不同的代码片段获取当前位置 NULL

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段

根据图片的url地址下载图片到本地保存代码片段

小程序各种功能代码片段整理---持续更新

VSCode自定义代码片段14——Vue的axios网络请求封装

VSCode自定义代码片段14——Vue的axios网络请求封装