Images

如何在圖片中添加自定義 GPS 位置?

  • January 29, 2017

給定.jpg一張沒有關聯 GPS 座標的圖片,您建議如何為其添加自定義座標?

你可以使用exiftool命令

例如:

exiftool -exif:gpslatitude="Put_the_GPS_coordinate_here" -exif:gpslatituderef=S your.jpg

驗證它:

exiftool -filename -gpslatitude -gpslongitude -T your.jpg

引用自:https://unix.stackexchange.com/questions/340972