示例#1
0
 /// <summary>
 /// Removes the geo tag(GPS data) in the EXIF(EXchangeable Image File format) tag.
 /// </summary>
 /// <since_tizen> 3 </since_tizen>
 /// <exception cref="ObjectDisposedException">The camera already has been disposed of.</exception>
 public void RemoveGeoTag()
 {
     CameraErrorFactory.ThrowIfError(Native.RemoveGeotag(_camera.GetHandle()),
                                     "Failed to remove the geotag\t.");
 }
示例#2
0
 /// <summary>
 /// Removes the geo tag(GPS data) in the EXIF(EXchangeable Image File format) tag.
 /// </summary>
 /// <since_tizen> 3 </since_tizen>
 /// <feature> http://tizen.org/feature/camera </feature>
 /// <exception cref="ObjectDisposedException">The camera already has been disposed of.</exception>
 public void RemoveGeoTag()
 {
     Native.RemoveGeotag(_camera.GetHandle()).
     ThrowIfFailed("Failed to remove the geotag.");
 }