我以编程方式更新了一堆扫描的jpg图像的exif数据
我在更新大多数exif数据时没有太多麻烦,但我很难设置gps坐标
例如,我尝试按如下方式保存纬度坐标
PropertyItem PropertyTagGpsLatitude = srcImg.GetPropertyItem(2);
PropertyTagGpsLatitude.Value = System.Text.ASCIIEncoding.ASCII.GetBytes("42/1,5/1,33/1");
srcImg.SetPropertyItem(PropertyTagGpsLatitude);
根据文件说明
纬度表示为给出度数的三个理性值, 分钟和秒。度,分和秒 表示,格式为dd / 1,mm / 1,ss / 1。当度和 使用分钟,例如,放弃几分钟 小数点后两位,格式为dd / 1,mmmm / 100,0 / 1。
https://msdn.microsoft.com/en-us/library/windows/desktop/ms534416(v=vs.85).aspx
我可以设置其他gps相关数据,例如这可以正确翻译
PropertyItem PropertyTagGpsLatitudeRef = srcImg.GetPropertyItem(1);
PropertyTagGpsLatitudeRef.Value = System.Text.ASCIIEncoding.ASCII.GetBytes("N");
srcImg.SetPropertyItem(PropertyTagGpsLatitudeRef);
我没有任何例外,我只是使用Exif Pilot实用程序验证exif数据,并且可以看到它无法正常工作
答案 0 :(得分:0)
我终于想出了一个有效的解决方案。我加载了一个包含GPS信息的现有图像,以检查数据是如何构建的。 Ultimatley我能够在这里提出这种方法
/// <summary>
/// Prepares a byte array that hold EXIF latitude/longitude data
/// </summary>
/// <param name="degrees">There are 360° of longitude (180° E ↔ 180° W) and 180° of latitude (90° N ↔ 90° S)</param>
/// <param name="minutes">Each degree can be broken into 60 minutes</param>
/// <param name="seconds">Each minute can be divided into 60 seconds (”). For finer accuracy, fractions of seconds given by a decimal point are used. Seconds unit multiplied by 100. For example 33.77 seconds is passed as 3377. This gives adequate GPS precision</param>
/// <returns></returns>
private static byte[] FloatToExifGps(int degrees, int minutes, int seconds)
{
var secBytes = BitConverter.GetBytes(seconds);
var secDivisor = BitConverter.GetBytes(100);
byte[] rv = { (byte)degrees, 0, 0, 0, 1, 0, 0, 0, (byte)minutes, 0, 0, 0, 1, 0, 0, 0, secBytes[0], secBytes[1], 0, 0, secDivisor[0], 0, 0, 0 };
return rv;
}
并像这样使用
PropertyItem PropertyTagGpsLongitude = srcImg.GetPropertyItem(4);
PropertyTagGpsLongitude.Value = FloatToExifGps(79, 48, 3377);
srcImg.SetPropertyItem(PropertyTagGpsLongitude);
我希望这有助于将来的某个人
答案 1 :(得分:0)
我最近遇到了同样的问题,并希望分享对我有用的解决方案。像LongitudeDegreeNumerator等变量有uint类型并提前计算。
// Longitude: Build a whole property value
byte[] propertyTagGpsLongitude = new byte[24];
Buffer.BlockCopy(BitConverter.GetBytes(LongitudeDegreeNumerator), 0, propertyTagGpsLongitude, 0, 4);
Buffer.BlockCopy(BitConverter.GetBytes(LongitudeDegreeDenominator), 0, propertyTagGpsLongitude, 4, 4);
Buffer.BlockCopy(BitConverter.GetBytes(LongitudeMinuteNumerator), 0, propertyTagGpsLongitude, 8, 4);
Buffer.BlockCopy(BitConverter.GetBytes(LongitudeMinuteDenominator), 0, propertyTagGpsLongitude, 12, 4);
Buffer.BlockCopy(BitConverter.GetBytes(LongitudeSecondNumerator), 0, propertyTagGpsLongitude, 16, 4);
Buffer.BlockCopy(BitConverter.GetBytes(LongitudeSecondDenominator), 0, propertyTagGpsLongitude, 20, 4);
也许那对某人有用。