gpt4 book ai didi

image - Python 从图像中去除所有 GPS 元数据

转载 作者:行者123 更新时间:2023-12-05 05:28:23 31 4
gpt4 key购买 nike

有没有一种简单的方法,在 windows 和 linux(Ubuntu Linux 和 Windows 7,都是 64 位的 Python 2.7)上,去除目录中所有图像上的所有(不仅仅是 EXIF)GPS 元数据,并保留其余部分元数据完好无损?它只需要适用于 JPG 和 PNG。

最佳答案

这不是我想要的,但我使用 PyExiv2 编写了一个脚本这会掩盖一些 GPS EXIF 数据。这是脚本。

#!/usr/bin/python2.7
from pyexiv2 import ImageMetadata, ExifTag
from fractions import Fraction
import argparse, os
parser = argparse.ArgumentParser(description='Strip GPS metadata.')
parser.add_argument('dir', metavar='DIRECTORY',
help='The directory to process.')
args = parser.parse_args()
files = os.listdir(args.dir)
for tiname in files:
iname = args.dir+tiname
image = ImageMetadata(iname)
image.read()
image["Exif.GPSInfo.GPSLatitude"] = Fraction(1,1)
image["Exif.GPSInfo.GPSLongitude"] = Fraction(1,1)
image.write()

编辑:这显然(至少在 Windows 上)不会去除纬度和经度。

关于image - Python 从图像中去除所有 GPS 元数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11149328/

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