gpt4 book ai didi

python - 检索保存到 blobstore 的照片的元数据

转载 作者:太空宇宙 更新时间:2023-11-03 15:43:46 25 4
gpt4 key购买 nike

我正在使用 plupload 将照片上传到 blobstore 。 BlobInfo object有一些元数据

content_type: The content type of the blob.
creation: The creation date of the blob, or when it was uploaded.
filename: The file name that the user selected from their machine.
size: The size of the uncompressed blob.
md5_hash: The MD5 hash value of the uploaded blob.

我的问题是如何从 plupload 或服务器端获取照片的其他元数据?具体来说,我需要检索一个“描述”元数据字段。

最佳答案

我会使用exif-py如下:

blob_reader = blobstore.BlobReader(blob_key)
blob_reader_data = StringIO.StringIO(blob_reader.read())
tags = exifread.process_file(blob_reader_data)

它返回的标签对象包含您正在查找的元数据。

关于python - 检索保存到 blobstore 的照片的元数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41936300/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com