所以已经有几天了,我一直在尝试将图像保存到我的网络项目中的文件夹中。
我正在使用ng-flow
,我可以通过POST
请求访问我的 python 服务器
这就是我得到的request.form
:
ImmutableMultiDict([('flowFilename', u'glasgow.jpg'), ('flowTotalChunks', u'1'), ('flowRelativePath', u'glasgow.jpg'), ('flowTotalSize', u'634703'), ('flowCurrentChunkSize', u'634703'), ('flowIdentifier', u'634703-glasgowjpg'), ('flowChunkSize', u'1048576'), ('flowChunkNumber', u'1')])
在我的request.files
:
ImmutableMultiDict([('file', <FileStorage: u'blob' ('application/octet-stream')>)])
这里的主要问题是:
如何获取图像内容?
我正在尝试使用PIL.Image
来保存图像,但到目前为止没有成功,因为我没有设法首先获取图像内容。
谢谢!:)