<input type="file" name="p_w_picpath">
4.后台代码
reqfile= request.FILES['p_w_picpath']
p_w_picpath =Image.open(reqfile)
p_w_picpath.thumbnail((520,520),Image.ANTIALIAS) //保存大小
p_w_picpath.save("D:\\data\\admin\\static\\p_w_picpaths\\login.jpeg","jpeg")#所有的文件都是以login.jpeg保存