情况如下:
我使用 PIL 处理图像,然后将其保存到 StringIO 对象。现在,我想通过海报发布 StringIO 对象。但是,我无法在 request.FILES 字典中获取图像。我用谷歌搜索了几个小时,我发现了这个问题, python : post data within stringIO through poster? 我试过但不工作。
所以,我阅读了海报源代码,发现它试图获取类文件对象参数的“名称”属性,但似乎 StringIO 对象没有“名称”属性,所以,文件名和文件类型是没有任何
if hasattr(value, 'read'):
# Looks like a file object
filename = getattr(value, 'name', None)
if filename is not None:
filetype = mimetypes.guess_type(filename)[0]
else:
filetype = None
retval.append(cls(name=name, filename=filename,
filetype=filetype, fileobj=value))
else:
retval.append(cls(name, value))
所以,我指定了 StringIO 对象的名称属性,它似乎工作正常。
im_tmp = Image.open(StringIO(bits))
//bits: the binary chars of a image
im_res = ImageAPI.process(im_tmp, mode, width, height)
//ImageAPI: a class that use PIL methods to process image
output = StringIO()
im_res.save(output, format='PNG')
output.name = 'tmp.png'
//I add above code and it works
call(url_str=url, file_dict={'file':output})
//call: package of poster
我做对了吗?通过海报发布 StringIO 对象的正确方法是什么?