我正在将图像文件上传到服务器并调整其大小以节省数据存储中的磁盘空间。我调整大小然后删除原始 blob 并仅保留 blob 的 smallVersion 的方法会删除所有元数据。有没有办法从原始 blob 复制 Blob 元数据并将其添加到新的较小版本中?
def post(self):
upload_files = self.get_uploads('file')
blob_info = upload_files[0]
if blob_info:
img = images.Image(blob_key=blob_info)
img.im_feeling_lucky()
img.resize(width=600, height=800)
smallVersion = img.execute_transforms(output_encoding=images.JPEG)
file_name = files.blobstore.create(mime_type='image/jpeg')
with files.open(file_name, 'a') as f:
f.write(smallVersion)
files.finalize(file_name)
blob_key = files.blobstore.get_blob_key(file_name)
blobstore.delete(blob_info.key())
blobCacheURL = images.get_serving_url(blob_key)