是否可以不必在类型文件的输入字段中浏览计算机中的文件,而是从另一个网站获取它?

时间:2015-07-16 23:34:17

标签: php html input

有网站A要我上传个人资料照片。它使用<input type="file">的常用表单。

然后是网站B,我想在网站A的个人资料中找到一张图片。

但我想将网站B上的图片上传到A上,而无需在我的电脑上下载。相反,我想用Tampermonkey(例如)更改网站A上的表格,以便直接从网站B获取图片。

1 个答案:

答案 0 :(得分:0)

试试此代码

from tkinter import * # Tkinter in Python 2

def foo():
    label1.configure(text = "Don't Panic")

window = Tk()
# other (optional) window setup here

label1 = Label(window, text = "")
button = Button(window, text = "I am a button", command = foo)

# pack the label and button and initiate the window's mainloop here

请参阅此处的文档:http://php.net/manual/en/function.imagecreatefromstring.php